├── .bazelrc.darwin ├── .bazelrc.linux ├── .bazelversion ├── .github └── workflows │ ├── cla.yaml │ └── cross-repo-synchronization.yaml ├── .gitignore ├── .swift-format.json ├── Apps ├── BUILD ├── EmbeddingConverter │ └── Converter.swift ├── Linux │ └── BUILD ├── LoRAConverter │ └── Converter.swift ├── ModelConverter │ └── Converter.swift ├── ModelQuantizer │ └── Quantizer.swift ├── gRPCServerCLI │ ├── SupportingFiles │ │ └── Info.plist │ └── gRPCServerCLI.swift └── macOS │ └── BUILD ├── BUILD ├── CLA ├── ccla.md └── icla.md ├── LICENSE.md ├── Libraries ├── BinaryResources │ ├── BUILD │ ├── Resources │ │ ├── bpe_simple_vocab_16e6.txt │ │ ├── chatglm3.spiece.model │ │ ├── isrgrootx1.pem │ │ ├── merges.txt │ │ ├── merges_llama3.txt │ │ ├── merges_qwen2.5.txt │ │ ├── pile_t5.spiece.model │ │ ├── root_ca.crt │ │ ├── server_crt.crt │ │ ├── server_key.key │ │ ├── t5.spiece.model │ │ ├── umt5.spiece.model │ │ ├── vocab.json │ │ ├── vocab_16e6.json │ │ ├── vocab_llama3.json │ │ ├── vocab_qwen2.5.json │ │ └── xlmroberta.bpe.model │ └── Sources │ │ ├── BinaryResources.swift │ │ └── Module.h ├── ConfigurationZoo │ ├── BUILD │ └── Sources │ │ └── ConfigurationZoo.swift ├── DataModels │ ├── BUILD │ └── Sources │ │ ├── Debugging.swift │ │ ├── Defaults.swift │ │ ├── DeviceCapability.swift │ │ ├── GenerationProfile.swift │ │ ├── config.fbs │ │ ├── dataset.fbs │ │ ├── estimation.fbs │ │ ├── lora.fbs │ │ ├── mixing.fbs │ │ ├── paint_color.fbs │ │ └── peer_connection_id.fbs ├── Exporter │ ├── BUILD │ └── Sources │ │ ├── FILM.swift │ │ └── VideoExporter.swift ├── FaceRestorer │ ├── BUILD │ └── Sources │ │ ├── FaceRestorer.swift │ │ ├── ParseNet.swift │ │ └── RestoreFormer.swift ├── FeaturesMatrix │ ├── BUILD │ └── Sources │ │ └── FeaturesMatrix.swift ├── GRPC │ ├── Advertiser │ │ └── Sources │ │ │ ├── dnssd_advertiser.c │ │ │ └── dnssd_advertiser.h │ ├── BUILD │ ├── Models │ │ └── Sources │ │ │ ├── controlPanel │ │ │ ├── controlPanel.grpc.swift │ │ │ ├── controlPanel.pb.swift │ │ │ └── controlPanel.proto │ │ │ └── imageService │ │ │ ├── imageService.grpc.swift │ │ │ ├── imageService.pb.swift │ │ │ └── imageService.proto │ ├── ProxyControlClient │ │ └── Sources │ │ │ └── ProxyControlClient.swift │ ├── ProxyServer │ │ └── Sources │ │ │ ├── GRPCJWTTokenDecoder.swift │ │ │ ├── ProxyCPUServer.swift │ │ │ ├── ProxyGPUClientWrapper.swift │ │ │ └── ProxyMessageSigner.swift │ ├── Server │ │ └── Sources │ │ │ ├── GRPCFileUploader.swift │ │ │ ├── GRPCHostnameUtils.swift │ │ │ ├── GRPCServerAdvertiser.swift │ │ │ ├── GRPCServiceBrowser.swift │ │ │ ├── ImageGenerationClientWrapper.swift │ │ │ ├── ImageGenerationServiceImpl.swift │ │ │ └── ProtectedValue.swift │ ├── ServerConfigurationRewriter │ │ └── Sources │ │ │ └── ServerConfigurationRewriter.swift │ └── ServerLoRALoader │ │ └── Sources │ │ ├── LocalLoRAManager.swift │ │ ├── R2Client.swift │ │ └── ServerLoRALoader.swift ├── HTTPAPIServer │ ├── BUILD │ └── Sources │ │ ├── HTTPAPIServer.swift │ │ └── ServerModels.swift ├── HTTPServer │ ├── BUILD │ └── Sources │ │ ├── HTTPServer.h │ │ └── HTTPServer.mm ├── History │ ├── BUILD │ └── Sources │ │ ├── ImageHistoryManager.swift │ │ ├── TextHistoryManager.swift │ │ ├── TextLibrary.swift │ │ ├── clip.fbs │ │ ├── script_session.fbs │ │ ├── tensor_data.fbs │ │ ├── tensor_history.fbs │ │ ├── tensor_moodboard_data.fbs │ │ ├── text_history.fbs │ │ ├── text_lineage.fbs │ │ ├── thumbnail_history.fbs │ │ └── thumbnail_history_half.fbs ├── ImageGenerator │ ├── BUILD │ └── Sources │ │ ├── GenerationEstimator.swift │ │ ├── ImageGeneratorProtocol.swift │ │ └── ImageGeneratorUtils.swift ├── ImageSegmentation │ ├── BUILD │ └── Sources │ │ ├── DISNet.swift │ │ └── SCHP.swift ├── Invocation │ ├── BUILD │ └── Sources │ │ ├── FlagTypes.swift │ │ ├── Invocation.swift │ │ ├── JSONKey.swift │ │ ├── ParameterTypes.swift │ │ └── Parameters.swift ├── LocalImageGenerator │ ├── BUILD │ └── Sources │ │ ├── ImageConverter.swift │ │ ├── LocalImageGenerator.swift │ │ └── ModelPreloader.swift ├── ModelOp │ ├── BUILD │ └── Sources │ │ ├── ControlNetImporter.swift │ │ ├── EmbeddingImporter.swift │ │ ├── Importer.swift │ │ ├── LoRAExporter.swift │ │ ├── LoRAImporter.swift │ │ ├── ModelImporter.swift │ │ └── UpscalerImporter.swift ├── ModelZoo │ ├── BUILD │ └── Sources │ │ ├── ComputeUnits.swift │ │ ├── ControlNetZoo.swift │ │ ├── DownloadZoo.swift │ │ ├── EverythingZoo.swift │ │ ├── LoRAZoo.swift │ │ ├── ModelZoo.swift │ │ ├── TextGenerationZoo.swift │ │ ├── TextualInversionZoo.swift │ │ └── UpscalerZoo.swift ├── RemoteImageGenerator │ ├── BUILD │ └── Sources │ │ └── RemoteImageGenerator.swift ├── SFMT │ ├── BUILD │ └── Sources │ │ └── SFMT.swift ├── Scripting │ ├── BUILD │ └── Sources │ │ ├── ScriptExecutor.swift │ │ ├── ScriptModels.swift │ │ ├── ScriptZoo.swift │ │ └── SharedScript.swift ├── SwiftDiffusion │ ├── BUILD │ └── Sources │ │ ├── Archive │ │ ├── Archive+TensorArchive.swift │ │ ├── SafeTensors.swift │ │ └── TensorArchive.swift │ │ ├── BLIP2Encode.swift │ │ ├── BLIP2TextGeneration.swift │ │ ├── CLIPModelWithProjection.swift │ │ ├── ControlModel.swift │ │ ├── ControlModelLoader.swift │ │ ├── CoreML │ │ ├── BlobOffsetsSDv1x.swift │ │ ├── BlobOffsetsSDv1xEdit.swift │ │ ├── BlobOffsetsSDv1xInpainting.swift │ │ ├── BlobOffsetsSDv2x.swift │ │ ├── BlobOffsetsSDv2xDepth.swift │ │ ├── BlobOffsetsSDv2xInpainting.swift │ │ ├── ManagedMLModel.swift │ │ └── UNetCoreML.swift │ │ ├── CoreMLModelManager │ │ └── CoreMLModelManager.swift │ │ ├── Denoiser.swift │ │ ├── DepthEstimator.swift │ │ ├── DiffusionMapping.swift │ │ ├── Extensions │ │ ├── Interpreter.swift │ │ ├── Parameters.swift │ │ └── TensorDescriptor.swift │ │ ├── FaceExtractor.swift │ │ ├── FirstStage.swift │ │ ├── FloatType.swift │ │ ├── ImageEncoder.swift │ │ ├── KandinskyEmbedding.swift │ │ ├── LoRALoader.swift │ │ ├── LoRAModelMapping.swift │ │ ├── ModelMapping.swift │ │ ├── Models │ │ ├── ArcFace.swift │ │ ├── AuraFlow.swift │ │ ├── Autoencoder.swift │ │ ├── AutoencoderCausal3D.swift │ │ ├── BLIP2.swift │ │ ├── CLIPImageModel.swift │ │ ├── CLIPTextModel.swift │ │ ├── ChatGLM3.swift │ │ ├── ControlNet.swift │ │ ├── ControlNetXL.swift │ │ ├── DepthAnything.swift │ │ ├── EvaImageModel.swift │ │ ├── Flux1.swift │ │ ├── HED.swift │ │ ├── HiDream.swift │ │ ├── Hunyuan.swift │ │ ├── IPAdapter.swift │ │ ├── Kandinsky.swift │ │ ├── LayerDiffuse.swift │ │ ├── Llama.swift │ │ ├── LoRA.swift │ │ ├── MMDiT.swift │ │ ├── Moondream.swift │ │ ├── OpenCLIPTextModel.swift │ │ ├── PixArt.swift │ │ ├── PuLID.swift │ │ ├── QwenImage.swift │ │ ├── QwenVL.swift │ │ ├── RetinaFace.swift │ │ ├── T2IAdapter.swift │ │ ├── T5.swift │ │ ├── UMT5.swift │ │ ├── UNet.swift │ │ ├── UNetProtocol.swift │ │ ├── UNetXL.swift │ │ ├── UNetv2.swift │ │ ├── Wan.swift │ │ ├── WanVAE.swift │ │ ├── Wurstchen.swift │ │ └── XLMRobertaModel.swift │ │ ├── MoondreamEncode.swift │ │ ├── MoondreamTextGeneration.swift │ │ ├── Preprocessors │ │ ├── ControlModel+HED.swift │ │ └── ControlModel+MLSD.swift │ │ ├── Random │ │ ├── NVRandomSource.swift │ │ └── TorchRandomSource.swift │ │ ├── Samplers │ │ ├── DDIMSampler.swift │ │ ├── DPMPP2MSampler.swift │ │ ├── DPMPPSDESampler.swift │ │ ├── EulerASampler.swift │ │ ├── LCMSampler.swift │ │ ├── PLMSSampler.swift │ │ ├── Sampler.swift │ │ ├── TCDSampler.swift │ │ └── UniPCSampler.swift │ │ ├── TeaCache │ │ └── TeaCache.swift │ │ ├── TensorData.swift │ │ ├── TextEncoder.swift │ │ ├── TiledDiffusion.swift │ │ ├── UNetFixedEncoder.swift │ │ └── UNetWrapper │ │ └── UNetWrapper.swift ├── Tokenizer │ ├── BUILD │ └── Sources │ │ ├── Attention.swift │ │ ├── CLIP.swift │ │ ├── MultiLine.swift │ │ ├── SentencePiece.swift │ │ ├── TextualInversion.swift │ │ ├── Tiktoken.swift │ │ └── Tokenizer.swift ├── Trainer │ ├── BUILD │ └── Sources │ │ ├── LoRATrainer.swift │ │ └── LoRATrainerCheckpoint.swift ├── Upscaler │ ├── BUILD │ └── Sources │ │ ├── RRDBNet.swift │ │ └── RealESRGANer.swift ├── Utils │ ├── BUILD │ └── Sources │ │ ├── Array+Extensions.swift │ │ ├── DefaultCreatable.swift │ │ ├── Number+Extensions.swift │ │ ├── String+Extensions.swift │ │ ├── UIScreen+Extensions.swift │ │ ├── UIView+Extensions.swift │ │ └── Utils.swift └── WeightsCache │ ├── BUILD │ └── Sources │ └── WeightsCache.swift ├── MODULE.bazel ├── MODULE.bazel.lock ├── README.md ├── SYNCLIST ├── Scripts ├── BUILD.bazel ├── ServerManagement │ ├── CPUScript │ │ ├── InitCPUServer.sh │ │ ├── InitCertificate.sh │ │ ├── LaunchCPUServer.sh │ │ ├── LaunchEnvoyServer.sh │ │ ├── README.md │ │ ├── envoy-config.yaml │ │ └── model-list │ ├── GPUScript │ │ ├── InitGPUServer.sh │ │ ├── LaunchGPU │ │ │ ├── LaunchGPUServer.sh │ │ │ ├── SetupRAID0Storage_WIP.sh │ │ │ ├── list_ckpts.sh │ │ │ ├── mount_overlay.sh │ │ │ ├── start_single_grpc.sh │ │ │ ├── sum_size.sh │ │ │ └── tmpfs.ls │ │ ├── README.md │ │ ├── UpdateModels │ │ │ ├── UpdateNasModel.sh │ │ │ ├── cleanup_models.py │ │ │ ├── compare_checksums.py │ │ │ ├── gpu_servers.txt │ │ │ ├── r2_sync_verification.py │ │ │ ├── start_nas_http_server.sh │ │ │ ├── stop_nas_http_server.sh │ │ │ └── sync_models_multi_server.py │ │ ├── UpdateScripts.sh │ │ ├── VerifyGPUSetup.sh │ │ ├── files_to_copy.txt │ │ └── gpu_servers.txt │ └── InitTailscale.sh ├── buildifier │ └── pre-commit ├── commit │ ├── apply.py │ └── commit.py ├── compdb │ ├── BUILD │ └── compdb.py ├── corrections │ └── corrections.rb ├── docker │ ├── build.sh │ ├── cudaSwiftDockerfile │ └── swift6Dockerfile ├── install.sh ├── ios_build.sh ├── mac_build.sh ├── setup_clang.sh ├── swift-format │ └── pre-commit ├── tests │ ├── dog.png │ └── test_cli_and_server.rb ├── vendors │ └── dispatch └── vscode │ └── build.sh ├── Tools ├── BUILD └── Packager │ ├── main.swift │ └── packager.bzl ├── Vendors ├── SwiftNIOTransportServices │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── Package.swift │ ├── Package@swift-5.5.swift │ ├── README.md │ ├── SECURITY.md │ ├── Sources │ │ ├── NIOTSHTTPClient │ │ │ └── main.swift │ │ ├── NIOTSHTTPServer │ │ │ └── main.swift │ │ └── NIOTransportServices │ │ │ ├── Docs.docc │ │ │ └── index.md │ │ │ ├── MonitoringFramer.swift │ │ │ ├── NIOFilterEmptyWritesHandler.swift │ │ │ ├── NIOTSBootstraps.swift │ │ │ ├── NIOTSChannelOptions.swift │ │ │ ├── NIOTSConnectionBootstrap.swift │ │ │ ├── NIOTSConnectionChannel.swift │ │ │ ├── NIOTSErrors.swift │ │ │ ├── NIOTSEventLoop.swift │ │ │ ├── NIOTSEventLoopGroup.swift │ │ │ ├── NIOTSListenerBootstrap.swift │ │ │ ├── NIOTSListenerChannel.swift │ │ │ ├── NIOTSNetworkEvents.swift │ │ │ ├── SocketAddress+NWEndpoint.swift │ │ │ ├── StateManagedChannel.swift │ │ │ └── TCPOptions+SocketChannelOption.swift │ ├── Tests │ │ └── NIOTransportServicesTests │ │ │ ├── NIOFilterEmptyWritesHandlerTests.swift │ │ │ ├── NIOTSBootstrapTests.swift │ │ │ ├── NIOTSChannelMetadataTests.swift │ │ │ ├── NIOTSChannelOptionsTests.swift │ │ │ ├── NIOTSConnectionChannelTests.swift │ │ │ ├── NIOTSEndToEndTests.swift │ │ │ ├── NIOTSEventLoopTests.swift │ │ │ ├── NIOTSListenerChannelTests.swift │ │ │ ├── NIOTSSocketOptionTests.swift │ │ │ ├── NIOTSSocketOptionsOnChannelTests.swift │ │ │ └── NIOTSWorkaroundTests.swift │ ├── dev │ │ └── git.commit.template │ ├── docker │ │ ├── Dockerfile │ │ ├── docker-compose.2004.55.yaml │ │ ├── docker-compose.2004.56.yaml │ │ ├── docker-compose.2004.main.yaml │ │ ├── docker-compose.2204.57.yaml │ │ └── docker-compose.yaml │ └── scripts │ │ └── soundness.sh └── ZIPFoundation │ ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ └── Support_question.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows │ │ ├── llvm-cov.yml │ │ ├── swift.yml │ │ └── swiftlint.yml │ ├── .gitignore │ ├── BUILD.bazel │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Package.swift │ ├── Package@swift-4.0.swift │ ├── Package@swift-4.1.swift │ ├── Package@swift-4.2.swift │ ├── README.md │ ├── Sources │ ├── CZLib │ │ ├── module.modulemap │ │ └── shim.h │ └── ZIPFoundation │ │ ├── Archive+BackingConfiguration.swift │ │ ├── Archive+Helpers.swift │ │ ├── Archive+MemoryFile.swift │ │ ├── Archive+Progress.swift │ │ ├── Archive+Reading.swift │ │ ├── Archive+ReadingDeprecated.swift │ │ ├── Archive+Writing.swift │ │ ├── Archive+WritingDeprecated.swift │ │ ├── Archive+ZIP64.swift │ │ ├── Archive.swift │ │ ├── Data+Compression.swift │ │ ├── Data+CompressionDeprecated.swift │ │ ├── Data+Serialization.swift │ │ ├── Entry+Serialization.swift │ │ ├── Entry+ZIP64.swift │ │ ├── Entry.swift │ │ ├── FileManager+ZIP.swift │ │ └── URL+ZIP.swift │ ├── Tests │ ├── LinuxMain.swift │ └── ZIPFoundationTests │ │ ├── Resources │ │ ├── testAddDirectoryToArchiveWithZIP64LFHOffset.zip │ │ ├── testAddEntryToArchiveWithZIP64LFHOffset.zip │ │ ├── testArchiveAddCompressedEntryProgress.png │ │ ├── testArchiveAddCompressedEntryProgress.zip │ │ ├── testArchiveAddEntryErrorConditions.zip │ │ ├── testArchiveAddUncompressedEntryProgress.png │ │ ├── testArchiveAddUncompressedEntryProgress.zip │ │ ├── testArchiveIteratorErrorConditions.zip │ │ ├── testCRC32Calculation.data │ │ ├── testCRC32Check.zip │ │ ├── testCorruptFileErrorConditions.zip │ │ ├── testCorruptSymbolicLinkErrorConditions.zip │ │ ├── testCreateArchiveAddCompressedEntry.png │ │ ├── testCreateArchiveAddCompressedEntryToMemory.png │ │ ├── testCreateArchiveAddEntryErrorConditions.txt │ │ ├── testCreateArchiveAddSymbolicLink.png │ │ ├── testCreateArchiveAddUncompressedEntry.png │ │ ├── testCreateArchiveAddUncompressedEntryToMemory.png │ │ ├── testCreateArchiveAddZeroSizeCompressedEntry.txt │ │ ├── testCreateArchiveAddZeroSizeUncompressedEntry.txt │ │ ├── testCreateZIP64ArchiveAddUncompressedEntry.png │ │ ├── testDetectEntryType.zip │ │ ├── testEntryIsCompressed.zip │ │ ├── testExtractCompressedDataDescriptorArchive.zip │ │ ├── testExtractCompressedEntryCancelation.zip │ │ ├── testExtractCompressedFolderEntries.zip │ │ ├── testExtractCompressedFolderEntriesFromMemory.zip │ │ ├── testExtractCompressedZIP64Entries.zip │ │ ├── testExtractEncryptedArchiveErrorConditions.zip │ │ ├── testExtractEntryWithZIP64DataDescriptor.zip │ │ ├── testExtractErrorConditions.zip │ │ ├── testExtractInvalidBufferSizeErrorConditions.zip │ │ ├── testExtractMSDOSArchive.zip │ │ ├── testExtractPreferredEncoding.zip │ │ ├── testExtractUncompressedDataDescriptorArchive.zip │ │ ├── testExtractUncompressedEmptyFile.zip │ │ ├── testExtractUncompressedEntryCancelation.zip │ │ ├── testExtractUncompressedFolderEntries.zip │ │ ├── testExtractUncompressedFolderEntriesFromMemory.zip │ │ ├── testExtractUncompressedZIP64Entries.zip │ │ ├── testFileModificationDate.png │ │ ├── testInvalidCompressionMethodErrorConditions.zip │ │ ├── testPOSIXPermissions.png │ │ ├── testProgressHelpers.zip │ │ ├── testRemoveCompressedEntry.zip │ │ ├── testRemoveDataDescriptorCompressedEntry.zip │ │ ├── testRemoveEntryErrorConditions.zip │ │ ├── testRemoveEntryFromArchiveWithZIP64EOCD.zip │ │ ├── testRemoveEntryProgress.zip │ │ ├── testRemoveEntryWithZIP64ExtendedInformation.zip │ │ ├── testRemoveUncompressedEntry.zip │ │ ├── testRemoveZIP64EntryFromArchiveWithZIP64EOCD.zip │ │ ├── testTraversalAttack.zip │ │ ├── testUnzipCompressedZIP64Item.zip │ │ ├── testUnzipItem.zip │ │ ├── testUnzipItemErrorConditions.png │ │ ├── testUnzipItemErrorConditions.zip │ │ ├── testUnzipItemProgress.zip │ │ ├── testUnzipItemWithPreferredEncoding.zip │ │ ├── testUnzipItemWithZIP64DataDescriptor.zip │ │ ├── testUnzipUncompressedZIP64Item.zip │ │ ├── testUpdateArchiveRemoveUncompressedEntryFromMemory.zip │ │ ├── testZIP64ArchiveAddEntryProgress.png │ │ ├── testZIP64ArchiveAddEntryProgress.zip │ │ ├── testZipCompressedZIP64Item.png │ │ ├── testZipItem.png │ │ ├── testZipItemProgress.png │ │ └── testZipUncompressedZIP64Item.png │ │ ├── ZIPFoundationArchiveTests+ZIP64.swift │ │ ├── ZIPFoundationArchiveTests.swift │ │ ├── ZIPFoundationDataSerializationTests.swift │ │ ├── ZIPFoundationEntryTests+ZIP64.swift │ │ ├── ZIPFoundationEntryTests.swift │ │ ├── ZIPFoundationErrorConditionTests+ZIP64.swift │ │ ├── ZIPFoundationErrorConditionTests.swift │ │ ├── ZIPFoundationFileManagerTests+ZIP64.swift │ │ ├── ZIPFoundationFileManagerTests.swift │ │ ├── ZIPFoundationMemoryTests.swift │ │ ├── ZIPFoundationPerformanceTests.swift │ │ ├── ZIPFoundationProgressTests.swift │ │ ├── ZIPFoundationReadingTests+ZIP64.swift │ │ ├── ZIPFoundationReadingTests.swift │ │ ├── ZIPFoundationTests.swift │ │ ├── ZIPFoundationWritingTests+ZIP64.swift │ │ └── ZIPFoundationWritingTests.swift │ └── ZIPFoundation.podspec ├── WORKSPACE.darwin ├── WORKSPACE.linux ├── external ├── cpp-httplib.BUILD ├── grpc-swift.BUILD ├── swift-JMESPath.BUILD ├── swift-algorithms.BUILD ├── swift-argument-parser.BUILD ├── swift-cmark.BUILD ├── swift-collections.BUILD ├── swift-crypto.BUILD ├── swift-format.BUILD ├── swift-guaka.BUILD ├── swift-log-datadog.BUILD ├── swift-log.BUILD ├── swift-markdown.BUILD ├── swift-nio-extras.BUILD ├── swift-nio-http2.BUILD ├── swift-nio-ssl.BUILD ├── swift-nio.BUILD ├── swift-numerics.BUILD ├── swift-png.BUILD ├── swift-protobuf.BUILD ├── swift-string-scanner.BUILD ├── swift-syntax.BUILD ├── swift-system.BUILD ├── swift-tools-support-core.BUILD └── yams.BUILD ├── force_sync.sh └── signatures └── version1 └── cla.json /.bazelrc.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/.bazelrc.darwin -------------------------------------------------------------------------------- /.bazelrc.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/.bazelrc.linux -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 7.4.1 2 | -------------------------------------------------------------------------------- /.github/workflows/cla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/.github/workflows/cla.yaml -------------------------------------------------------------------------------- /.github/workflows/cross-repo-synchronization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/.github/workflows/cross-repo-synchronization.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/.swift-format.json -------------------------------------------------------------------------------- /Apps/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/BUILD -------------------------------------------------------------------------------- /Apps/EmbeddingConverter/Converter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/EmbeddingConverter/Converter.swift -------------------------------------------------------------------------------- /Apps/Linux/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/Linux/BUILD -------------------------------------------------------------------------------- /Apps/LoRAConverter/Converter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/LoRAConverter/Converter.swift -------------------------------------------------------------------------------- /Apps/ModelConverter/Converter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/ModelConverter/Converter.swift -------------------------------------------------------------------------------- /Apps/ModelQuantizer/Quantizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/ModelQuantizer/Quantizer.swift -------------------------------------------------------------------------------- /Apps/gRPCServerCLI/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/gRPCServerCLI/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /Apps/gRPCServerCLI/gRPCServerCLI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/gRPCServerCLI/gRPCServerCLI.swift -------------------------------------------------------------------------------- /Apps/macOS/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Apps/macOS/BUILD -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- 1 | # This file is required for buildifier to work 2 | -------------------------------------------------------------------------------- /CLA/ccla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/CLA/ccla.md -------------------------------------------------------------------------------- /CLA/icla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/CLA/icla.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Libraries/BinaryResources/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/BUILD -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/bpe_simple_vocab_16e6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/bpe_simple_vocab_16e6.txt -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/chatglm3.spiece.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/chatglm3.spiece.model -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/isrgrootx1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/isrgrootx1.pem -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/merges.txt -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/merges_llama3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/merges_llama3.txt -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/merges_qwen2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/merges_qwen2.5.txt -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/pile_t5.spiece.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/pile_t5.spiece.model -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/root_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/root_ca.crt -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/server_crt.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/server_crt.crt -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/server_key.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/server_key.key -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/t5.spiece.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/t5.spiece.model -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/umt5.spiece.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/umt5.spiece.model -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/vocab.json -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/vocab_16e6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/vocab_16e6.json -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/vocab_llama3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/vocab_llama3.json -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/vocab_qwen2.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/vocab_qwen2.5.json -------------------------------------------------------------------------------- /Libraries/BinaryResources/Resources/xlmroberta.bpe.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Resources/xlmroberta.bpe.model -------------------------------------------------------------------------------- /Libraries/BinaryResources/Sources/BinaryResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Sources/BinaryResources.swift -------------------------------------------------------------------------------- /Libraries/BinaryResources/Sources/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/BinaryResources/Sources/Module.h -------------------------------------------------------------------------------- /Libraries/ConfigurationZoo/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ConfigurationZoo/BUILD -------------------------------------------------------------------------------- /Libraries/ConfigurationZoo/Sources/ConfigurationZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ConfigurationZoo/Sources/ConfigurationZoo.swift -------------------------------------------------------------------------------- /Libraries/DataModels/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/BUILD -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/Debugging.swift -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/Defaults.swift -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/DeviceCapability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/DeviceCapability.swift -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/GenerationProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/GenerationProfile.swift -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/config.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/config.fbs -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/dataset.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/dataset.fbs -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/estimation.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/estimation.fbs -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/lora.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/lora.fbs -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/mixing.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/mixing.fbs -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/paint_color.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/paint_color.fbs -------------------------------------------------------------------------------- /Libraries/DataModels/Sources/peer_connection_id.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/DataModels/Sources/peer_connection_id.fbs -------------------------------------------------------------------------------- /Libraries/Exporter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Exporter/BUILD -------------------------------------------------------------------------------- /Libraries/Exporter/Sources/FILM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Exporter/Sources/FILM.swift -------------------------------------------------------------------------------- /Libraries/Exporter/Sources/VideoExporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Exporter/Sources/VideoExporter.swift -------------------------------------------------------------------------------- /Libraries/FaceRestorer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/FaceRestorer/BUILD -------------------------------------------------------------------------------- /Libraries/FaceRestorer/Sources/FaceRestorer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/FaceRestorer/Sources/FaceRestorer.swift -------------------------------------------------------------------------------- /Libraries/FaceRestorer/Sources/ParseNet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/FaceRestorer/Sources/ParseNet.swift -------------------------------------------------------------------------------- /Libraries/FaceRestorer/Sources/RestoreFormer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/FaceRestorer/Sources/RestoreFormer.swift -------------------------------------------------------------------------------- /Libraries/FeaturesMatrix/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/FeaturesMatrix/BUILD -------------------------------------------------------------------------------- /Libraries/FeaturesMatrix/Sources/FeaturesMatrix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/FeaturesMatrix/Sources/FeaturesMatrix.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Advertiser/Sources/dnssd_advertiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Advertiser/Sources/dnssd_advertiser.c -------------------------------------------------------------------------------- /Libraries/GRPC/Advertiser/Sources/dnssd_advertiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Advertiser/Sources/dnssd_advertiser.h -------------------------------------------------------------------------------- /Libraries/GRPC/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/BUILD -------------------------------------------------------------------------------- /Libraries/GRPC/Models/Sources/controlPanel/controlPanel.grpc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Models/Sources/controlPanel/controlPanel.grpc.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Models/Sources/controlPanel/controlPanel.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Models/Sources/controlPanel/controlPanel.pb.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Models/Sources/controlPanel/controlPanel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Models/Sources/controlPanel/controlPanel.proto -------------------------------------------------------------------------------- /Libraries/GRPC/Models/Sources/imageService/imageService.grpc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Models/Sources/imageService/imageService.grpc.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Models/Sources/imageService/imageService.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Models/Sources/imageService/imageService.pb.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Models/Sources/imageService/imageService.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Models/Sources/imageService/imageService.proto -------------------------------------------------------------------------------- /Libraries/GRPC/ProxyControlClient/Sources/ProxyControlClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ProxyControlClient/Sources/ProxyControlClient.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ProxyServer/Sources/GRPCJWTTokenDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ProxyServer/Sources/GRPCJWTTokenDecoder.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ProxyServer/Sources/ProxyCPUServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ProxyServer/Sources/ProxyCPUServer.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ProxyServer/Sources/ProxyGPUClientWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ProxyServer/Sources/ProxyGPUClientWrapper.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ProxyServer/Sources/ProxyMessageSigner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ProxyServer/Sources/ProxyMessageSigner.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Server/Sources/GRPCFileUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Server/Sources/GRPCFileUploader.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Server/Sources/GRPCHostnameUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Server/Sources/GRPCHostnameUtils.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Server/Sources/GRPCServerAdvertiser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Server/Sources/GRPCServerAdvertiser.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Server/Sources/GRPCServiceBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Server/Sources/GRPCServiceBrowser.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Server/Sources/ImageGenerationClientWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Server/Sources/ImageGenerationClientWrapper.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Server/Sources/ImageGenerationServiceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Server/Sources/ImageGenerationServiceImpl.swift -------------------------------------------------------------------------------- /Libraries/GRPC/Server/Sources/ProtectedValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/Server/Sources/ProtectedValue.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ServerConfigurationRewriter/Sources/ServerConfigurationRewriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ServerConfigurationRewriter/Sources/ServerConfigurationRewriter.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ServerLoRALoader/Sources/LocalLoRAManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ServerLoRALoader/Sources/LocalLoRAManager.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ServerLoRALoader/Sources/R2Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ServerLoRALoader/Sources/R2Client.swift -------------------------------------------------------------------------------- /Libraries/GRPC/ServerLoRALoader/Sources/ServerLoRALoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/GRPC/ServerLoRALoader/Sources/ServerLoRALoader.swift -------------------------------------------------------------------------------- /Libraries/HTTPAPIServer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/HTTPAPIServer/BUILD -------------------------------------------------------------------------------- /Libraries/HTTPAPIServer/Sources/HTTPAPIServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/HTTPAPIServer/Sources/HTTPAPIServer.swift -------------------------------------------------------------------------------- /Libraries/HTTPAPIServer/Sources/ServerModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/HTTPAPIServer/Sources/ServerModels.swift -------------------------------------------------------------------------------- /Libraries/HTTPServer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/HTTPServer/BUILD -------------------------------------------------------------------------------- /Libraries/HTTPServer/Sources/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/HTTPServer/Sources/HTTPServer.h -------------------------------------------------------------------------------- /Libraries/HTTPServer/Sources/HTTPServer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/HTTPServer/Sources/HTTPServer.mm -------------------------------------------------------------------------------- /Libraries/History/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/BUILD -------------------------------------------------------------------------------- /Libraries/History/Sources/ImageHistoryManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/ImageHistoryManager.swift -------------------------------------------------------------------------------- /Libraries/History/Sources/TextHistoryManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/TextHistoryManager.swift -------------------------------------------------------------------------------- /Libraries/History/Sources/TextLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/TextLibrary.swift -------------------------------------------------------------------------------- /Libraries/History/Sources/clip.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/clip.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/script_session.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/script_session.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/tensor_data.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/tensor_data.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/tensor_history.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/tensor_history.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/tensor_moodboard_data.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/tensor_moodboard_data.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/text_history.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/text_history.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/text_lineage.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/text_lineage.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/thumbnail_history.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/thumbnail_history.fbs -------------------------------------------------------------------------------- /Libraries/History/Sources/thumbnail_history_half.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/History/Sources/thumbnail_history_half.fbs -------------------------------------------------------------------------------- /Libraries/ImageGenerator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ImageGenerator/BUILD -------------------------------------------------------------------------------- /Libraries/ImageGenerator/Sources/GenerationEstimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ImageGenerator/Sources/GenerationEstimator.swift -------------------------------------------------------------------------------- /Libraries/ImageGenerator/Sources/ImageGeneratorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ImageGenerator/Sources/ImageGeneratorProtocol.swift -------------------------------------------------------------------------------- /Libraries/ImageGenerator/Sources/ImageGeneratorUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ImageGenerator/Sources/ImageGeneratorUtils.swift -------------------------------------------------------------------------------- /Libraries/ImageSegmentation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ImageSegmentation/BUILD -------------------------------------------------------------------------------- /Libraries/ImageSegmentation/Sources/DISNet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ImageSegmentation/Sources/DISNet.swift -------------------------------------------------------------------------------- /Libraries/ImageSegmentation/Sources/SCHP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ImageSegmentation/Sources/SCHP.swift -------------------------------------------------------------------------------- /Libraries/Invocation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Invocation/BUILD -------------------------------------------------------------------------------- /Libraries/Invocation/Sources/FlagTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Invocation/Sources/FlagTypes.swift -------------------------------------------------------------------------------- /Libraries/Invocation/Sources/Invocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Invocation/Sources/Invocation.swift -------------------------------------------------------------------------------- /Libraries/Invocation/Sources/JSONKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Invocation/Sources/JSONKey.swift -------------------------------------------------------------------------------- /Libraries/Invocation/Sources/ParameterTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Invocation/Sources/ParameterTypes.swift -------------------------------------------------------------------------------- /Libraries/Invocation/Sources/Parameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Invocation/Sources/Parameters.swift -------------------------------------------------------------------------------- /Libraries/LocalImageGenerator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/LocalImageGenerator/BUILD -------------------------------------------------------------------------------- /Libraries/LocalImageGenerator/Sources/ImageConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/LocalImageGenerator/Sources/ImageConverter.swift -------------------------------------------------------------------------------- /Libraries/LocalImageGenerator/Sources/LocalImageGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/LocalImageGenerator/Sources/LocalImageGenerator.swift -------------------------------------------------------------------------------- /Libraries/LocalImageGenerator/Sources/ModelPreloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/LocalImageGenerator/Sources/ModelPreloader.swift -------------------------------------------------------------------------------- /Libraries/ModelOp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/BUILD -------------------------------------------------------------------------------- /Libraries/ModelOp/Sources/ControlNetImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/Sources/ControlNetImporter.swift -------------------------------------------------------------------------------- /Libraries/ModelOp/Sources/EmbeddingImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/Sources/EmbeddingImporter.swift -------------------------------------------------------------------------------- /Libraries/ModelOp/Sources/Importer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/Sources/Importer.swift -------------------------------------------------------------------------------- /Libraries/ModelOp/Sources/LoRAExporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/Sources/LoRAExporter.swift -------------------------------------------------------------------------------- /Libraries/ModelOp/Sources/LoRAImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/Sources/LoRAImporter.swift -------------------------------------------------------------------------------- /Libraries/ModelOp/Sources/ModelImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/Sources/ModelImporter.swift -------------------------------------------------------------------------------- /Libraries/ModelOp/Sources/UpscalerImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelOp/Sources/UpscalerImporter.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/BUILD -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/ComputeUnits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/ComputeUnits.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/ControlNetZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/ControlNetZoo.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/DownloadZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/DownloadZoo.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/EverythingZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/EverythingZoo.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/LoRAZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/LoRAZoo.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/ModelZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/ModelZoo.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/TextGenerationZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/TextGenerationZoo.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/TextualInversionZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/TextualInversionZoo.swift -------------------------------------------------------------------------------- /Libraries/ModelZoo/Sources/UpscalerZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/ModelZoo/Sources/UpscalerZoo.swift -------------------------------------------------------------------------------- /Libraries/RemoteImageGenerator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/RemoteImageGenerator/BUILD -------------------------------------------------------------------------------- /Libraries/RemoteImageGenerator/Sources/RemoteImageGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/RemoteImageGenerator/Sources/RemoteImageGenerator.swift -------------------------------------------------------------------------------- /Libraries/SFMT/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SFMT/BUILD -------------------------------------------------------------------------------- /Libraries/SFMT/Sources/SFMT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SFMT/Sources/SFMT.swift -------------------------------------------------------------------------------- /Libraries/Scripting/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Scripting/BUILD -------------------------------------------------------------------------------- /Libraries/Scripting/Sources/ScriptExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Scripting/Sources/ScriptExecutor.swift -------------------------------------------------------------------------------- /Libraries/Scripting/Sources/ScriptModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Scripting/Sources/ScriptModels.swift -------------------------------------------------------------------------------- /Libraries/Scripting/Sources/ScriptZoo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Scripting/Sources/ScriptZoo.swift -------------------------------------------------------------------------------- /Libraries/Scripting/Sources/SharedScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Scripting/Sources/SharedScript.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/BUILD -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Archive/Archive+TensorArchive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Archive/Archive+TensorArchive.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Archive/SafeTensors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Archive/SafeTensors.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Archive/TensorArchive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Archive/TensorArchive.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/BLIP2Encode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/BLIP2Encode.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/BLIP2TextGeneration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/BLIP2TextGeneration.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CLIPModelWithProjection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CLIPModelWithProjection.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/ControlModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/ControlModel.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/ControlModelLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/ControlModelLoader.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv1x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv1x.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv1xEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv1xEdit.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv1xInpainting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv1xInpainting.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv2x.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv2x.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv2xDepth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv2xDepth.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv2xInpainting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/BlobOffsetsSDv2xInpainting.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/ManagedMLModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/ManagedMLModel.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreML/UNetCoreML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreML/UNetCoreML.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/CoreMLModelManager/CoreMLModelManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/CoreMLModelManager/CoreMLModelManager.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Denoiser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Denoiser.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/DepthEstimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/DepthEstimator.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/DiffusionMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/DiffusionMapping.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Extensions/Interpreter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Extensions/Interpreter.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Extensions/Parameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Extensions/Parameters.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Extensions/TensorDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Extensions/TensorDescriptor.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/FaceExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/FaceExtractor.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/FirstStage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/FirstStage.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/FloatType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/FloatType.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/ImageEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/ImageEncoder.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/KandinskyEmbedding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/KandinskyEmbedding.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/LoRALoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/LoRALoader.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/LoRAModelMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/LoRAModelMapping.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/ModelMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/ModelMapping.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/ArcFace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/ArcFace.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/AuraFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/AuraFlow.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Autoencoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Autoencoder.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/AutoencoderCausal3D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/AutoencoderCausal3D.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/BLIP2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/BLIP2.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/CLIPImageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/CLIPImageModel.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/CLIPTextModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/CLIPTextModel.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/ChatGLM3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/ChatGLM3.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/ControlNet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/ControlNet.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/ControlNetXL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/ControlNetXL.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/DepthAnything.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/DepthAnything.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/EvaImageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/EvaImageModel.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Flux1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Flux1.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/HED.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/HED.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/HiDream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/HiDream.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Hunyuan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Hunyuan.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/IPAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/IPAdapter.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Kandinsky.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Kandinsky.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/LayerDiffuse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/LayerDiffuse.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Llama.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Llama.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/LoRA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/LoRA.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/MMDiT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/MMDiT.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Moondream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Moondream.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/OpenCLIPTextModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/OpenCLIPTextModel.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/PixArt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/PixArt.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/PuLID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/PuLID.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/QwenImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/QwenImage.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/QwenVL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/QwenVL.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/RetinaFace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/RetinaFace.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/T2IAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/T2IAdapter.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/T5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/T5.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/UMT5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/UMT5.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/UNet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/UNet.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/UNetProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/UNetProtocol.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/UNetXL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/UNetXL.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/UNetv2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/UNetv2.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Wan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Wan.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/WanVAE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/WanVAE.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/Wurstchen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/Wurstchen.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Models/XLMRobertaModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Models/XLMRobertaModel.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/MoondreamEncode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/MoondreamEncode.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/MoondreamTextGeneration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/MoondreamTextGeneration.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Preprocessors/ControlModel+HED.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Preprocessors/ControlModel+HED.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Preprocessors/ControlModel+MLSD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Preprocessors/ControlModel+MLSD.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Random/NVRandomSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Random/NVRandomSource.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Random/TorchRandomSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Random/TorchRandomSource.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/DDIMSampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/DDIMSampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/DPMPP2MSampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/DPMPP2MSampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/DPMPPSDESampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/DPMPPSDESampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/EulerASampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/EulerASampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/LCMSampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/LCMSampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/PLMSSampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/PLMSSampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/Sampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/Sampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/TCDSampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/TCDSampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/Samplers/UniPCSampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/Samplers/UniPCSampler.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/TeaCache/TeaCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/TeaCache/TeaCache.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/TensorData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/TensorData.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/TextEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/TextEncoder.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/TiledDiffusion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/TiledDiffusion.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/UNetFixedEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/UNetFixedEncoder.swift -------------------------------------------------------------------------------- /Libraries/SwiftDiffusion/Sources/UNetWrapper/UNetWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/SwiftDiffusion/Sources/UNetWrapper/UNetWrapper.swift -------------------------------------------------------------------------------- /Libraries/Tokenizer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/BUILD -------------------------------------------------------------------------------- /Libraries/Tokenizer/Sources/Attention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/Sources/Attention.swift -------------------------------------------------------------------------------- /Libraries/Tokenizer/Sources/CLIP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/Sources/CLIP.swift -------------------------------------------------------------------------------- /Libraries/Tokenizer/Sources/MultiLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/Sources/MultiLine.swift -------------------------------------------------------------------------------- /Libraries/Tokenizer/Sources/SentencePiece.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/Sources/SentencePiece.swift -------------------------------------------------------------------------------- /Libraries/Tokenizer/Sources/TextualInversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/Sources/TextualInversion.swift -------------------------------------------------------------------------------- /Libraries/Tokenizer/Sources/Tiktoken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/Sources/Tiktoken.swift -------------------------------------------------------------------------------- /Libraries/Tokenizer/Sources/Tokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Tokenizer/Sources/Tokenizer.swift -------------------------------------------------------------------------------- /Libraries/Trainer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Trainer/BUILD -------------------------------------------------------------------------------- /Libraries/Trainer/Sources/LoRATrainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Trainer/Sources/LoRATrainer.swift -------------------------------------------------------------------------------- /Libraries/Trainer/Sources/LoRATrainerCheckpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Trainer/Sources/LoRATrainerCheckpoint.swift -------------------------------------------------------------------------------- /Libraries/Upscaler/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Upscaler/BUILD -------------------------------------------------------------------------------- /Libraries/Upscaler/Sources/RRDBNet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Upscaler/Sources/RRDBNet.swift -------------------------------------------------------------------------------- /Libraries/Upscaler/Sources/RealESRGANer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Upscaler/Sources/RealESRGANer.swift -------------------------------------------------------------------------------- /Libraries/Utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/BUILD -------------------------------------------------------------------------------- /Libraries/Utils/Sources/Array+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/Sources/Array+Extensions.swift -------------------------------------------------------------------------------- /Libraries/Utils/Sources/DefaultCreatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/Sources/DefaultCreatable.swift -------------------------------------------------------------------------------- /Libraries/Utils/Sources/Number+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/Sources/Number+Extensions.swift -------------------------------------------------------------------------------- /Libraries/Utils/Sources/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/Sources/String+Extensions.swift -------------------------------------------------------------------------------- /Libraries/Utils/Sources/UIScreen+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/Sources/UIScreen+Extensions.swift -------------------------------------------------------------------------------- /Libraries/Utils/Sources/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/Sources/UIView+Extensions.swift -------------------------------------------------------------------------------- /Libraries/Utils/Sources/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/Utils/Sources/Utils.swift -------------------------------------------------------------------------------- /Libraries/WeightsCache/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/WeightsCache/BUILD -------------------------------------------------------------------------------- /Libraries/WeightsCache/Sources/WeightsCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Libraries/WeightsCache/Sources/WeightsCache.swift -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/MODULE.bazel.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/README.md -------------------------------------------------------------------------------- /SYNCLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/SYNCLIST -------------------------------------------------------------------------------- /Scripts/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/BUILD.bazel -------------------------------------------------------------------------------- /Scripts/ServerManagement/CPUScript/InitCPUServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/CPUScript/InitCPUServer.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/CPUScript/InitCertificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/CPUScript/InitCertificate.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/CPUScript/LaunchCPUServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/CPUScript/LaunchCPUServer.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/CPUScript/LaunchEnvoyServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/CPUScript/LaunchEnvoyServer.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/CPUScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/CPUScript/README.md -------------------------------------------------------------------------------- /Scripts/ServerManagement/CPUScript/envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/CPUScript/envoy-config.yaml -------------------------------------------------------------------------------- /Scripts/ServerManagement/CPUScript/model-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/CPUScript/model-list -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/InitGPUServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/InitGPUServer.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/LaunchGPU/LaunchGPUServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/LaunchGPU/LaunchGPUServer.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/LaunchGPU/SetupRAID0Storage_WIP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/LaunchGPU/SetupRAID0Storage_WIP.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/LaunchGPU/list_ckpts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/LaunchGPU/list_ckpts.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/LaunchGPU/mount_overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/LaunchGPU/mount_overlay.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/LaunchGPU/start_single_grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/LaunchGPU/start_single_grpc.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/LaunchGPU/sum_size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/LaunchGPU/sum_size.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/LaunchGPU/tmpfs.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/LaunchGPU/tmpfs.ls -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/README.md -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/UpdateNasModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/UpdateNasModel.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/cleanup_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/cleanup_models.py -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/compare_checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/compare_checksums.py -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/gpu_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/gpu_servers.txt -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/r2_sync_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/r2_sync_verification.py -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/start_nas_http_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/start_nas_http_server.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/stop_nas_http_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/stop_nas_http_server.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateModels/sync_models_multi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateModels/sync_models_multi_server.py -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/UpdateScripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/UpdateScripts.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/VerifyGPUSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/VerifyGPUSetup.sh -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/files_to_copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/files_to_copy.txt -------------------------------------------------------------------------------- /Scripts/ServerManagement/GPUScript/gpu_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/GPUScript/gpu_servers.txt -------------------------------------------------------------------------------- /Scripts/ServerManagement/InitTailscale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ServerManagement/InitTailscale.sh -------------------------------------------------------------------------------- /Scripts/buildifier/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/buildifier/pre-commit -------------------------------------------------------------------------------- /Scripts/commit/apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/commit/apply.py -------------------------------------------------------------------------------- /Scripts/commit/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/commit/commit.py -------------------------------------------------------------------------------- /Scripts/compdb/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/compdb/BUILD -------------------------------------------------------------------------------- /Scripts/compdb/compdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/compdb/compdb.py -------------------------------------------------------------------------------- /Scripts/corrections/corrections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/corrections/corrections.rb -------------------------------------------------------------------------------- /Scripts/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/docker/build.sh -------------------------------------------------------------------------------- /Scripts/docker/cudaSwiftDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/docker/cudaSwiftDockerfile -------------------------------------------------------------------------------- /Scripts/docker/swift6Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/docker/swift6Dockerfile -------------------------------------------------------------------------------- /Scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/install.sh -------------------------------------------------------------------------------- /Scripts/ios_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/ios_build.sh -------------------------------------------------------------------------------- /Scripts/mac_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/mac_build.sh -------------------------------------------------------------------------------- /Scripts/setup_clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/setup_clang.sh -------------------------------------------------------------------------------- /Scripts/swift-format/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/swift-format/pre-commit -------------------------------------------------------------------------------- /Scripts/tests/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/tests/dog.png -------------------------------------------------------------------------------- /Scripts/tests/test_cli_and_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/tests/test_cli_and_server.rb -------------------------------------------------------------------------------- /Scripts/vendors/dispatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/vendors/dispatch -------------------------------------------------------------------------------- /Scripts/vscode/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Scripts/vscode/build.sh -------------------------------------------------------------------------------- /Tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Tools/BUILD -------------------------------------------------------------------------------- /Tools/Packager/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Tools/Packager/main.swift -------------------------------------------------------------------------------- /Tools/Packager/packager.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Tools/Packager/packager.bzl -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/.gitignore -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/BUILD.bazel -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/CONTRIBUTING.md -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/LICENSE.txt -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Package.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Package@swift-5.5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Package@swift-5.5.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/README.md -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/SECURITY.md -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTSHTTPClient/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTSHTTPClient/main.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTSHTTPServer/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTSHTTPServer/main.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/Docs.docc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/Docs.docc/index.md -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/MonitoringFramer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/MonitoringFramer.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOFilterEmptyWritesHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOFilterEmptyWritesHandler.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSBootstraps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSBootstraps.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSChannelOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSChannelOptions.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSConnectionBootstrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSConnectionBootstrap.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSConnectionChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSConnectionChannel.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSErrors.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSEventLoop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSEventLoop.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSEventLoopGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSEventLoopGroup.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSListenerBootstrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSListenerBootstrap.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSListenerChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSListenerChannel.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSNetworkEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/NIOTSNetworkEvents.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/SocketAddress+NWEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/SocketAddress+NWEndpoint.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/StateManagedChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/StateManagedChannel.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/TCPOptions+SocketChannelOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Sources/NIOTransportServices/TCPOptions+SocketChannelOption.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOFilterEmptyWritesHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOFilterEmptyWritesHandlerTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSBootstrapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSBootstrapTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSChannelMetadataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSChannelMetadataTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSChannelOptionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSChannelOptionsTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSConnectionChannelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSConnectionChannelTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSEndToEndTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSEndToEndTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSEventLoopTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSEventLoopTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSListenerChannelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSListenerChannelTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSSocketOptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSSocketOptionTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSSocketOptionsOnChannelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSSocketOptionsOnChannelTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSWorkaroundTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/Tests/NIOTransportServicesTests/NIOTSWorkaroundTests.swift -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/dev/git.commit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/dev/git.commit.template -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/docker/Dockerfile -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/docker/docker-compose.2004.55.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/docker/docker-compose.2004.55.yaml -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/docker/docker-compose.2004.56.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/docker/docker-compose.2004.56.yaml -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/docker/docker-compose.2004.main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/docker/docker-compose.2004.main.yaml -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/docker/docker-compose.2204.57.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/docker/docker-compose.2204.57.yaml -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/docker/docker-compose.yaml -------------------------------------------------------------------------------- /Vendors/SwiftNIOTransportServices/scripts/soundness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/SwiftNIOTransportServices/scripts/soundness.sh -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [weichsel] 4 | -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/ISSUE_TEMPLATE/Support_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/ISSUE_TEMPLATE/Support_question.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/workflows/llvm-cov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/workflows/llvm-cov.yml -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/workflows/swift.yml -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/.gitignore -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/BUILD.bazel -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/CHANGELOG.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/LICENSE -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Package.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Package@swift-4.0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Package@swift-4.0.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Package@swift-4.1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Package@swift-4.1.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Package@swift-4.2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Package@swift-4.2.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/README.md -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/CZLib/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/CZLib/module.modulemap -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/CZLib/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/CZLib/shim.h -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+BackingConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+BackingConfiguration.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Helpers.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+MemoryFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+MemoryFile.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Progress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Progress.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Reading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Reading.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+ReadingDeprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+ReadingDeprecated.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Writing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+Writing.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+WritingDeprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+WritingDeprecated.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Archive.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Data+Compression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Data+Compression.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Data+CompressionDeprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Data+CompressionDeprecated.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Data+Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Data+Serialization.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Entry+Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Entry+Serialization.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Entry+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Entry+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/Entry.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/FileManager+ZIP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/FileManager+ZIP.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Sources/ZIPFoundation/URL+ZIP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Sources/ZIPFoundation/URL+ZIP.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testAddDirectoryToArchiveWithZIP64LFHOffset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testAddDirectoryToArchiveWithZIP64LFHOffset.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testAddEntryToArchiveWithZIP64LFHOffset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testAddEntryToArchiveWithZIP64LFHOffset.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddCompressedEntryProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddCompressedEntryProgress.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddCompressedEntryProgress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddCompressedEntryProgress.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddEntryErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddEntryErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddUncompressedEntryProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddUncompressedEntryProgress.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddUncompressedEntryProgress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveAddUncompressedEntryProgress.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveIteratorErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testArchiveIteratorErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCRC32Calculation.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCRC32Calculation.data -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCRC32Check.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCRC32Check.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCorruptFileErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCorruptFileErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCorruptSymbolicLinkErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCorruptSymbolicLinkErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddCompressedEntry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddCompressedEntry.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddCompressedEntryToMemory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddCompressedEntryToMemory.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddEntryErrorConditions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddSymbolicLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddSymbolicLink.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddUncompressedEntry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddUncompressedEntry.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddUncompressedEntryToMemory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddUncompressedEntryToMemory.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddZeroSizeCompressedEntry.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateArchiveAddZeroSizeUncompressedEntry.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateZIP64ArchiveAddUncompressedEntry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testCreateZIP64ArchiveAddUncompressedEntry.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testDetectEntryType.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testDetectEntryType.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testEntryIsCompressed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testEntryIsCompressed.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedDataDescriptorArchive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedDataDescriptorArchive.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedEntryCancelation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedEntryCancelation.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedFolderEntries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedFolderEntries.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedFolderEntriesFromMemory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedFolderEntriesFromMemory.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedZIP64Entries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractCompressedZIP64Entries.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractEncryptedArchiveErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractEncryptedArchiveErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractEntryWithZIP64DataDescriptor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractEntryWithZIP64DataDescriptor.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractInvalidBufferSizeErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractInvalidBufferSizeErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractMSDOSArchive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractMSDOSArchive.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractPreferredEncoding.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractPreferredEncoding.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedDataDescriptorArchive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedDataDescriptorArchive.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedEmptyFile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedEmptyFile.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedEntryCancelation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedEntryCancelation.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedFolderEntries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedFolderEntries.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedFolderEntriesFromMemory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedFolderEntriesFromMemory.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedZIP64Entries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testExtractUncompressedZIP64Entries.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testFileModificationDate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testFileModificationDate.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testInvalidCompressionMethodErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testInvalidCompressionMethodErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testPOSIXPermissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testPOSIXPermissions.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testProgressHelpers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testProgressHelpers.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveCompressedEntry.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveCompressedEntry.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveDataDescriptorCompressedEntry.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveDataDescriptorCompressedEntry.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryFromArchiveWithZIP64EOCD.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryFromArchiveWithZIP64EOCD.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryProgress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryProgress.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryWithZIP64ExtendedInformation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveEntryWithZIP64ExtendedInformation.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveUncompressedEntry.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveUncompressedEntry.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveZIP64EntryFromArchiveWithZIP64EOCD.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testRemoveZIP64EntryFromArchiveWithZIP64EOCD.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testTraversalAttack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testTraversalAttack.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipCompressedZIP64Item.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipCompressedZIP64Item.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItem.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemErrorConditions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemErrorConditions.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemErrorConditions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemErrorConditions.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemProgress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemProgress.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemWithPreferredEncoding.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemWithPreferredEncoding.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemWithZIP64DataDescriptor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipItemWithZIP64DataDescriptor.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipUncompressedZIP64Item.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUnzipUncompressedZIP64Item.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUpdateArchiveRemoveUncompressedEntryFromMemory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testUpdateArchiveRemoveUncompressedEntryFromMemory.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZIP64ArchiveAddEntryProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZIP64ArchiveAddEntryProgress.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZIP64ArchiveAddEntryProgress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZIP64ArchiveAddEntryProgress.zip -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipCompressedZIP64Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipCompressedZIP64Item.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipItem.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipItemProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipItemProgress.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipUncompressedZIP64Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/Resources/testZipUncompressedZIP64Item.png -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationArchiveTests+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationArchiveTests+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationArchiveTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationArchiveTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationDataSerializationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationDataSerializationTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationEntryTests+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationEntryTests+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationEntryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationEntryTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationErrorConditionTests+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationErrorConditionTests+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationErrorConditionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationErrorConditionTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationFileManagerTests+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationFileManagerTests+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationFileManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationFileManagerTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationMemoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationMemoryTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationPerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationPerformanceTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationProgressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationProgressTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationReadingTests+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationReadingTests+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationReadingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationReadingTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationWritingTests+ZIP64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationWritingTests+ZIP64.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationWritingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/Tests/ZIPFoundationTests/ZIPFoundationWritingTests.swift -------------------------------------------------------------------------------- /Vendors/ZIPFoundation/ZIPFoundation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/Vendors/ZIPFoundation/ZIPFoundation.podspec -------------------------------------------------------------------------------- /WORKSPACE.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/WORKSPACE.darwin -------------------------------------------------------------------------------- /WORKSPACE.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/WORKSPACE.linux -------------------------------------------------------------------------------- /external/cpp-httplib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/cpp-httplib.BUILD -------------------------------------------------------------------------------- /external/grpc-swift.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/grpc-swift.BUILD -------------------------------------------------------------------------------- /external/swift-JMESPath.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-JMESPath.BUILD -------------------------------------------------------------------------------- /external/swift-algorithms.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-algorithms.BUILD -------------------------------------------------------------------------------- /external/swift-argument-parser.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-argument-parser.BUILD -------------------------------------------------------------------------------- /external/swift-cmark.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-cmark.BUILD -------------------------------------------------------------------------------- /external/swift-collections.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-collections.BUILD -------------------------------------------------------------------------------- /external/swift-crypto.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-crypto.BUILD -------------------------------------------------------------------------------- /external/swift-format.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-format.BUILD -------------------------------------------------------------------------------- /external/swift-guaka.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-guaka.BUILD -------------------------------------------------------------------------------- /external/swift-log-datadog.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-log-datadog.BUILD -------------------------------------------------------------------------------- /external/swift-log.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-log.BUILD -------------------------------------------------------------------------------- /external/swift-markdown.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-markdown.BUILD -------------------------------------------------------------------------------- /external/swift-nio-extras.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-nio-extras.BUILD -------------------------------------------------------------------------------- /external/swift-nio-http2.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-nio-http2.BUILD -------------------------------------------------------------------------------- /external/swift-nio-ssl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-nio-ssl.BUILD -------------------------------------------------------------------------------- /external/swift-nio.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-nio.BUILD -------------------------------------------------------------------------------- /external/swift-numerics.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-numerics.BUILD -------------------------------------------------------------------------------- /external/swift-png.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-png.BUILD -------------------------------------------------------------------------------- /external/swift-protobuf.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-protobuf.BUILD -------------------------------------------------------------------------------- /external/swift-string-scanner.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-string-scanner.BUILD -------------------------------------------------------------------------------- /external/swift-syntax.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-syntax.BUILD -------------------------------------------------------------------------------- /external/swift-system.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-system.BUILD -------------------------------------------------------------------------------- /external/swift-tools-support-core.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/swift-tools-support-core.BUILD -------------------------------------------------------------------------------- /external/yams.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/external/yams.BUILD -------------------------------------------------------------------------------- /force_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/force_sync.sh -------------------------------------------------------------------------------- /signatures/version1/cla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawthingsai/draw-things-community/HEAD/signatures/version1/cla.json --------------------------------------------------------------------------------