From a413c7fb5d1f71d934ea78714846929dfe3f1c81 Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Mon, 16 Sep 2024 11:48:32 +0100 Subject: [PATCH] Generate (draft) SBOM manifest --- generate-manifest.py | 216 ++ manifest.spdx.json | 6477 ++++++++++++++++++++++++++++++++++++++++++ requirements.txt | 3 +- 3 files changed, 6695 insertions(+), 1 deletion(-) create mode 100644 generate-manifest.py create mode 100644 manifest.spdx.json diff --git a/generate-manifest.py b/generate-manifest.py new file mode 100644 index 0000000..3c10e74 --- /dev/null +++ b/generate-manifest.py @@ -0,0 +1,216 @@ +# SPDX-License-Identifier: Apache-2.0 +import glob +import hashlib +import json +import os +import re +import subprocess + +from fontTools.ttLib import TTFont +from lib4sbom.data.file import SBOMFile +from lib4sbom.data.package import SBOMPackage +from lib4sbom.generator import SBOMGenerator +from lib4sbom.sbom import SBOM +from lib4sbom.output import SBOMOutput +from sbom4python.scanner import SBOMScanner + +__version__ = "0.0.1" +DRAFT = True +# Most of this is written in as general a way as possible, so it can be reused +# as a basis for other font projects. The noto-cjk specific stuff is at the end. + + +def file_id(s): + return re.sub(r"[^a-zA-Z0-9\.]", "-", s) + + +def add_checksums(file): + filename = file.get_name() + file.set_checksum( + "SHA1", hashlib.file_digest(open(filename, "rb"), "sha1").hexdigest() + ) + file.set_checksum( + "SHA256", hashlib.file_digest(open(filename, "rb"), "sha256").hexdigest() + ) + + +def font_to_file(filename, upstream_binary=False): + file = SBOMFile() + file.initialise() + file.set_id(file_id(filename)) + file.set_name(filename) + file.set_filetype("OTHER") + add_checksums(file) + + name = TTFont(filename, fontNumber=0)["name"] + license = name.getDebugName(13) + copyright = name.getDebugName(0) + rfn = ( + "-RFN" + if ( + "reserved font name" in license.lower() + or "reserved font name" in copyright.lower() + ) + else "" + ) + if "Open Font License, Version 1.0" in license: + file.set_licenseinfoinfile("OFL-1.0" + rfn) + file.set_licenseconcluded("OFL-1.0" + rfn) + if "Open Font License, Version 1.1" in license: + file.set_licenseinfoinfile("OFL-1.1" + rfn) + file.set_licenseconcluded("OFL-1.1" + rfn) + + file.set_copyrighttext(copyright) + + if upstream_binary: + manufacturer = name.getDebugName(8) + file.set_contributor(manufacturer) + designer = name.getDebugName(9) + file.set_contributor(designer) + + file.set_comment("Binary file obtained from " + manufacturer) + return file.get_file() + + +def homebrew_package(package_name): + package = SBOMPackage() + package.initialise() + package.set_name(package_name) + info = subprocess.run( + f"brew info --json=v1 {package_name}", shell=True, capture_output=True + ).stdout + info = json.loads(info)[0] + package.set_version(info["linked_keg"]) + package.set_homepage(info["homepage"]) + package.set_licenseinfoinfiles(info["license"]) + # Extend this to handle more licenses if needed + if "MIT" in info["license"]: + package.set_licenseconcluded("MIT") + return package.get_package() + + +def source_to_file(filename): + file = SBOMFile() + file.initialise() + file.set_id(file_id(filename)) + file.set_name(filename) + file.set_filetype("SOURCE") + add_checksums(file) + file.set_licenseinfoinfile("Apache-2.0") + file.set_licenseconcluded("Apache-2.0") + file.set_comment( + "Taken from " + + subprocess.run( + "git config --get remote.origin.url", shell=True, capture_output=True + ).stdout.decode("utf8") + + " git rev " + + subprocess.run( + "git rev-parse main:" + filename, shell=True, capture_output=True + ) + .stdout.decode("utf8") + .strip() + ) + return file.get_file() + + +def relates(source, target, relationship): + relationships.append( + { + "source": source, + "source_id": file_id(source), + "target": target, + "target_id": file_id(target), + "target_type": "file", + "type": relationship, + } + ) + + +def file_relates(sbom, source, target, relationship): + target_ident = sbom.bom.file_ident(sbom._get_element(target, file_id(target))) + source_ident = sbom.bom.file_ident(sbom._get_element(source, file_id(source))) + sbom.bom.generateRelationship(source_ident, target_ident, " " + relationship + " ") + + +# Build a basic SBOM just from the Python packages +sbom_scan = SBOMScanner(False, False, False, False) +sbom_scan.process_requirements("requirements.txt") + +sbom_gen = SBOMGenerator( + sbom_type="spdx", format="json", application=__file__, version=__version__ +) + +sbom = SBOM() +document = sbom_scan.get_document() +sbom.add_document(document) +packages = sbom_scan.get_packages() +relationships = sbom_scan.get_relationships() + + +files = {} +# Input files from Adobe +adobe = { + font: font_to_file(font, upstream_binary=True) + for font in glob.glob("S*/**/*.[o,t]t[f,c]", recursive=True) +} +files.update(adobe) + +# Files we used in generation +files["google-fonts/hotfix.py"] = source_to_file("google-fonts/hotfix.py") +files["build-gf.sh"] = source_to_file("build-gf.sh") + +# Files we generated +ours = { + font: font_to_file(font) + for font in glob.glob("google-fonts/*.[o,t]t[f,c]", recursive=True) +} +for our in ours.values(): + our["comment"] = "Generated as described in relationships section" +files.update(ours) + +sbom.add_files(files) + +# Packages +# hotfix.py depends on all our python packages +for package in packages.keys(): + relates(package[0], "google-fonts/hotfix.py", "RUNTIME_DEPENDENCY_OF") + +# We also used Harfbuzz +harfbuzz = SBOMPackage() +harfbuzz.initialise() +harfbuzz.set_name("harfbuzz") +version = subprocess.run("hb-subset --version", shell=True, capture_output=True).stdout +version = re.search(r"(\d+\.\d+\.\d+)", version.decode("utf8"))[0] +harfbuzz.set_version(version) +harfbuzz.set_licenseconcluded("MIT") +harfbuzz.set_homepage("https://github.com/harfbuzz/harfbuzz/") +packages["harfbuzz"] = harfbuzz.get_package() +# and woff2 +packages["woff2"] = homebrew_package("woff2") + +sbom.add_packages(packages) +sbom.add_relationships(relationships) + +with open("build-gf.sh") as f: + for line in f: + if m := re.search("# SBOM-Depends: (.*)", line): + relates(m[1], "build-gf.sh", "RUNTIME_DEPENDENCY_OF") + +sbom_gen.generate( + project_name="noto-cjk" + ("-DRAFT" if DRAFT else " "), + sbom_data=sbom.get_sbom(), + send_to_output=False, +) + +# lib4sbom does not support file->file relationships, dig into the object +for original in glob.glob("S*/Variable/*/Subset/*.ttf"): + modified = os.path.basename(original).replace("-VF.ttf", "[wght].ttf") + modified = "google-fonts/" + re.sub( + "CJK(..)", lambda x: x[0][-2:].upper(), modified + ) + file_relates(sbom_gen, modified, original, "MODIFIED_FROM") + file_relates(sbom_gen, modified, "build-gf.sh", "GENERATED_FROM") + + +sbom_out = SBOMOutput("manifest.spdx.json", output_format="json") +sbom_out.generate_output(sbom_gen.sbom) diff --git a/manifest.spdx.json b/manifest.spdx.json new file mode 100644 index 0000000..d13a786 --- /dev/null +++ b/manifest.spdx.json @@ -0,0 +1,6477 @@ +{ + "SPDXID": "SPDXRef-DOCUMENT", + "spdxVersion": "SPDX-2.3", + "creationInfo": { + "comment": "This document has been automatically generated.", + "creators": [ + "Tool: /Users/simon/others-repos/noto-cjk/generate-manifest.py-0.0.1" + ], + "created": "2024-09-16T11:47:51Z", + "licenseListVersion": "3.22" + }, + "name": "noto-cjk-DRAFT", + "dataLicense": "CC0-1.0", + "documentNamespace": "http://spdx.org/spdxdocs/noto-cjk-DRAFT-0680d5db-eb22-4b98-86ac-aa28281e654c", + "files": [ + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTC-NotoSerifCJK-VF.otf.ttc", + "fileName": "./Serif/Variable/OTC/NotoSerifCJK-VF.otf.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7fe7507de455165c82739cf6fd366b3ed14a9e2b" + }, + { + "algorithm": "SHA256", + "checksumValue": "24720ea76c8b13e822059d155cefb0f9f6be1cfdee1e2bb67b61c96067de42c9" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTC-NotoSerifCJK-VF.ttf.ttc", + "fileName": "./Serif/Variable/OTC/NotoSerifCJK-VF.ttf.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4df8fe6dc96ebd8be426a0e739ef9811eab3894b" + }, + { + "algorithm": "SHA256", + "checksumValue": "e0be8fdd4f01c9807ee856ee0d30147f663c5ab397c491c80134266f58d1fffe" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-NotoSerifCJKtc-VF.ttf", + "fileName": "./Serif/Variable/TTF/NotoSerifCJKtc-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "de1e7834af3147236f0e7aa02bc0c180a856a5d9" + }, + { + "algorithm": "SHA256", + "checksumValue": "9e63b78b1ece809121ff29eb880c55e196294ded9d54c0ec4ece9e4fb4daf728" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-NotoSerifCJKhk-VF.ttf", + "fileName": "./Serif/Variable/TTF/NotoSerifCJKhk-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "77bf61cce821c1064089b1e15c960bc6b34a45d9" + }, + { + "algorithm": "SHA256", + "checksumValue": "9c7f9650f2da5c7287063d65641c71f9a429443e41cf8174dc277df4a8579f9f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-NotoSerifCJKjp-VF.ttf", + "fileName": "./Serif/Variable/TTF/NotoSerifCJKjp-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "437678bbdab8b134c5155ff58fe6ad46cb453cab" + }, + { + "algorithm": "SHA256", + "checksumValue": "c2ff7cffb6ef75193d4406b030eab5aa6503c48004acec6b040327e2fe1e9e51" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-NotoSerifCJKkr-VF.ttf", + "fileName": "./Serif/Variable/TTF/NotoSerifCJKkr-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ad5846a613d08a69ed555702fc57d9422c22b6d0" + }, + { + "algorithm": "SHA256", + "checksumValue": "b5162725c15f3ef91e53de76291c5dc555ef7576578d43423d2fd9ae40559ad1" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-NotoSerifCJKsc-VF.ttf", + "fileName": "./Serif/Variable/TTF/NotoSerifCJKsc-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7ef53915e8c4cfc10ade402baf444a92241ab6d5" + }, + { + "algorithm": "SHA256", + "checksumValue": "dbf8ac0523dc19fa6294c52ce127a81c1b5b43ddc2e0915942bfd50aa58f4c53" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-Subset-NotoSerifJP-VF.ttf", + "fileName": "./Serif/Variable/TTF/Subset/NotoSerifJP-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "77e9ce08e68db18c782af5a13bc6a4debfe75c0e" + }, + { + "algorithm": "SHA256", + "checksumValue": "99999f906b3793c7c97661a05ef9d53488d488604683b308c756d084b71df7d1" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-Subset-NotoSerifKR-VF.ttf", + "fileName": "./Serif/Variable/TTF/Subset/NotoSerifKR-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ded7215f2bd12c6294dcb3fa2d5639b039529988" + }, + { + "algorithm": "SHA256", + "checksumValue": "4c6da64568466ab21d7dabe2338696aee6a5e0314d411e34b8410767e569e12d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-Subset-NotoSerifSC-VF.ttf", + "fileName": "./Serif/Variable/TTF/Subset/NotoSerifSC-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "44b8f4a3544fd1aa302c44613977324d0691cfc7" + }, + { + "algorithm": "SHA256", + "checksumValue": "5326cfb097e3ab26fcb39329752b5c0a439bf8d5c4649520e4b492939c352a09" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-Subset-NotoSerifHK-VF.ttf", + "fileName": "./Serif/Variable/TTF/Subset/NotoSerifHK-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7b01f13b58f3a8afc7f3eb1b9f22d4dbffccbf6c" + }, + { + "algorithm": "SHA256", + "checksumValue": "b25df2590ad514487eecd1244ce724d32907b533ed00e50cfc80d9e172b2bd97" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-TTF-Subset-NotoSerifTC-VF.ttf", + "fileName": "./Serif/Variable/TTF/Subset/NotoSerifTC-VF.ttf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ca140893fc990a3fcd2fc5631ac79e8ca7690a5d" + }, + { + "algorithm": "SHA256", + "checksumValue": "c2f466b741797d917aff27089f1c2eba2fe42c46ca410e2dbd39a8e95d0e5e3a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-NotoSerifCJKhk-VF.otf", + "fileName": "./Serif/Variable/OTF/NotoSerifCJKhk-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "5a09f94c26a8d1cf316c6767c1e0d81140cba043" + }, + { + "algorithm": "SHA256", + "checksumValue": "43b50219efce065185d7e854f7f44a65666bc49566c61b6e2801355057869abd" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-NotoSerifCJKtc-VF.otf", + "fileName": "./Serif/Variable/OTF/NotoSerifCJKtc-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "e078b52debfe0654cf056f6d23eeb121e6c6d458" + }, + { + "algorithm": "SHA256", + "checksumValue": "0ccffda602a3ea48057e7332a931e3d5505b0bafb1798d32e00b16d8d7508913" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-NotoSerifCJKsc-VF.otf", + "fileName": "./Serif/Variable/OTF/NotoSerifCJKsc-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "e592da984ab6be37b8f54cca6b39cdc10d8d8382" + }, + { + "algorithm": "SHA256", + "checksumValue": "eff651e003e5b6a9cb40412db7e6618ebb709d4aca6d03f9d150984660860b5d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-NotoSerifCJKkr-VF.otf", + "fileName": "./Serif/Variable/OTF/NotoSerifCJKkr-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "e86475a32d2dd0f4efbc52992894eb6aa8daac1b" + }, + { + "algorithm": "SHA256", + "checksumValue": "3dbebb8d3cc7c949ad4488b11b5ffe61524958e3fe9a23d5b0f57be21513e306" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-NotoSerifCJKjp-VF.otf", + "fileName": "./Serif/Variable/OTF/NotoSerifCJKjp-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f95641c13302f598b1de675db7388a6a09a0c3d3" + }, + { + "algorithm": "SHA256", + "checksumValue": "2c13a0a124dfefcb02f93c30fa0d593aff473261bcffbc0f67d6c723a5e0a739" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-Subset-NotoSerifSC-VF.otf", + "fileName": "./Serif/Variable/OTF/Subset/NotoSerifSC-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "3cc33432d3717638fccc53d89f8df2a9f3cde1b6" + }, + { + "algorithm": "SHA256", + "checksumValue": "71b4d3ded2d90ff43bb75a4e48cdbe170f0b8d5486dc89ff87f2a1728b56da64" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-Subset-NotoSerifKR-VF.otf", + "fileName": "./Serif/Variable/OTF/Subset/NotoSerifKR-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b69613bfeb3114d11d453e263bf523fa7afcd5dd" + }, + { + "algorithm": "SHA256", + "checksumValue": "0cee38f8fd687c5410089c963492ef39f9b5a64e2b11b85ce4e86105d75e0695" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-Subset-NotoSerifJP-VF.otf", + "fileName": "./Serif/Variable/OTF/Subset/NotoSerifJP-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f6ddc972c27d5b9251108a70ca34e65bdff4461e" + }, + { + "algorithm": "SHA256", + "checksumValue": "39701fd096bc51204a8444c6c2659f007b29674a13eb62ddfa470638fe8179cd" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-Subset-NotoSerifTC-VF.otf", + "fileName": "./Serif/Variable/OTF/Subset/NotoSerifTC-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "2c77a49185d6bc81f1ce5cebd4be0d1814952403" + }, + { + "algorithm": "SHA256", + "checksumValue": "20a6ab96b13b433e87019ad0cdf72aa522c0db5d3138acab00d076ccf18e63ef" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-Variable-OTF-Subset-NotoSerifHK-VF.otf", + "fileName": "./Serif/Variable/OTF/Subset/NotoSerifHK-VF.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "dd6eea2ee58bffb1030ba8238d728e0a13dfc000" + }, + { + "algorithm": "SHA256", + "checksumValue": "fa40e983d5004e88e08f5beee4177c8edbc72fe21f0f0c999fec3effd3ddccbf" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-SC-NotoSerifSC-Bold.otf", + "fileName": "./Serif/SubsetOTF/SC/NotoSerifSC-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "01236587f9d1156883d1fa456b775802aef8b976" + }, + { + "algorithm": "SHA256", + "checksumValue": "24693d48bdb9152f0a06b02af625638a1097abd6de4010ebba027f6e82710527" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-SC-NotoSerifSC-Regular.otf", + "fileName": "./Serif/SubsetOTF/SC/NotoSerifSC-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9af617482eb257d518382747b63b358bdd97ed38" + }, + { + "algorithm": "SHA256", + "checksumValue": "e8f396decc1f0963a016a989c3d8852e863d1350996f573860a80767c83a1cd3" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-SC-NotoSerifSC-Medium.otf", + "fileName": "./Serif/SubsetOTF/SC/NotoSerifSC-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "90135a40860339d519415c6cc30a8a2c9e91803d" + }, + { + "algorithm": "SHA256", + "checksumValue": "e4e9beb5aaeb951e101aa8f122e2a6801ea9e48ac9f9b6bdfeef2436b55bc8ee" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-SC-NotoSerifSC-Light.otf", + "fileName": "./Serif/SubsetOTF/SC/NotoSerifSC-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d4521b8b4e79845230b6dda9a99c2430c77d8403" + }, + { + "algorithm": "SHA256", + "checksumValue": "87b656cbb4fb809095b13bb9dc165953995c7595ab63cedd8f5a8415520caca2" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-SC-NotoSerifSC-Black.otf", + "fileName": "./Serif/SubsetOTF/SC/NotoSerifSC-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8d3ca30932e7ea14347c8cdcaaae050996e764fa" + }, + { + "algorithm": "SHA256", + "checksumValue": "91dde57622845beeb663f300813999febdb7fcd5e451bde199d7c954a9740cb4" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-SC-NotoSerifSC-ExtraLight.otf", + "fileName": "./Serif/SubsetOTF/SC/NotoSerifSC-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "e70d0a9ed0b2cce4890a30fc9b01029d88c60ccd" + }, + { + "algorithm": "SHA256", + "checksumValue": "92ba4ac9f99074844cff7ed14d168f6783062cd53e3095643b40910a60792ff9" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-SC-NotoSerifSC-SemiBold.otf", + "fileName": "./Serif/SubsetOTF/SC/NotoSerifSC-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "62ebedcfdd3d35f55f2af0b125c7369905ef0e77" + }, + { + "algorithm": "SHA256", + "checksumValue": "517d9736136b3b4e9aea742a7e1acda1922aea91a4425bd8db79281934055bf5" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-HK-NotoSerifHK-SemiBold.otf", + "fileName": "./Serif/SubsetOTF/HK/NotoSerifHK-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8d5b5d19a39a7402193f0cdd3635639c1af0d383" + }, + { + "algorithm": "SHA256", + "checksumValue": "c6c7632f74a584b4281efcc3daaeb71b875465bf1ec989a94dacd76e670d3e24" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-HK-NotoSerifHK-Regular.otf", + "fileName": "./Serif/SubsetOTF/HK/NotoSerifHK-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7a541bcfb1c03bb396b003d5c7d9118ee843cd46" + }, + { + "algorithm": "SHA256", + "checksumValue": "42729f88916dd857873d04761f9598823c2568d050c71288f4774452d63e549e" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-HK-NotoSerifHK-Black.otf", + "fileName": "./Serif/SubsetOTF/HK/NotoSerifHK-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0ad2a0b51b959aff5491e7b5ff7b99977c95cd55" + }, + { + "algorithm": "SHA256", + "checksumValue": "37259771da6cb8193879e232d82394fa322d34b0003fa4f927b7d45497cf6646" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-HK-NotoSerifHK-Bold.otf", + "fileName": "./Serif/SubsetOTF/HK/NotoSerifHK-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0d4e3fe21eecf9588bcc891aca6c83ddcc4720cd" + }, + { + "algorithm": "SHA256", + "checksumValue": "9a0a099a5da56c522168230d4a25c6b8ada1453562db8c635da27cdd31a6cc55" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-HK-NotoSerifHK-Light.otf", + "fileName": "./Serif/SubsetOTF/HK/NotoSerifHK-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "75913cab69d83e6b1a87fade4e185275136be964" + }, + { + "algorithm": "SHA256", + "checksumValue": "926633de8030f2fbb147dbcebfca853bcb1c6ed33610a6816c244a8278aa962c" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-HK-NotoSerifHK-ExtraLight.otf", + "fileName": "./Serif/SubsetOTF/HK/NotoSerifHK-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4a2ce61d0ece3f7f4b4f58f6887cc1d21fdde972" + }, + { + "algorithm": "SHA256", + "checksumValue": "9479585195b28e1a949fe7f8ae6cd666c51dfc4a1cabfdd6886502aeffa75f44" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-HK-NotoSerifHK-Medium.otf", + "fileName": "./Serif/SubsetOTF/HK/NotoSerifHK-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d23af60f6ec08b14fef920a0b706ba9085069fa6" + }, + { + "algorithm": "SHA256", + "checksumValue": "f12b8c55173a13f4d1986169d84a0123e6789f3f4c6a9d95cb47ccef8b0e0d91" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-TC-NotoSerifTC-Light.otf", + "fileName": "./Serif/SubsetOTF/TC/NotoSerifTC-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "276e8bbb87b160d0091aa238f7c638449ff32b48" + }, + { + "algorithm": "SHA256", + "checksumValue": "1e99e50398b82c20b153c11c4cfb12f4f64732ce8272f7eb0b807f2c40eb6d3b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-TC-NotoSerifTC-Regular.otf", + "fileName": "./Serif/SubsetOTF/TC/NotoSerifTC-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "44e138d699ea8c0fdb51d4dac493f38280e3aafb" + }, + { + "algorithm": "SHA256", + "checksumValue": "63515eb0622d589a2f4062e8757c598b3da3bffd053f69abd181c210158ef10c" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-TC-NotoSerifTC-Bold.otf", + "fileName": "./Serif/SubsetOTF/TC/NotoSerifTC-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7383aedbba4bbb2ef9117db4ce3dd73d876b2fcc" + }, + { + "algorithm": "SHA256", + "checksumValue": "3ca2b3294ec84b795d0a45695e78e3612a44dce50f9fc776cd40206340a5768d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-TC-NotoSerifTC-ExtraLight.otf", + "fileName": "./Serif/SubsetOTF/TC/NotoSerifTC-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "50790f010beccb5001308956e9784c36dc8d3aa2" + }, + { + "algorithm": "SHA256", + "checksumValue": "308d14f225f5dfe61e8ab0d4844ea394b399efeb7b97642fe1c8baa7ddb0db63" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-TC-NotoSerifTC-Medium.otf", + "fileName": "./Serif/SubsetOTF/TC/NotoSerifTC-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f7dc108ce87db375423535ecacb2e0af67960725" + }, + { + "algorithm": "SHA256", + "checksumValue": "fd3936ff7cb87be3610d63a2d961ff06bd9ee2de9c0bb5a37890400487027e0f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-TC-NotoSerifTC-SemiBold.otf", + "fileName": "./Serif/SubsetOTF/TC/NotoSerifTC-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d679773587ec559007115f881164aa77a346de71" + }, + { + "algorithm": "SHA256", + "checksumValue": "e59aa64fa67b08efd000372cba5c4902424e50efef962084377c02c80f5ad593" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-TC-NotoSerifTC-Black.otf", + "fileName": "./Serif/SubsetOTF/TC/NotoSerifTC-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c090637e1a806895cde6c80b4ce1ba33a8bed7a0" + }, + { + "algorithm": "SHA256", + "checksumValue": "55c68df309e702cdb56b9ffd6b8185468afc0cb070aa9c2f14099de0cae64d12" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-KR-NotoSerifKR-SemiBold.otf", + "fileName": "./Serif/SubsetOTF/KR/NotoSerifKR-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0964c4b6e0c085dfe1df94f1176e63b763e2970c" + }, + { + "algorithm": "SHA256", + "checksumValue": "a63051d299d7219132a98ff3c2b76a62022344e50e9f3b50fdb9b0ee4560f583" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-KR-NotoSerifKR-Light.otf", + "fileName": "./Serif/SubsetOTF/KR/NotoSerifKR-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8a414fe479972f2fc8fb3ca3769d49ef09b9d4d4" + }, + { + "algorithm": "SHA256", + "checksumValue": "8430b8df32d70c54260027c45aee579840839da514d2b234bcd7c2c77bea7fa8" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-KR-NotoSerifKR-Regular.otf", + "fileName": "./Serif/SubsetOTF/KR/NotoSerifKR-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "93fbccb4fa70ab59f2e63ad9c2355c17b1fbf317" + }, + { + "algorithm": "SHA256", + "checksumValue": "5ea012e15cb7eacc1f680aee1703f3b164791b1443ea3e52b65080cca5d179cf" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-KR-NotoSerifKR-Medium.otf", + "fileName": "./Serif/SubsetOTF/KR/NotoSerifKR-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "89c8cc67e92b86a3efe4c960336bb4e6b904c46d" + }, + { + "algorithm": "SHA256", + "checksumValue": "4635a54699624f9235ff4511e932dd8229edce678bdb00d43f46b4668b151062" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-KR-NotoSerifKR-ExtraLight.otf", + "fileName": "./Serif/SubsetOTF/KR/NotoSerifKR-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "5083eb3bffaa9b3ec5e15ad7c6c983bc73ba8304" + }, + { + "algorithm": "SHA256", + "checksumValue": "efba935adbc65a8c90c64cd0f2196e0b3bdd05eabe6c3fb4e4ff6c41759d0942" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-KR-NotoSerifKR-Bold.otf", + "fileName": "./Serif/SubsetOTF/KR/NotoSerifKR-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "04aad0b22afe68d2cf98abf3d336f96f671c62de" + }, + { + "algorithm": "SHA256", + "checksumValue": "263408609ef416d597718ea91055379867d3e7086fa32f049996995d4e715e55" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-KR-NotoSerifKR-Black.otf", + "fileName": "./Serif/SubsetOTF/KR/NotoSerifKR-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8cffe749b6c0f0975c78e7ece955d208b5c93b3e" + }, + { + "algorithm": "SHA256", + "checksumValue": "e702be82c1940f7a566abfe15526ef51c3f7cfdad7df67bc0b797f934a67dd85" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-JP-NotoSerifJP-Bold.otf", + "fileName": "./Serif/SubsetOTF/JP/NotoSerifJP-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "78fc70b1aa211e03ed9f714ff3447c6e5db501ee" + }, + { + "algorithm": "SHA256", + "checksumValue": "1e03488a0d5e819f07fcd74f54703a7961ba466d3ae900f8a2a730541e6d4543" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-JP-NotoSerifJP-Medium.otf", + "fileName": "./Serif/SubsetOTF/JP/NotoSerifJP-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "40959412be5a212259708d2c34230927513fa0a5" + }, + { + "algorithm": "SHA256", + "checksumValue": "f3a906cadd27f812a8b4b18618fa750928e65339fb372bd3f825f24e3271180b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-JP-NotoSerifJP-SemiBold.otf", + "fileName": "./Serif/SubsetOTF/JP/NotoSerifJP-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "21c51d792e6f4d91fbc0f52f7fc0e6f92343f975" + }, + { + "algorithm": "SHA256", + "checksumValue": "116d06c2b11ceba33ccb3f8c9eb1c86aba3d5761a1199fd37f74e83365e7a53d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-JP-NotoSerifJP-Light.otf", + "fileName": "./Serif/SubsetOTF/JP/NotoSerifJP-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ab81136f7a1b1bac1f0aea7888a37f5f59b26fec" + }, + { + "algorithm": "SHA256", + "checksumValue": "54e6b0fa70430987a6c12001f128812f37fc315d899cb1d964395ab6450bb977" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-JP-NotoSerifJP-Regular.otf", + "fileName": "./Serif/SubsetOTF/JP/NotoSerifJP-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "491a4eb9ac68056b9f8c56dab00afd90e3c28a5f" + }, + { + "algorithm": "SHA256", + "checksumValue": "2c9a12dbd4f2408c4610c7ee84a108b62d7236c3775baed618c64d9cb44b2f04" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-JP-NotoSerifJP-Black.otf", + "fileName": "./Serif/SubsetOTF/JP/NotoSerifJP-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c80ab8aa4fb87b29d343246273332ed8da6ba939" + }, + { + "algorithm": "SHA256", + "checksumValue": "b7197366b775ccb6cd3473b7b09f2c5759a2fdfdbfedf975029203828d0ad386" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-SubsetOTF-JP-NotoSerifJP-ExtraLight.otf", + "fileName": "./Serif/SubsetOTF/JP/NotoSerifJP-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ee8dae97b840ce637030be55e03017dfc2de9c81" + }, + { + "algorithm": "SHA256", + "checksumValue": "a5056bf9b22a624b62115e9ad242879492179fe6f0b45ce5932967eb20295d5e" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTC-NotoSerifCJK-SemiBold.ttc", + "fileName": "./Serif/OTC/NotoSerifCJK-SemiBold.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a0261d848a9d2756bb01a8371ff3758891ccf0bd" + }, + { + "algorithm": "SHA256", + "checksumValue": "d55b3b7435148c54db0dd251982a400beb16724cbb7ce48c52088f2635e0d2bc" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTC-NotoSerifCJK-Black.ttc", + "fileName": "./Serif/OTC/NotoSerifCJK-Black.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "e93046a011725898567bca3440c625d55b16c3a9" + }, + { + "algorithm": "SHA256", + "checksumValue": "6e157ad56a601db8a9f19032aadf56d6ceb20db7acc22223dfa70d313fba76bc" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTC-NotoSerifCJK-Regular.ttc", + "fileName": "./Serif/OTC/NotoSerifCJK-Regular.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b9e6b662762fd382c2484b3323ccbeeef26af1cd" + }, + { + "algorithm": "SHA256", + "checksumValue": "5d9c31a059600193c9d7968a998bde886ccdc77e934006ad243b41794c496a7d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTC-NotoSerifCJK-ExtraLight.ttc", + "fileName": "./Serif/OTC/NotoSerifCJK-ExtraLight.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "dec4269080a2bf95a4c9a8ec67f2a30327f05eee" + }, + { + "algorithm": "SHA256", + "checksumValue": "556fdf24fee49c30a2507798aff0b39c79a6959c9773d21ac63afa85c9128bbb" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTC-NotoSerifCJK-Medium.ttc", + "fileName": "./Serif/OTC/NotoSerifCJK-Medium.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "67118f672701e0e9a38af579ed3da79262ef8e88" + }, + { + "algorithm": "SHA256", + "checksumValue": "16fe6d7230f82155748e10e47420dd661a899a200e05a77ee029ab1eb0fb5f29" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTC-NotoSerifCJK-Light.ttc", + "fileName": "./Serif/OTC/NotoSerifCJK-Light.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d4ffdf91207a0e40a0ed4179d179316edd36d3a4" + }, + { + "algorithm": "SHA256", + "checksumValue": "0a8fad491c0c2bf29b5b87e1e338c24162752713dec35f35acb48743a29ce433" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTC-NotoSerifCJK-Bold.ttc", + "fileName": "./Serif/OTC/NotoSerifCJK-Bold.ttc", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "de0cfe246154d35b700d236c2e4d8104088e2b2f" + }, + { + "algorithm": "SHA256", + "checksumValue": "1505ee3b9c0890fae6302ee0e9c6fd74d690f4a55a6ace1d9944f3f6352d622d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Korean-NotoSerifCJKkr-Light.otf", + "fileName": "./Serif/OTF/Korean/NotoSerifCJKkr-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "72c172338fb8c313e09819deedc2dd1ab22a9682" + }, + { + "algorithm": "SHA256", + "checksumValue": "addde644501b8adfdceed026dc2d629c3460c2e213aba7eca9c301075dba9438" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Korean-NotoSerifCJKkr-SemiBold.otf", + "fileName": "./Serif/OTF/Korean/NotoSerifCJKkr-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "de483ae226fe6955ca9127c17bd28a16f9bad1dd" + }, + { + "algorithm": "SHA256", + "checksumValue": "bce8d43887e2999c3af13802311fdc2b68f2c5b79d606ed3dd85293649932dcc" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Korean-NotoSerifCJKkr-ExtraLight.otf", + "fileName": "./Serif/OTF/Korean/NotoSerifCJKkr-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "6295a6652b6f89b2d35f0f2f2d8c95d5d0e84ad7" + }, + { + "algorithm": "SHA256", + "checksumValue": "6dc9bb8a55eecaee08434fd97330523766979fb654005b27112cc35f5306ee68" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Korean-NotoSerifCJKkr-Regular.otf", + "fileName": "./Serif/OTF/Korean/NotoSerifCJKkr-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "3d083ccb4907d67df93147e98442a07a5b4e4ff5" + }, + { + "algorithm": "SHA256", + "checksumValue": "77b4b741f864d27f15e90f275b17106dde90b2ad28f82bab72dc95805db5fb42" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Korean-NotoSerifCJKkr-Bold.otf", + "fileName": "./Serif/OTF/Korean/NotoSerifCJKkr-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f580e5c6bd6d3fec7cf7ba4caea05763c653ff62" + }, + { + "algorithm": "SHA256", + "checksumValue": "10cc03741178ad6d2747df8497d911e34b167d0474a826fb9d866c402cbe3d8f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Korean-NotoSerifCJKkr-Black.otf", + "fileName": "./Serif/OTF/Korean/NotoSerifCJKkr-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "aa870eb45c3ba9eb3e09df8f581e1a46884435f0" + }, + { + "algorithm": "SHA256", + "checksumValue": "b818be36894c02e75a6d094418498a52c3c6320783c7a5e82c1aa2c421794a91" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Korean-NotoSerifCJKkr-Medium.otf", + "fileName": "./Serif/OTF/Korean/NotoSerifCJKkr-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0b9de30a8e5396424b5a0a77f85a6d5adc638909" + }, + { + "algorithm": "SHA256", + "checksumValue": "6b8fca37c6dfffa113cbd3ffcdb9406b788eb697104b509cce4cb39e5b80e2c9" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChineseHK-NotoSerifCJKhk-Regular.otf", + "fileName": "./Serif/OTF/TraditionalChineseHK/NotoSerifCJKhk-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4792d2fb0ea20a0f388fc69f81f3c9b4a0b52976" + }, + { + "algorithm": "SHA256", + "checksumValue": "e687d5674d83acf62d1264da5d002c5401363418abb98dca0836d38d88953708" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChineseHK-NotoSerifCJKhk-Bold.otf", + "fileName": "./Serif/OTF/TraditionalChineseHK/NotoSerifCJKhk-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "3943c53d2b808b42dca20dcf452a5d0a95e93111" + }, + { + "algorithm": "SHA256", + "checksumValue": "9abf6df4991de1375b2e3f4d67140b47ee318d9c94ca799302bce637ea8d4c0a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChineseHK-NotoSerifCJKhk-SemiBold.otf", + "fileName": "./Serif/OTF/TraditionalChineseHK/NotoSerifCJKhk-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "56548df990542023144b08f0eba13ebcede516a7" + }, + { + "algorithm": "SHA256", + "checksumValue": "9566418d39c5f922b6847f3f67454f8c48a8c5631512261e3eaa904575460640" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChineseHK-NotoSerifCJKhk-ExtraLight.otf", + "fileName": "./Serif/OTF/TraditionalChineseHK/NotoSerifCJKhk-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "bd3b9d25114253a4acb20f90f3b0e6084479fbb3" + }, + { + "algorithm": "SHA256", + "checksumValue": "87a9d570241c3990f161c424b8c603f2ab0e599f76a16e6f0caf79e2b1ab5934" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChineseHK-NotoSerifCJKhk-Black.otf", + "fileName": "./Serif/OTF/TraditionalChineseHK/NotoSerifCJKhk-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ce80aba4366784e72f92ba1387f1c9d7aa4ab982" + }, + { + "algorithm": "SHA256", + "checksumValue": "9f706546bb33289684bbd12684c46aee5797e2eabaa8c67d27d28640242adb26" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChineseHK-NotoSerifCJKhk-Light.otf", + "fileName": "./Serif/OTF/TraditionalChineseHK/NotoSerifCJKhk-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a83e74fe63a32d077cd92e5a147105cad6f044f8" + }, + { + "algorithm": "SHA256", + "checksumValue": "69a571360b78990c2cf0bcf34f791ff25acd10cfa7c55e036af423440045328b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChineseHK-NotoSerifCJKhk-Medium.otf", + "fileName": "./Serif/OTF/TraditionalChineseHK/NotoSerifCJKhk-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "de52c717c5bc415212e6f02c871621e0d754b600" + }, + { + "algorithm": "SHA256", + "checksumValue": "c46de9e2007ce7210854c088188245ac3ae17e77418ebc5f921e73fc646826fe" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-SimplifiedChinese-NotoSerifCJKsc-ExtraLight.otf", + "fileName": "./Serif/OTF/SimplifiedChinese/NotoSerifCJKsc-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0306ec08fdce1f2ab5e3bda49063e538526cb76e" + }, + { + "algorithm": "SHA256", + "checksumValue": "12270613d011f70c0e1875affc845ba272e0ce1d78ca9a4398dc34cc67984b62" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-SimplifiedChinese-NotoSerifCJKsc-Medium.otf", + "fileName": "./Serif/OTF/SimplifiedChinese/NotoSerifCJKsc-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "3a8daccfc5b12952ce019d394e4451b0147ec41a" + }, + { + "algorithm": "SHA256", + "checksumValue": "19322be2ecf5dd2abd546db7a86cc83c286026cbd28593583bfcfd721e48c9fe" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-SimplifiedChinese-NotoSerifCJKsc-Bold.otf", + "fileName": "./Serif/OTF/SimplifiedChinese/NotoSerifCJKsc-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0757ef0d6fba7c519837fb8765756b87b02442e9" + }, + { + "algorithm": "SHA256", + "checksumValue": "8af07d4b6c2e82bcc72a30e066eaf295f11b9424f4aad2eaa9fe0e9c3b38fc73" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-SimplifiedChinese-NotoSerifCJKsc-Light.otf", + "fileName": "./Serif/OTF/SimplifiedChinese/NotoSerifCJKsc-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "64b44531edc809d98e5e3795d57951c79c38b1a0" + }, + { + "algorithm": "SHA256", + "checksumValue": "7da07efb309a89b156090848aab55d9dc57f15b08387b51184b08b89501a382c" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-SimplifiedChinese-NotoSerifCJKsc-Regular.otf", + "fileName": "./Serif/OTF/SimplifiedChinese/NotoSerifCJKsc-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4d03592b89f848fc23f9fcf17469e0b5cee57675" + }, + { + "algorithm": "SHA256", + "checksumValue": "2a2eae2628df83556c54018c41e20fa532c1b862c5256ae8b3f23feb918d12ca" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-SimplifiedChinese-NotoSerifCJKsc-Black.otf", + "fileName": "./Serif/OTF/SimplifiedChinese/NotoSerifCJKsc-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "01971f30749561a657d4df8d8445e1092dd5a2c7" + }, + { + "algorithm": "SHA256", + "checksumValue": "2c2af226af6170ac28730be03b16ee7ffa6144fe54471d9ebe8a03de97b58160" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-SimplifiedChinese-NotoSerifCJKsc-SemiBold.otf", + "fileName": "./Serif/OTF/SimplifiedChinese/NotoSerifCJKsc-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ad0f7cb04f5571914342a937d5e27d34022821ae" + }, + { + "algorithm": "SHA256", + "checksumValue": "d627b53dbcde61e07de1498d2623a8b287f78585ffbc90cc0618d0caaa2ed6b0" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Japanese-NotoSerifCJKjp-Light.otf", + "fileName": "./Serif/OTF/Japanese/NotoSerifCJKjp-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7fb1cf4854a1ae41d5d568999e590f82547f049a" + }, + { + "algorithm": "SHA256", + "checksumValue": "a282724dfa90f37ba6f7b2c88d2c946294c3a1578385942c0dcd27f1d2cc8260" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Japanese-NotoSerifCJKjp-Medium.otf", + "fileName": "./Serif/OTF/Japanese/NotoSerifCJKjp-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8272bcdf2e99baf3f664d4abe7976ab9bf06db5c" + }, + { + "algorithm": "SHA256", + "checksumValue": "362c6a30210c0607288b4bca98e20b8f01998e2779585899737503bcad779478" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Japanese-NotoSerifCJKjp-SemiBold.otf", + "fileName": "./Serif/OTF/Japanese/NotoSerifCJKjp-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a3bbcce6dde92440d3c9b89bdc89f3b05458a110" + }, + { + "algorithm": "SHA256", + "checksumValue": "14618550f2b4c1696b82c1a7bb7735102195bdbe00bad0b0f0aa8e6c8d8e020c" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Japanese-NotoSerifCJKjp-Bold.otf", + "fileName": "./Serif/OTF/Japanese/NotoSerifCJKjp-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ae29f146497638a910483c4207f6c2edff664d61" + }, + { + "algorithm": "SHA256", + "checksumValue": "861a2b2c0e24b23745c262be8c3fdef63f12628f0492fb120ee51aa55c503af8" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Japanese-NotoSerifCJKjp-ExtraLight.otf", + "fileName": "./Serif/OTF/Japanese/NotoSerifCJKjp-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9c23714e59a80f4e89436f8a87e20c4b3faebe2a" + }, + { + "algorithm": "SHA256", + "checksumValue": "0d04c8b4903f830dac91f67fb34ed6cdb34bfde8ebd3b238375f977190757446" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Japanese-NotoSerifCJKjp-Regular.otf", + "fileName": "./Serif/OTF/Japanese/NotoSerifCJKjp-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c7d7fabc77c847783e38434952d63de8886542ce" + }, + { + "algorithm": "SHA256", + "checksumValue": "d9854c7a8ef170b5a7932558856fd64eb8de0b007cd823fed6f9f514ad2803d3" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-Japanese-NotoSerifCJKjp-Black.otf", + "fileName": "./Serif/OTF/Japanese/NotoSerifCJKjp-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "df8ea8bc52c4d46d4d6194e68e8acf0fdd578954" + }, + { + "algorithm": "SHA256", + "checksumValue": "7a8c8b6dd729eddc63b021284d1eb4ada9974c84609c5eb4b23f9591795e8e76" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChinese-NotoSerifCJKtc-Light.otf", + "fileName": "./Serif/OTF/TraditionalChinese/NotoSerifCJKtc-Light.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "1ea6c225cb0b88a1fd438d193b32d2444b6cbf35" + }, + { + "algorithm": "SHA256", + "checksumValue": "5700be7fbdcd7da2e7e242fc6d29db2ff009e5fb89ea508896fc34a05e1e7baa" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChinese-NotoSerifCJKtc-ExtraLight.otf", + "fileName": "./Serif/OTF/TraditionalChinese/NotoSerifCJKtc-ExtraLight.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b9ff706008210fdd3029dc3ac8bd5be0cbb7e823" + }, + { + "algorithm": "SHA256", + "checksumValue": "42c933e8de6ec460cff7ac3452ae0849672eb7631a789431eb02ac057fe46d3b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChinese-NotoSerifCJKtc-Bold.otf", + "fileName": "./Serif/OTF/TraditionalChinese/NotoSerifCJKtc-Bold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "fa843b3e6b1919882215f0ead9b930d328e1350f" + }, + { + "algorithm": "SHA256", + "checksumValue": "a4441a76dbf56719600c5dcbd5b5e5a068a20944cc41c959487a657133576ee6" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChinese-NotoSerifCJKtc-Regular.otf", + "fileName": "./Serif/OTF/TraditionalChinese/NotoSerifCJKtc-Regular.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b227623d7da5da7b2a89feb3a129d92d3edb9c69" + }, + { + "algorithm": "SHA256", + "checksumValue": "234301038e76e7c35c43113785024700c4e4fe7bdce1d1fbbc42fca7e6683798" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChinese-NotoSerifCJKtc-Medium.otf", + "fileName": "./Serif/OTF/TraditionalChinese/NotoSerifCJKtc-Medium.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8e11902ee0607237aeaba2d2a7c6e3c02b49812b" + }, + { + "algorithm": "SHA256", + "checksumValue": "da0a79ee44322329dd9ff87d2cc878dc897c5180195e3f9b6cd4c8569781e887" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChinese-NotoSerifCJKtc-Black.otf", + "fileName": "./Serif/OTF/TraditionalChinese/NotoSerifCJKtc-Black.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "dbb8d280b9c9555ac11583e8ed8d0c40ec0a40e9" + }, + { + "algorithm": "SHA256", + "checksumValue": "3ad2c936d8757c8c4d661394592a40d29bd66351d0e6971310f19b159d380db7" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Serif-OTF-TraditionalChinese-NotoSerifCJKtc-SemiBold.otf", + "fileName": "./Serif/OTF/TraditionalChinese/NotoSerifCJKtc-SemiBold.otf", + "copyrightText": "\u00a9 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9a1077d2b1fc98ae522bbe10698f342398f34c63" + }, + { + "algorithm": "SHA256", + "checksumValue": "422e868b6a983caa3a661f6580295fbaf00f26694087e86810fa58577e9be27a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana & ideographs); Frank Grie\u00dfhammer (Latin, Greek & Cyrillic); Wenlong ZHANG \u5f20\u6587\u9f99 (bopomofo); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soohyun PARK \ubc15\uc218\ud604, Yejin WE \uc704\uc608\uc9c4 & Donghoon HAN \ud55c\ub3d9\ud6c8 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTC-NotoSansMonoCJK-VF.otf.ttc", + "fileName": "./Sans/Variable/OTC/NotoSansMonoCJK-VF.otf.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "289cbfdf777ad0dbd83a95c65bc30e1cc4d2935b" + }, + { + "algorithm": "SHA256", + "checksumValue": "3a73c225abcfd5742ab84e613b427fb5b40c9e59b70fe3d1683f9b1da96568a0" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTC-NotoSansMonoCJK-VF.ttf.ttc", + "fileName": "./Sans/Variable/OTC/NotoSansMonoCJK-VF.ttf.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b757cd5e4b8ec2b0f31d328258b7183c7d6e9565" + }, + { + "algorithm": "SHA256", + "checksumValue": "b861b923e105a437f30ce12573350e899ee75766c4a6e9eef6d46788fb839e76" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTC-NotoSansCJK-VF.otf.ttc", + "fileName": "./Sans/Variable/OTC/NotoSansCJK-VF.otf.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "89a120f20275c1f3fc69f4b8ed0cf9d22e46fb89" + }, + { + "algorithm": "SHA256", + "checksumValue": "d3d8256cdec8dbcb3552284bc6b20c734dd60c2ee9df83b5758e34807c4bac32" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTC-NotoSansCJK-VF.ttf.ttc", + "fileName": "./Sans/Variable/OTC/NotoSansCJK-VF.ttf.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9fe2ae36e9e7a80a4871b0a67b77138ab53be939" + }, + { + "algorithm": "SHA256", + "checksumValue": "2abbfc7ff74a086cf2c1f5be6130528791cfd2c8b83466db5a1463aa63252ca7" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-NotoSansCJKtc-VF.ttf", + "fileName": "./Sans/Variable/TTF/NotoSansCJKtc-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f2680eac46252f3db497e2588b9fdbb3494f761a" + }, + { + "algorithm": "SHA256", + "checksumValue": "6b40dd16cf1b73b5a7a0ed2472d641b60e3e85e87211abd20009f67d841425da" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-NotoSansCJKhk-VF.ttf", + "fileName": "./Sans/Variable/TTF/NotoSansCJKhk-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "85d1d6f9fda849aca4832e60a6358bcf16ba3d58" + }, + { + "algorithm": "SHA256", + "checksumValue": "c485d72ca089ce65a83c483c1ddbf1791828b4c8e3c45ea5eae8063fe2164495" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-NotoSansCJKsc-VF.ttf", + "fileName": "./Sans/Variable/TTF/NotoSansCJKsc-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "63866557df3f310e29c1a53e5e15bd9bd7bc9628" + }, + { + "algorithm": "SHA256", + "checksumValue": "990c807e79c25662a5a9ecf7f971baeb2bf2eab9a559e5ecf15cdfdb8561d21f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-NotoSansCJKkr-VF.ttf", + "fileName": "./Sans/Variable/TTF/NotoSansCJKkr-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9e0a8361842a691314c8e6f1f6c3f9750544a242" + }, + { + "algorithm": "SHA256", + "checksumValue": "7715af52f5fe77153ce5678546258993982d2da61abea8d25fb89eb5aaec5ca6" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-NotoSansCJKjp-VF.ttf", + "fileName": "./Sans/Variable/TTF/NotoSansCJKjp-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "653726bacc242fa682f77534be0c8e29aaec8951" + }, + { + "algorithm": "SHA256", + "checksumValue": "240c9b83bf7b386edbae39995ae7e068ed4583f484d92e4a74c34158b5f27b1a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Subset-NotoSansTC-VF.ttf", + "fileName": "./Sans/Variable/TTF/Subset/NotoSansTC-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c7d6ec6001cf67690724edface2966af436e14b1" + }, + { + "algorithm": "SHA256", + "checksumValue": "ac091cc8cd19e848202afc8fe6d3809b4526c8fdbdb4be82da20c4f785949591" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Subset-NotoSansHK-VF.ttf", + "fileName": "./Sans/Variable/TTF/Subset/NotoSansHK-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "1493dd7766223f55e76218b67f89dade549851ff" + }, + { + "algorithm": "SHA256", + "checksumValue": "70172afd2cf0e045182787219b949e7798253982a36e364114757c09efd55477" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Subset-NotoSansSC-VF.ttf", + "fileName": "./Sans/Variable/TTF/Subset/NotoSansSC-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "37b2d35c754f15922b79bcf32339b5662d60b91e" + }, + { + "algorithm": "SHA256", + "checksumValue": "d68bafcb48a2707749396aa12bbbd833cb70401f3a9a689fd2902c7e0d295964" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Subset-NotoSansJP-VF.ttf", + "fileName": "./Sans/Variable/TTF/Subset/NotoSansJP-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "2a31df9759efb5ff495007fc1b1037b352f90d1e" + }, + { + "algorithm": "SHA256", + "checksumValue": "f4b373b226668ee33a6e54b02823dcd2d1209f17159f777421ae8c2275160369" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Subset-NotoSansKR-VF.ttf", + "fileName": "./Sans/Variable/TTF/Subset/NotoSansKR-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8af11e5f7d53912d08e2b0949766d989fde6c699" + }, + { + "algorithm": "SHA256", + "checksumValue": "9e1d729e7e2b36f9ef439da102f8c134c10aabe46f1c843bf0aca5c043b86f76" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Mono-NotoSansMonoCJKhk-VF.ttf", + "fileName": "./Sans/Variable/TTF/Mono/NotoSansMonoCJKhk-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "5d8444ed133c0738be1c4cb6fe7050e7dc3fd7e0" + }, + { + "algorithm": "SHA256", + "checksumValue": "9ec93533c4cfae64321dd65108fa9ffed333b13c3c5edc8101d2379df42cb57a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Mono-NotoSansMonoCJKtc-VF.ttf", + "fileName": "./Sans/Variable/TTF/Mono/NotoSansMonoCJKtc-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "204e5fc75a1987e7108f01232a3acb4acf0fe028" + }, + { + "algorithm": "SHA256", + "checksumValue": "b62603558130331c5077dcf03a30dcee11eecf62582f2773da510528a66348f0" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Mono-NotoSansMonoCJKsc-VF.ttf", + "fileName": "./Sans/Variable/TTF/Mono/NotoSansMonoCJKsc-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b549f31a9bad253f106fa23b46222173cf464dff" + }, + { + "algorithm": "SHA256", + "checksumValue": "9fe57a71eb48e50cccb77903123d08857edefcf289c7b309462c4c3d82208126" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Mono-NotoSansMonoCJKjp-VF.ttf", + "fileName": "./Sans/Variable/TTF/Mono/NotoSansMonoCJKjp-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "75874279bfad26a041a5cb1148673ce0a87ef35f" + }, + { + "algorithm": "SHA256", + "checksumValue": "9a91b2f42ad958fd4295586809f85366f0afa020b85ac70b39916c25bc5cda15" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-TTF-Mono-NotoSansMonoCJKkr-VF.ttf", + "fileName": "./Sans/Variable/TTF/Mono/NotoSansMonoCJKkr-VF.ttf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f93830b1fbf5bc812640ac67a624c2a9fa1bc76d" + }, + { + "algorithm": "SHA256", + "checksumValue": "0a2036b0470ad56d35776419e28361e81ce2766370b897e338678d2ce14be738" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-NotoSansCJKhk-VF.otf", + "fileName": "./Sans/Variable/OTF/NotoSansCJKhk-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9d237816cde1897d7869296508ecd20587e0aeb1" + }, + { + "algorithm": "SHA256", + "checksumValue": "f2368580c747e2d14732b52df01ad87518610ce3377ce5ab8c914e74ba8c8a10" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-NotoSansCJKtc-VF.otf", + "fileName": "./Sans/Variable/OTF/NotoSansCJKtc-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ddb8ebf36d4892ecd57ab24b04ecde25f146e396" + }, + { + "algorithm": "SHA256", + "checksumValue": "fb6fd590a4bcfe1b5d71b8bb0054719256b815e8fc700dd70fd171a3660a9e6b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-NotoSansCJKjp-VF.otf", + "fileName": "./Sans/Variable/OTF/NotoSansCJKjp-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4b827a8246326ee6cac10c0814af5cc3ba4addbe" + }, + { + "algorithm": "SHA256", + "checksumValue": "ab2728702f90d2ae900309f299dc3c2b075010888a1a8a67fbd5b4c6aff713a0" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-NotoSansCJKkr-VF.otf", + "fileName": "./Sans/Variable/OTF/NotoSansCJKkr-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "5c711055fab47567846737f2f2017915f1d3e590" + }, + { + "algorithm": "SHA256", + "checksumValue": "828d8415c3e601d1b7b94c2a86f8609ce4f78abebb92773724f3f004269059e8" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-NotoSansCJKsc-VF.otf", + "fileName": "./Sans/Variable/OTF/NotoSansCJKsc-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "3a4921f3eea58181223094c18edca1e1d52d78a2" + }, + { + "algorithm": "SHA256", + "checksumValue": "2745e9681cb9d8a5c8901b62c9e1bd98c9c774365fc3b84dd467621013b51cd3" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Subset-NotoSansHK-VF.otf", + "fileName": "./Sans/Variable/OTF/Subset/NotoSansHK-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "bf72eceda43a5dfe143140b452753fc05e067971" + }, + { + "algorithm": "SHA256", + "checksumValue": "3432530bc55e0943f878a3b18bb062e7954654c04e9d66c2ae80b6eb62d176c6" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Subset-NotoSansTC-VF.otf", + "fileName": "./Sans/Variable/OTF/Subset/NotoSansTC-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f717ae2892c43aba5099536f6daf11bac21ed00a" + }, + { + "algorithm": "SHA256", + "checksumValue": "a080726eee9d78ec74fd95184a79c58c3085f10713e26876aab0130f543e9120" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Subset-NotoSansKR-VF.otf", + "fileName": "./Sans/Variable/OTF/Subset/NotoSansKR-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ca311f87c1c79d84a9e13ffe3efdacb6310e80a9" + }, + { + "algorithm": "SHA256", + "checksumValue": "e647f53b18a4823647a51bcbdac866617701a4dd8ce495bac2db5ecea88d8f21" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Subset-NotoSansJP-VF.otf", + "fileName": "./Sans/Variable/OTF/Subset/NotoSansJP-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "21b734c8f87d5dbe6aa9800294d9414a5de66a50" + }, + { + "algorithm": "SHA256", + "checksumValue": "85e5ef353081175fb9f764f037c550dd4b5ad913cb030c0de98a5d4d4018014b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Subset-NotoSansSC-VF.otf", + "fileName": "./Sans/Variable/OTF/Subset/NotoSansSC-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0bcf85a497b7c4d34ee2f5ca70fa97e94fba4bb1" + }, + { + "algorithm": "SHA256", + "checksumValue": "d13ed01ec8aa45d6178999b648e96fb92150683e9f8e2a581f2acf208dcbe44b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Mono-NotoSansMonoCJKtc-VF.otf", + "fileName": "./Sans/Variable/OTF/Mono/NotoSansMonoCJKtc-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a019aa5bf2a9f85c047a3f0c2b3b5a5e787596e3" + }, + { + "algorithm": "SHA256", + "checksumValue": "74ce929d6bec3bc5d69319c757502ee0940f7914ff09696f287a3fd45c126100" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Mono-NotoSansMonoCJKhk-VF.otf", + "fileName": "./Sans/Variable/OTF/Mono/NotoSansMonoCJKhk-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "231f3647959c518dc30a808c3b7145327b0c23cd" + }, + { + "algorithm": "SHA256", + "checksumValue": "386251bee65e5580de7f92959e6e1eceb9a4f0f226994f3af208b6179396fca7" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Mono-NotoSansMonoCJKkr-VF.otf", + "fileName": "./Sans/Variable/OTF/Mono/NotoSansMonoCJKkr-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "2bb0477ff3ade3213d05775b7db45cd04ddf183d" + }, + { + "algorithm": "SHA256", + "checksumValue": "f8f3222cb6fb68637c82b1b1fa764755d3d153f5e5f3977f377550e89ca0775c" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Mono-NotoSansMonoCJKjp-VF.otf", + "fileName": "./Sans/Variable/OTF/Mono/NotoSansMonoCJKjp-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "06eee39d5fbaacdc52b5271607c0427f0c90ae26" + }, + { + "algorithm": "SHA256", + "checksumValue": "2a902655742b40d05a0192a97ee3fa347a4ca9b91d283b34e768c1362293d698" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Variable-OTF-Mono-NotoSansMonoCJKsc-VF.otf", + "fileName": "./Sans/Variable/OTF/Mono/NotoSansMonoCJKsc-VF.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "3b3352cefb8e4ae66494603288be3bd25f2a12d5" + }, + { + "algorithm": "SHA256", + "checksumValue": "abb74b8cddf47c8267fd4948eb2b9f275218206f6cea8490d9305bb1b085bc7f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-SC-NotoSansSC-Regular.otf", + "fileName": "./Sans/SubsetOTF/SC/NotoSansSC-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "566c21b27cf4dcd30cf939535fd8776ccd1f0dbb" + }, + { + "algorithm": "SHA256", + "checksumValue": "faa6c9df652116dde789d351359f3d7e5d2285a2b2a1f04a2d7244df706d5ea9" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-SC-NotoSansSC-Thin.otf", + "fileName": "./Sans/SubsetOTF/SC/NotoSansSC-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "04d37b8b541b388a1652996eaf0a8b22de77e19b" + }, + { + "algorithm": "SHA256", + "checksumValue": "1e665b570a16ff4076d1a11cdb358bae3984a9c74b0f404b22634142618cb96b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-SC-NotoSansSC-Light.otf", + "fileName": "./Sans/SubsetOTF/SC/NotoSansSC-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f8ab4defad87cdc6c0ecfe01c8e24af01da8261e" + }, + { + "algorithm": "SHA256", + "checksumValue": "35cca31cea56b2720c096efaea2cfdffdf1b523bf5de0a80552d16edccfa9c70" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-SC-NotoSansSC-Medium.otf", + "fileName": "./Sans/SubsetOTF/SC/NotoSansSC-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "31ab685a336804d85dc242a9601c0f6a4245cca8" + }, + { + "algorithm": "SHA256", + "checksumValue": "7633f5a016d4dd95e685a69633d818aabc4644c4b08e26bd35b1b30c45ed5dda" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-SC-NotoSansSC-Bold.otf", + "fileName": "./Sans/SubsetOTF/SC/NotoSansSC-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a6eba4ea4c22140ff5259e7e7a0ee25334621b20" + }, + { + "algorithm": "SHA256", + "checksumValue": "c6cb5a93abaa9edc8ee7463b7ebb7f42d618d40e6ed2f7a5371c97b0b64767c0" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-SC-NotoSansSC-Black.otf", + "fileName": "./Sans/SubsetOTF/SC/NotoSansSC-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "1c0d0e316af73fc4a89ba827d1dcc876091b9f24" + }, + { + "algorithm": "SHA256", + "checksumValue": "ccb496022356b7dd14d117538a472ae40feff8f6e8f3fe8bffc5616785d2f3f9" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-SC-NotoSansSC-DemiLight.otf", + "fileName": "./Sans/SubsetOTF/SC/NotoSansSC-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4d9d062a255fb2c25f5dfcda2d0c342f781eca87" + }, + { + "algorithm": "SHA256", + "checksumValue": "63a895a808a155fe69d67f742e60ee708fe0eaaef0650904bb4eead3941e98dc" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-HK-NotoSansHK-Bold.otf", + "fileName": "./Sans/SubsetOTF/HK/NotoSansHK-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b1e8e1c8cee07ff0e150b6b688d932f550102faa" + }, + { + "algorithm": "SHA256", + "checksumValue": "4bce16fbed09278cbdfb4d57749500038cdda70737925a846e3f6c59327ab46e" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-HK-NotoSansHK-Thin.otf", + "fileName": "./Sans/SubsetOTF/HK/NotoSansHK-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "5d3725a94f3688610f5552949a5780cc979c92de" + }, + { + "algorithm": "SHA256", + "checksumValue": "988d8c5e4ceaf3f7a9237790371e1961ae0d58cee4cd129df28abd06d7553393" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-HK-NotoSansHK-Black.otf", + "fileName": "./Sans/SubsetOTF/HK/NotoSansHK-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7a59835b211dcd2617c57eb8fa0be57c5d4fa32e" + }, + { + "algorithm": "SHA256", + "checksumValue": "aa7e48349d2c606f0194fd73c3e5fad03d88d851b8a440bd189377dbeaf44f89" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-HK-NotoSansHK-Regular.otf", + "fileName": "./Sans/SubsetOTF/HK/NotoSansHK-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "19a5410bdee672b51d1bb6fdec898d30a1758fb0" + }, + { + "algorithm": "SHA256", + "checksumValue": "8a43afea92bb58dfd9027bd7ac6f5b0b2662e2ffb3e7c1edc02c62b2b21924f1" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-HK-NotoSansHK-Light.otf", + "fileName": "./Sans/SubsetOTF/HK/NotoSansHK-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "904a40558966afe59acc14ad75c0b3a16d607a52" + }, + { + "algorithm": "SHA256", + "checksumValue": "8f562edadb7c48af480c02b7446809e7a660a3990eae49f0e49f45c80a4e6155" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-HK-NotoSansHK-DemiLight.otf", + "fileName": "./Sans/SubsetOTF/HK/NotoSansHK-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "540705e4dc6f1e9b5a40d41c0d05ceb2f5be4b9f" + }, + { + "algorithm": "SHA256", + "checksumValue": "a46ce9609d049d66223ee8bedab882373a59ac641cd77dd9ef932c66869489a3" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-HK-NotoSansHK-Medium.otf", + "fileName": "./Sans/SubsetOTF/HK/NotoSansHK-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9105db3351b3f1bcc0c26a6f09c82a749ea84e14" + }, + { + "algorithm": "SHA256", + "checksumValue": "485a85d885f871887ac27b7240ab93fbec64c8cd1806f619d61c9e8d02734276" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-TC-NotoSansTC-Regular.otf", + "fileName": "./Sans/SubsetOTF/TC/NotoSansTC-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "71a425aba09409659877d07deef589e6b439ed7b" + }, + { + "algorithm": "SHA256", + "checksumValue": "5bab0cb3c1cf89dde07c4a95a4054b195afbcfe784d69d75c340780712237537" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-TC-NotoSansTC-Bold.otf", + "fileName": "./Sans/SubsetOTF/TC/NotoSansTC-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "dd0dcba8daf6e9f2ece4f7d7dd03a8a4db2b877a" + }, + { + "algorithm": "SHA256", + "checksumValue": "55420b259eb119bf5f2a0aadba10cf9d736c12d64ab93e78546d69ef5f43558b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-TC-NotoSansTC-Thin.otf", + "fileName": "./Sans/SubsetOTF/TC/NotoSansTC-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "35a35c02ddc80cdb56938baf8c27b31daaf5d199" + }, + { + "algorithm": "SHA256", + "checksumValue": "8e6764f88c8711158422ba0c51ee7887a4de4d79f08428a00445d33558f5da5b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-TC-NotoSansTC-Light.otf", + "fileName": "./Sans/SubsetOTF/TC/NotoSansTC-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b24dd9f4efb51be9b0df63372231a7e24cac778b" + }, + { + "algorithm": "SHA256", + "checksumValue": "961c9a8945fc18b924795f42d17a24d50abcaad8f8724aafdc94cf255b001ed1" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-TC-NotoSansTC-Medium.otf", + "fileName": "./Sans/SubsetOTF/TC/NotoSansTC-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "6438efdd8a9dde7195618f8ab797aeee78060322" + }, + { + "algorithm": "SHA256", + "checksumValue": "bf206dca0975779bac71cb49a037a364156ca98a0c431b1b7d6b29fb8952ac7e" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-TC-NotoSansTC-DemiLight.otf", + "fileName": "./Sans/SubsetOTF/TC/NotoSansTC-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "05cc262dbdddfc426273506cafedb9739c4b3818" + }, + { + "algorithm": "SHA256", + "checksumValue": "aad8876d62a620efae048d767d0ddb1d050d7212b1b4b6ace70e3030fb1fcffe" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-TC-NotoSansTC-Black.otf", + "fileName": "./Sans/SubsetOTF/TC/NotoSansTC-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "ab8c90c3e3c7cd1ddde3a9919de94cae56f9c089" + }, + { + "algorithm": "SHA256", + "checksumValue": "3280b221ab7b011c6ae48d38388a0e8c72ddf479992bce62ff589ae932819ce4" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-KR-NotoSansKR-Light.otf", + "fileName": "./Sans/SubsetOTF/KR/NotoSansKR-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "69309c3f2bb4325db0bb9d29b652a3eaee8b8079" + }, + { + "algorithm": "SHA256", + "checksumValue": "5971aca275255797a75c7fc43d5058487668069da93c45ad4a24be5aa1e67c85" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-KR-NotoSansKR-DemiLight.otf", + "fileName": "./Sans/SubsetOTF/KR/NotoSansKR-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "18044995f14a8c11180c5897c430b51c127ad4b3" + }, + { + "algorithm": "SHA256", + "checksumValue": "8da8c5b84dfa0e843027fddf95748c6fdce15ae7c958279a047f041861bdd415" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-KR-NotoSansKR-Bold.otf", + "fileName": "./Sans/SubsetOTF/KR/NotoSansKR-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "02792cb8cc7da1552ae4409645a4540b4e1c6094" + }, + { + "algorithm": "SHA256", + "checksumValue": "5a6ceb287ed2fc6cfc6213144ebea68cbd94b20fc9eb873d8486493bf02d9bda" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-KR-NotoSansKR-Thin.otf", + "fileName": "./Sans/SubsetOTF/KR/NotoSansKR-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "1e377912308d1590fd9c63bc3a0730ac78375d36" + }, + { + "algorithm": "SHA256", + "checksumValue": "820514af3397871f21709b540814c5c26276469a8b4d0f78cad1b69458c5f1cd" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-KR-NotoSansKR-Black.otf", + "fileName": "./Sans/SubsetOTF/KR/NotoSansKR-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "981a61a75cd99eeb2b18e2c669fde54284a02e6a" + }, + { + "algorithm": "SHA256", + "checksumValue": "a9977a588488d2a7f544bb2b589b01bed071dca64a4655d438696301b527884b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-KR-NotoSansKR-Medium.otf", + "fileName": "./Sans/SubsetOTF/KR/NotoSansKR-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "221ee381278c6cc846cd14ca2aa1822847257ccc" + }, + { + "algorithm": "SHA256", + "checksumValue": "b46988ef13e8bac08f3933af686eaf770972994f9b6d335be0184d60169b5431" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-KR-NotoSansKR-Regular.otf", + "fileName": "./Sans/SubsetOTF/KR/NotoSansKR-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d5c1165d57c419e4e264a8c25211c7ed92d611ca" + }, + { + "algorithm": "SHA256", + "checksumValue": "69975a0ac8472717870aefeab0a4d52739308d90856b9955313b2ad5e0148d68" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-JP-NotoSansJP-Regular.otf", + "fileName": "./Sans/SubsetOTF/JP/NotoSansJP-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "2a167a116b54ecd4f939e47d0ad78cb3402d938c" + }, + { + "algorithm": "SHA256", + "checksumValue": "dff723ba59d57d136764a04b9b2d03205544f7cd785a711442d6d2d085ac5073" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-JP-NotoSansJP-Medium.otf", + "fileName": "./Sans/SubsetOTF/JP/NotoSansJP-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4395b5f25e619d58fad317dc64bf4d007e09b6c6" + }, + { + "algorithm": "SHA256", + "checksumValue": "f396a3b57256e4515be9cb41f7aac54766d654890082a9f1b5c2451b5c093d8a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-JP-NotoSansJP-Light.otf", + "fileName": "./Sans/SubsetOTF/JP/NotoSansJP-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a392be998cf6438bda42c231a5cd19fae18cc184" + }, + { + "algorithm": "SHA256", + "checksumValue": "e358dcfa7970805300a953bb71209c3efcbcc17a00a5e4101f8cf94a3870ad93" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-JP-NotoSansJP-Thin.otf", + "fileName": "./Sans/SubsetOTF/JP/NotoSansJP-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c8690bbd05a8a8f7dba2661f1fbb605e704a05a1" + }, + { + "algorithm": "SHA256", + "checksumValue": "1d8462eb0050bf6f8ee8dc0a34f11185839e155b0fce8ec2f14427b28d4d134f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-JP-NotoSansJP-Bold.otf", + "fileName": "./Sans/SubsetOTF/JP/NotoSansJP-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a7a997c4c894d2cc691332e7232d909d4f08a552" + }, + { + "algorithm": "SHA256", + "checksumValue": "1b0edfb500b73a4fa8a4fcaae1bbbd403994e08e73e3e0da37e70d3853f42c5f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-JP-NotoSansJP-DemiLight.otf", + "fileName": "./Sans/SubsetOTF/JP/NotoSansJP-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "58ffd596a386fd8fbf82676e42ff248634157d1a" + }, + { + "algorithm": "SHA256", + "checksumValue": "58eb539d3c66b03118ca836f312668c7c14e8bbae1a14ef5a800611f66c2f9c2" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-SubsetOTF-JP-NotoSansJP-Black.otf", + "fileName": "./Sans/SubsetOTF/JP/NotoSansJP-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "67797e00ff47535ad46d3635b28b5290066731ba" + }, + { + "algorithm": "SHA256", + "checksumValue": "3aa30b0956510f4205f759ab3079a5b658310ebcda2577f290466ea51c948819" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTC-NotoSansCJK-Black.ttc", + "fileName": "./Sans/OTC/NotoSansCJK-Black.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "aae77a58b5d711e051a73facd39a41775f41ef40" + }, + { + "algorithm": "SHA256", + "checksumValue": "3cffb10242b4b7e6edd439ebf3bd7e392345525e093ea08149e0a0158a1b5151" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTC-NotoSansCJK-Regular.ttc", + "fileName": "./Sans/OTC/NotoSansCJK-Regular.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "41cee0565517a6a1c7457c687273cf9c00159379" + }, + { + "algorithm": "SHA256", + "checksumValue": "b76b0433203017ca80401b2ee0dd69350349871c4b19d504c34dbdd80541690a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTC-NotoSansCJK-Bold.ttc", + "fileName": "./Sans/OTC/NotoSansCJK-Bold.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "43f0027121b407326b3f06d0466df83887879e1b" + }, + { + "algorithm": "SHA256", + "checksumValue": "faa5f3656a78b2e2d450d27fe8382c778bc2b6bb5ea29c986664a6a435056ceb" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTC-NotoSansCJK-DemiLight.ttc", + "fileName": "./Sans/OTC/NotoSansCJK-DemiLight.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "1668af9e353ce1d8ceb6378868b5edbdedac8210" + }, + { + "algorithm": "SHA256", + "checksumValue": "73c01c7f28072016d44ca57893a7c3b2c4ca31d9662032c5b315164625f0dfe4" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTC-NotoSansCJK-Light.ttc", + "fileName": "./Sans/OTC/NotoSansCJK-Light.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "e898de0a95d10a8f2aae8a4097e6d929d9473629" + }, + { + "algorithm": "SHA256", + "checksumValue": "872def437cf8b9c41bf1736da891e34a8c25b764c0c4a51418d3745570660f42" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTC-NotoSansCJK-Medium.ttc", + "fileName": "./Sans/OTC/NotoSansCJK-Medium.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "32d8a300209c1f8c2ac5bca1078aae26870861b7" + }, + { + "algorithm": "SHA256", + "checksumValue": "197d5e1e019faca33a4d55931c7d68b8056f3b97cb862049f5cb8de9efdfb8ce" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTC-NotoSansCJK-Thin.ttc", + "fileName": "./Sans/OTC/NotoSansCJK-Thin.ttc", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "0e96f9cffcba35fa0fc2bb12fe68d7ae3a9f45e9" + }, + { + "algorithm": "SHA256", + "checksumValue": "6efb3dfee32c261d6be3c2b1f89928afc1d18328499cddda4b1833338e7054b7" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKkr-Bold.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKkr-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c7979ee703f846af456112c82d83f438fea84274" + }, + { + "algorithm": "SHA256", + "checksumValue": "8b82692e9d54205655efd620ab6ff4ad55df94e149021d99529d95e1120621e4" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKkr-Regular.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKkr-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "bfa658bcc45592d99d12c478ceaa5c18e9ac5a9a" + }, + { + "algorithm": "SHA256", + "checksumValue": "d5afed9988a28ae96afb0f4791754d3c9f4f08d08477eb1a7d6e2d905679a472" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKtc-Bold.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKtc-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8338eefad553c72d424b16e9b0ff15ec1d17bb47" + }, + { + "algorithm": "SHA256", + "checksumValue": "5ea3414e255133ce51aae21bb1e0e428968158bddaaee2597fdfc30cc84bb39a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKhk-Regular.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKhk-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8783f9f5a8e6da240243e94413df6f774c964789" + }, + { + "algorithm": "SHA256", + "checksumValue": "f72d973a07253e24a08b4fd6923d33087ad33324868a9f9bf17e7c824306d1a1" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKhk-Bold.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKhk-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "cb39899012b7fc443914d80f2792d1b0f45454b9" + }, + { + "algorithm": "SHA256", + "checksumValue": "da24a73c59e785f0f6a726d038a30f62f0a371be0d2df048d1a32926cd072fc5" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKsc-Regular.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKsc-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "809352d72a5fba0b71a3bdf6061c7d627b8aa2ef" + }, + { + "algorithm": "SHA256", + "checksumValue": "ec04cc376b34887cedbdf84074e2e226ed2761eeabdcb9173fc1dd7bfd153ef7" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKtc-Regular.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKtc-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8c7528a72e21bc5c531660bbaaae43f47f3ab3bb" + }, + { + "algorithm": "SHA256", + "checksumValue": "82a040aed900bba51b5990bc158a86b264c8ad5071a2d8911e8696350e0794b3" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKsc-Bold.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKsc-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "72022ed248d06188ded75d70915d6c7aca8613c1" + }, + { + "algorithm": "SHA256", + "checksumValue": "a452fedfc0619e43e080b7b861ce34cbd3ec4fbcea495bf8c402a5a02a5dcbdc" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKjp-Regular.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKjp-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a3aae06f1a4b37d628949060a43f7312843f1446" + }, + { + "algorithm": "SHA256", + "checksumValue": "4d01725be822d144cf9a56ade981e6fb920cd7a610b8fc24cc601a920beea5b9" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-Mono-NotoSansMonoCJKjp-Bold.otf", + "fileName": "./Sans/Mono/NotoSansMonoCJKjp-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "918467b40d6b27b72a9599fe062669a249f2e5f1" + }, + { + "algorithm": "SHA256", + "checksumValue": "dfdffe149bc6cbf52860dabd8b8dadbca40ae87a4fbe143b55c0258db2dadfb8" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Korean-NotoSansCJKkr-DemiLight.otf", + "fileName": "./Sans/OTF/Korean/NotoSansCJKkr-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "2fec5f755d9d264b5eb14c1f88c080c70a20705a" + }, + { + "algorithm": "SHA256", + "checksumValue": "6b8aabf9086140e8846be0316e06159db400e6867f4b3042af0f82a03edeff0e" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Korean-NotoSansCJKkr-Black.otf", + "fileName": "./Sans/OTF/Korean/NotoSansCJKkr-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9566a84ed4286217191cd8064f38992f79826361" + }, + { + "algorithm": "SHA256", + "checksumValue": "dd7b46485c0796583aa1bed3576535af6047cff5b055db9e20a1de2ed027e57a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Korean-NotoSansCJKkr-Medium.otf", + "fileName": "./Sans/OTF/Korean/NotoSansCJKkr-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4938f771519af75bab5a2fbed48cde309d85f1a8" + }, + { + "algorithm": "SHA256", + "checksumValue": "15c12166634936c31307b91bd049d95b4ba30c248e8c389b5388f75ae8ba90d6" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Korean-NotoSansCJKkr-Light.otf", + "fileName": "./Sans/OTF/Korean/NotoSansCJKkr-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a054c457a571ef3cfeb09782cdec573862a78ebc" + }, + { + "algorithm": "SHA256", + "checksumValue": "2f45abf3908d88ee45d2831484c920ec4a65e214ec14a8e0341ff2213579d5fc" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Korean-NotoSansCJKkr-Thin.otf", + "fileName": "./Sans/OTF/Korean/NotoSansCJKkr-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "47251da67150bef9aaeadf89514a04eccc5cc2c8" + }, + { + "algorithm": "SHA256", + "checksumValue": "436e2833751f692e69dd09e9d878da2a2aa6b683457f0947a857c3dc334f17f1" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Korean-NotoSansCJKkr-Regular.otf", + "fileName": "./Sans/OTF/Korean/NotoSansCJKkr-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "bce3f7844e2953b0ab17cf4db869e72b2b334f0a" + }, + { + "algorithm": "SHA256", + "checksumValue": "6bcb2a0703aa137e874fc2dffa85f6c21ba9a67fa329e81b8c801663af7e992a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Korean-NotoSansCJKkr-Bold.otf", + "fileName": "./Sans/OTF/Korean/NotoSansCJKkr-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7a2a989b7e2669aa12d6d80c102d30fe272c87e8" + }, + { + "algorithm": "SHA256", + "checksumValue": "26d0c6748500a0444844280b308f5b62c7ae92ac6c6ac88148e502dd211eb52a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChineseHK-NotoSansCJKhk-Regular.otf", + "fileName": "./Sans/OTF/TraditionalChineseHK/NotoSansCJKhk-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c0090bfc2499c415c9f8dd3bcf990a17ffca87c0" + }, + { + "algorithm": "SHA256", + "checksumValue": "97c937514d645eae90415d30ba025e08a94d5bdffdc627404864f90aa0c7d83b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChineseHK-NotoSansCJKhk-Medium.otf", + "fileName": "./Sans/OTF/TraditionalChineseHK/NotoSansCJKhk-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "f9fddb167217f02eaa63b04848772786f9e200cf" + }, + { + "algorithm": "SHA256", + "checksumValue": "a89a324363b717f90de3ca3d3c7d89e3c81ce0ed74c736ab84e08872843d7672" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChineseHK-NotoSansCJKhk-Thin.otf", + "fileName": "./Sans/OTF/TraditionalChineseHK/NotoSansCJKhk-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9ef2af7bd920e16fef777de98cd7ae2c3502df74" + }, + { + "algorithm": "SHA256", + "checksumValue": "13148319e2e50bc453cf47addb493370565fd64bd926962b0ac1017b3f3cafee" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChineseHK-NotoSansCJKhk-Bold.otf", + "fileName": "./Sans/OTF/TraditionalChineseHK/NotoSansCJKhk-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "63a506b812b848be4fb5825f4b3af0e993fe4d94" + }, + { + "algorithm": "SHA256", + "checksumValue": "a9b0265b7beae89767bb952094a1765fb8b4868064974e5f12ec783d8fe97d99" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChineseHK-NotoSansCJKhk-Light.otf", + "fileName": "./Sans/OTF/TraditionalChineseHK/NotoSansCJKhk-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "46debc10923585826074ea04fbd9d443a7a088b5" + }, + { + "algorithm": "SHA256", + "checksumValue": "c3d2599cdeb07114215c2f1d456d7f4dd437672215f6a5c24a74854045ab7a14" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChineseHK-NotoSansCJKhk-Black.otf", + "fileName": "./Sans/OTF/TraditionalChineseHK/NotoSansCJKhk-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a9ccc67a04b472b40f08689ed67558477f4822da" + }, + { + "algorithm": "SHA256", + "checksumValue": "0fa4fa6142cac84a8e271263ab0620293426feeff4642bc70c3ba4ce0a7f5efd" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChineseHK-NotoSansCJKhk-DemiLight.otf", + "fileName": "./Sans/OTF/TraditionalChineseHK/NotoSansCJKhk-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "524aa24adb411e7ddbb7cf52cec0b1aca05d6974" + }, + { + "algorithm": "SHA256", + "checksumValue": "3ef4dc59d01411352aced4935f782f05d8e527ebd3acb4735433e7cb2477a6b4" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-SimplifiedChinese-NotoSansCJKsc-Bold.otf", + "fileName": "./Sans/OTF/SimplifiedChinese/NotoSansCJKsc-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "32ad8c517591270eb78e233790723768cf4c7157" + }, + { + "algorithm": "SHA256", + "checksumValue": "b5f0d1a190a7f9b43c310a8850630af12553df32c4c050543f9059732d9b4c0a" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-SimplifiedChinese-NotoSansCJKsc-Regular.otf", + "fileName": "./Sans/OTF/SimplifiedChinese/NotoSansCJKsc-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d577bdc302c03212e1d05fd3f808657a71edea0c" + }, + { + "algorithm": "SHA256", + "checksumValue": "2c76254f6fc379fddfce0a7e84fb5385bb135d3e399294f6eeb6680d0365b74b" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-SimplifiedChinese-NotoSansCJKsc-Thin.otf", + "fileName": "./Sans/OTF/SimplifiedChinese/NotoSansCJKsc-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8bad34d7357bf244c72ae87b21f359bf161a70cd" + }, + { + "algorithm": "SHA256", + "checksumValue": "89bb8179d1b285ac0ca236b37ff29929ee3cc4526048dc11630a55728063e5ba" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-SimplifiedChinese-NotoSansCJKsc-Black.otf", + "fileName": "./Sans/OTF/SimplifiedChinese/NotoSansCJKsc-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "77574702f939b92ba74428a04c19e3b55d983d86" + }, + { + "algorithm": "SHA256", + "checksumValue": "2267c4a0312d267dff8c0d1609948f7d949a3da8be3e126f5e2690cb9cc883b4" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-SimplifiedChinese-NotoSansCJKsc-DemiLight.otf", + "fileName": "./Sans/OTF/SimplifiedChinese/NotoSansCJKsc-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d3a2e45728c8cb2826a5becd60ecdb75179ea7c4" + }, + { + "algorithm": "SHA256", + "checksumValue": "4600700d1b10c8e82074de7c91fa60d2ff5d0a7b9588edea6ab0929424b1699f" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-SimplifiedChinese-NotoSansCJKsc-Light.otf", + "fileName": "./Sans/OTF/SimplifiedChinese/NotoSansCJKsc-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "6c41f0a88f6406302cfd8d924f35c4bc5e7fd62a" + }, + { + "algorithm": "SHA256", + "checksumValue": "e78bbbe1573bbb006156c1198f5c8cd6329470cb6e0b6702c7a3c83913db4abf" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-SimplifiedChinese-NotoSansCJKsc-Medium.otf", + "fileName": "./Sans/OTF/SimplifiedChinese/NotoSansCJKsc-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "55a035f929ec089979a886ac98d92b3527b8ff38" + }, + { + "algorithm": "SHA256", + "checksumValue": "ca094f6b0001fb048ca39ddd797a0cdb0179e1e55c6561e111c49c3e6a61d7b7" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Japanese-NotoSansCJKjp-Bold.otf", + "fileName": "./Sans/OTF/Japanese/NotoSansCJKjp-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "482978eb8c237022a2ff41b18d715f2dcbcf0660" + }, + { + "algorithm": "SHA256", + "checksumValue": "e53dcb0dcb2922e45d01aae1ebd2f382bb81d4229b18b6b883bd170678af1f76" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Japanese-NotoSansCJKjp-Black.otf", + "fileName": "./Sans/OTF/Japanese/NotoSansCJKjp-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "eff455024dfa7be8afe9139ceb8d9589385b6c30" + }, + { + "algorithm": "SHA256", + "checksumValue": "cd66686594a861a42fe752990a406fcedafb51b3a91d6639f30f8948f7a10b4d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Japanese-NotoSansCJKjp-Regular.otf", + "fileName": "./Sans/OTF/Japanese/NotoSansCJKjp-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "c6c0102290f0a34c02ec4ac902855b968482b6bf" + }, + { + "algorithm": "SHA256", + "checksumValue": "68a3fc98800b2a27b371f2fb79991daf3633bd89309d4ffaa6946fd587f375b5" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Japanese-NotoSansCJKjp-Thin.otf", + "fileName": "./Sans/OTF/Japanese/NotoSansCJKjp-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d14caac6750480ad6cc5bac4d62342b8dee99855" + }, + { + "algorithm": "SHA256", + "checksumValue": "293b7592d8cde99b91fef52ad0b58eb09740d597f48c8639ef3290ebc198772c" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Japanese-NotoSansCJKjp-Medium.otf", + "fileName": "./Sans/OTF/Japanese/NotoSansCJKjp-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d28a308d020d6843ec9345c7660e1937009ca75b" + }, + { + "algorithm": "SHA256", + "checksumValue": "dd523e580e3413c480b2d701bf64e534c20f8419e3cfb6a44c2bdcd8d2a6c052" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Japanese-NotoSansCJKjp-Light.otf", + "fileName": "./Sans/OTF/Japanese/NotoSansCJKjp-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "7467b344535b4d7f77366ea80d8d938450a0b19c" + }, + { + "algorithm": "SHA256", + "checksumValue": "f29b82874c6e80cef845770b35e111cc3bdff7b8b25d8a41f2285083152ecdfe" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-Japanese-NotoSansCJKjp-DemiLight.otf", + "fileName": "./Sans/OTF/Japanese/NotoSansCJKjp-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9d48957a2867113fbc32659561a1107accd9f63f" + }, + { + "algorithm": "SHA256", + "checksumValue": "53f8a6290445e414efaf7feac2b4c6d321d371037a772cc04750b7c56bca0267" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChinese-NotoSansCJKtc-Medium.otf", + "fileName": "./Sans/OTF/TraditionalChinese/NotoSansCJKtc-Medium.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "bb6acb9c3ab1d57c671deebfe8005037d76ce1b5" + }, + { + "algorithm": "SHA256", + "checksumValue": "2905dd3de65d7b7de764596e2294978407986f4cc0a66c9584c5b95c5aa9572e" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChinese-NotoSansCJKtc-Black.otf", + "fileName": "./Sans/OTF/TraditionalChinese/NotoSansCJKtc-Black.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a32b780d3952c7dec815fefba734c6f9b5dde46b" + }, + { + "algorithm": "SHA256", + "checksumValue": "8d0b82a379fac186ea5ec7ebf00828a5e58c32b3a5a917298f768299707d076d" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChinese-NotoSansCJKtc-Regular.otf", + "fileName": "./Sans/OTF/TraditionalChinese/NotoSansCJKtc-Regular.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "eabdd70935b650402c01e1b80e2760ff2d272ff8" + }, + { + "algorithm": "SHA256", + "checksumValue": "dce08bd4fd91aa8aa76ed8fea4b694c2dfb8550f67871e326843212ddbeb88b4" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChinese-NotoSansCJKtc-Thin.otf", + "fileName": "./Sans/OTF/TraditionalChinese/NotoSansCJKtc-Thin.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "acaa062c2bf7afed6e29d82fc8a1d2584d3960e7" + }, + { + "algorithm": "SHA256", + "checksumValue": "f24d17065ac93a0bbfdfbaf3cafc968ca6531986b8c3faccd6b3ca835117d365" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChinese-NotoSansCJKtc-Bold.otf", + "fileName": "./Sans/OTF/TraditionalChinese/NotoSansCJKtc-Bold.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "9923d20c6b0e7d34ac7feaba6b2b172459efa9c3" + }, + { + "algorithm": "SHA256", + "checksumValue": "3ee160e5015106e3ec1a394301df54fa9bbbf8a251519984aec5c0abc50840c0" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChinese-NotoSansCJKtc-DemiLight.otf", + "fileName": "./Sans/OTF/TraditionalChinese/NotoSansCJKtc-DemiLight.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "816bcd986c41400bee9f586d4cf8e68bfc646cec" + }, + { + "algorithm": "SHA256", + "checksumValue": "031ca6e4ec290cf551ff092395f0ee8b0ce5fd03a5f84c766b7545e1af8345a6" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-Sans-OTF-TraditionalChinese-NotoSansCJKtc-Light.otf", + "fileName": "./Sans/OTF/TraditionalChinese/NotoSansCJKtc-Light.otf", + "copyrightText": "\u00a9 2014-2021 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "3ca07aad230a120575736801d04c06c9ee225c2f" + }, + { + "algorithm": "SHA256", + "checksumValue": "a49db53f6aac529d91a036606e55d68e2ab1df1360f507504ac4ff2cbb0f9407" + } + ], + "fileComment": "Binary file obtained from Adobe", + "fileContributor": [ + "Adobe", + "Ryoko NISHIZUKA \u897f\u585a\u6dbc\u5b50 (kana, bopomofo & ideographs); Paul D. Hunt (Latin, Greek & Cyrillic); Sandoll Communications \uc0b0\ub3cc\ucee4\ubba4\ub2c8\ucf00\uc774\uc158, Soo-young JANG \uc7a5\uc218\uc601 & Joo-yeon KANG \uac15\uc8fc\uc5f0 (hangul elements, letters & syllables)" + ] + }, + { + "SPDXID": "SPDXRef-File-google-fonts-hotfix.py", + "fileName": "./google-fonts/hotfix.py", + "licenseConcluded": "Apache-2.0", + "fileTypes": [ + "SOURCE" + ], + "licenseInfoInFiles": [ + "Apache-2.0" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "46621e33702b5fcc59010151ecf741a95f23de54" + }, + { + "algorithm": "SHA256", + "checksumValue": "be2fbd476630a20588b8c8d97c719e4ae90ab4ac24f5ba57cab18b45d88646bc" + } + ], + "fileComment": "Taken from https://github.com/notofonts/noto-cjk\n git rev bdad438c0080a5d3055c83b2ab8ca194556be423" + }, + { + "SPDXID": "SPDXRef-File-build-gf.sh", + "fileName": "./build-gf.sh", + "licenseConcluded": "Apache-2.0", + "fileTypes": [ + "SOURCE" + ], + "licenseInfoInFiles": [ + "Apache-2.0" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "1b83e40055566b8b586a7a11ea8cef49d5276af6" + }, + { + "algorithm": "SHA256", + "checksumValue": "4facacb676558ac9a4628f9450008324c62b4626cd42cbc071361eef7208a9d7" + } + ], + "fileComment": "Taken from https://github.com/notofonts/noto-cjk\n git rev 5a6a19b2e6620e113ecaa20b96cd2a7df36b000e" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSerifHK-wght-.ttf", + "fileName": "./google-fonts/NotoSerifHK[wght].ttf", + "copyrightText": "(c) 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "bf4d14b85ed2e5f1f8becc802f00f4986972ce13" + }, + { + "algorithm": "SHA256", + "checksumValue": "66108860e321aa413e7cb346448b4a418b779d94ae392accb32d163c024ae661" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSansHK-wght-.ttf", + "fileName": "./google-fonts/NotoSansHK[wght].ttf", + "copyrightText": "(c) 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "17eba0e2129f782e70a766cfbde7d37304500945" + }, + { + "algorithm": "SHA256", + "checksumValue": "2b8e8747625277963ce1c3d4a141c2c3b130cef880314fb6f6e5c0039a2411e7" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSerifJP-wght-.ttf", + "fileName": "./google-fonts/NotoSerifJP[wght].ttf", + "copyrightText": "(c) 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "6db17534ee2e5f0242e94b5c7329dd2d2696b378" + }, + { + "algorithm": "SHA256", + "checksumValue": "2fd527ba12b6a44ec30d796d633360da0aeba6c5d4af1304ce12bb4dc15a7dfc" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSansKR-wght-.ttf", + "fileName": "./google-fonts/NotoSansKR[wght].ttf", + "copyrightText": "(c) 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "de890a1e2cfad4867a7b481e524dc7bae8c846de" + }, + { + "algorithm": "SHA256", + "checksumValue": "c3d15e796356d59bc4a7a7eb858f0588472bb509e66da991e41a12b0809208a6" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSansTC-wght-.ttf", + "fileName": "./google-fonts/NotoSansTC[wght].ttf", + "copyrightText": "(c) 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "76a4f5c14774e585e48dd74f2e3e54309b0662d9" + }, + { + "algorithm": "SHA256", + "checksumValue": "aad86d0127faefa7dca60d6aeda855a1cd9bafd7b2d32188b902d4bd96a93dd8" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSansJP-wght-.ttf", + "fileName": "./google-fonts/NotoSansJP[wght].ttf", + "copyrightText": "(c) 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "e58707dbe2d1528cc4728fbfbc6a686ecabe6fea" + }, + { + "algorithm": "SHA256", + "checksumValue": "16532a899b0396658846b20b1d50d3682a674bbf0be10ebe84740adb04be7c0f" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSerifTC-wght-.ttf", + "fileName": "./google-fonts/NotoSerifTC[wght].ttf", + "copyrightText": "(c) 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "a7ffa13f6a188f1a2e04525667feaddf99773185" + }, + { + "algorithm": "SHA256", + "checksumValue": "0077e18f57c6908f4a000969880940bdb0dad057c0e8d98b49dc364c3d1b09c6" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSerifKR-wght-.ttf", + "fileName": "./google-fonts/NotoSerifKR[wght].ttf", + "copyrightText": "(c) 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d3b70e6a18995d51bd3c710c634accac66920349" + }, + { + "algorithm": "SHA256", + "checksumValue": "11f8d5de6f1b79195efba3828aaa2ec95c1178f5ae976fb23c8d53250a9938f3" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSerifSC-wght-.ttf", + "fileName": "./google-fonts/NotoSerifSC[wght].ttf", + "copyrightText": "(c) 2017-2024 Adobe (http://www.adobe.com/).", + "licenseConcluded": "OFL-1.1", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "4eced3ca8111d4e9221bf8cb76b42965951ed789" + }, + { + "algorithm": "SHA256", + "checksumValue": "050080d9255a86808f2945bffac582b31ef32bc36411ce29563b4961670c66f9" + } + ], + "fileComment": "Generated as described in relationships section" + }, + { + "SPDXID": "SPDXRef-File-google-fonts-NotoSansSC-wght-.ttf", + "fileName": "./google-fonts/NotoSansSC[wght].ttf", + "copyrightText": "(c) 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'.", + "licenseConcluded": "OFL-1.1-RFN", + "fileTypes": [ + "OTHER" + ], + "licenseInfoInFiles": [ + "OFL-1.1-RFN" + ], + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "b322e84414a0bf7497fab9491fb48c081f9e18e1" + }, + { + "algorithm": "SHA256", + "checksumValue": "b1736bb633392cfc59b50d97c353d234111bd1721c9c83eaf643eaab9392e7f9" + } + ], + "fileComment": "Generated as described in relationships section" + } + ], + "packages": [ + { + "SPDXID": "SPDXRef-Package-1-fontTools", + "name": "fontTools", + "versionInfo": "4.53.1", + "primaryPackagePurpose": "APPLICATION", + "supplier": "Person: FontTools (fonttools@googlegroups.com)", + "downloadLocation": "https://pypi.org/project/fontTools/4.53.1", + "filesAnalyzed": false, + "homepage": "http://github.com/fonttools/fonttools", + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "d3e68f28f2e3b4992b74bc7cac6a6acc8f7d9bda" + } + ], + "licenseConcluded": "MIT", + "licenseDeclared": "MIT", + "copyrightText": "NOASSERTION", + "summary": "Tools to manipulate font files", + "externalRefs": [ + { + "referenceCategory": "PACKAGE_MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:pypi/fontTools@4.53.1" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:fonttools:fontTools:4.53.1:*:*:*:*:*:*:*" + } + ] + }, + { + "SPDXID": "SPDXRef-Package-2-chws-tool", + "name": "chws_tool", + "versionInfo": "1.4.2", + "primaryPackagePurpose": "APPLICATION", + "supplier": "Person: Google Fonts", + "downloadLocation": "https://pypi.org/project/chws_tool/1.4.2", + "filesAnalyzed": false, + "homepage": "https://github.com/googlefonts/chws_tool", + "checksums": [ + { + "algorithm": "SHA1", + "checksumValue": "8b3ef954af3570af3cf5994b25e8e23c110dcdfc" + } + ], + "licenseConcluded": "Apache-2.0", + "licenseDeclared": "NOASSERTION", + "licenseComments": "chws_tool declares apache-2.0 which is not currently a valid SPDX License identifier or expression.", + "copyrightText": "NOASSERTION", + "summary": "Utility for OpenType chws/vchw features", + "externalRefs": [ + { + "referenceCategory": "PACKAGE_MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:pypi/chws_tool@1.4.2" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:google_fonts:chws_tool:1.4.2:*:*:*:*:*:*:*" + } + ] + }, + { + "SPDXID": "SPDXRef-Package-3-gftools", + "name": "gftools", + "versionInfo": "0.9.67", + "primaryPackagePurpose": "APPLICATION", + "supplier": "Person: Google Fonts", + "downloadLocation": "https://pypi.org/project/gftools/0.9.67", + "filesAnalyzed": false, + "licenseConcluded": "Apache-2.0", + "licenseDeclared": "NOASSERTION", + "licenseComments": "gftools declares Apache Software License which is not currently a valid SPDX License identifier or expression.", + "copyrightText": "NOASSERTION", + "summary": "Google Fonts Tools is a set of command-line tools for testing font projects", + "externalRefs": [ + { + "referenceCategory": "PACKAGE_MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:pypi/gftools@0.9.67" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:google_fonts:gftools:0.9.67:*:*:*:*:*:*:*" + } + ] + }, + { + "SPDXID": "SPDXRef-Package-4-axisregistry", + "name": "axisregistry", + "versionInfo": "0.4.11", + "primaryPackagePurpose": "APPLICATION", + "supplier": "Person: Google Fonts", + "downloadLocation": "https://pypi.org/project/axisregistry/0.4.11", + "filesAnalyzed": false, + "homepage": "https://github.com/googlefonts/axisregistry/", + "licenseConcluded": "Apache-2.0", + "licenseDeclared": "NOASSERTION", + "licenseComments": "axisregistry declares Apache Software License which is not currently a valid SPDX License identifier or expression.", + "copyrightText": "NOASSERTION", + "summary": "A python API to access data from the Google Fonts variable fonts axis registry.", + "externalRefs": [ + { + "referenceCategory": "PACKAGE_MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:pypi/axisregistry@0.4.11" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:google_fonts:axisregistry:0.4.11:*:*:*:*:*:*:*" + } + ] + }, + { + "SPDXID": "SPDXRef-Package-5-sbom4python", + "name": "sbom4python", + "versionInfo": "0.11.1", + "primaryPackagePurpose": "APPLICATION", + "supplier": "Person: anthonyharrison", + "downloadLocation": "https://pypi.org/project/sbom4python/0.11.1", + "filesAnalyzed": false, + "homepage": "https://github.com/anthonyharrison/sbom4python", + "licenseConcluded": "Apache-2.0", + "licenseDeclared": "Apache-2.0", + "copyrightText": "NOASSERTION", + "summary": "SBOM generator for Python modules", + "externalRefs": [ + { + "referenceCategory": "PACKAGE_MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:pypi/sbom4python@0.11.1" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:anthonyharrison:sbom4python:0.11.1:*:*:*:*:*:*:*" + } + ] + }, + { + "SPDXID": "SPDXRef-Package-6-lib4sbom", + "name": "lib4sbom", + "versionInfo": "0.4.7", + "primaryPackagePurpose": "APPLICATION", + "supplier": "Person: anthonyharrison", + "downloadLocation": "https://pypi.org/project/lib4sbom/0.4.7", + "filesAnalyzed": false, + "homepage": "https://github.com/anthonyharrison/lib4sbom", + "licenseConcluded": "Apache-2.0", + "licenseDeclared": "Apache-2.0", + "copyrightText": "NOASSERTION", + "summary": "Software Bill of Material (SBOM) generator and consumer library", + "externalRefs": [ + { + "referenceCategory": "PACKAGE_MANAGER", + "referenceType": "purl", + "referenceLocator": "pkg:pypi/lib4sbom@0.4.7" + }, + { + "referenceCategory": "SECURITY", + "referenceType": "cpe23Type", + "referenceLocator": "cpe:2.3:a:anthonyharrison:lib4sbom:0.4.7:*:*:*:*:*:*:*" + } + ] + }, + { + "SPDXID": "SPDXRef-Package-7-harfbuzz", + "name": "harfbuzz", + "versionInfo": "8.0.1", + "primaryPackagePurpose": "LIBRARY", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "homepage": "https://github.com/harfbuzz/harfbuzz/", + "licenseConcluded": "MIT", + "copyrightText": "NOASSERTION" + }, + { + "SPDXID": "SPDXRef-Package-8-woff2", + "name": "woff2", + "versionInfo": "1.0.2", + "primaryPackagePurpose": "LIBRARY", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "homepage": "https://github.com/google/woff2", + "licenseConcluded": "MIT", + "copyrightText": "NOASSERTION" + } + ], + "relationships": [ + { + "spdxElementId": "SPDXRef-Package-1-fontTools", + "relatedSpdxElement": "SPDXRef-File-build-gf.sh", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-1-fontTools", + "relatedSpdxElement": "SPDXRef-File-google-fonts-hotfix.py", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-2-chws-tool", + "relatedSpdxElement": "SPDXRef-File-build-gf.sh", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-2-chws-tool", + "relatedSpdxElement": "SPDXRef-File-google-fonts-hotfix.py", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-3-gftools", + "relatedSpdxElement": "SPDXRef-File-google-fonts-hotfix.py", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-4-axisregistry", + "relatedSpdxElement": "SPDXRef-File-google-fonts-hotfix.py", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-5-sbom4python", + "relatedSpdxElement": "SPDXRef-File-google-fonts-hotfix.py", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-6-lib4sbom", + "relatedSpdxElement": "SPDXRef-File-google-fonts-hotfix.py", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-8-woff2", + "relatedSpdxElement": "SPDXRef-File-build-gf.sh", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + }, + { + "spdxElementId": "SPDXRef-Package-google-fonts-hotfix.py", + "relatedSpdxElement": "SPDXRef-File-build-gf.sh", + "relationshipType": "RUNTIME_DEPENDENCY_OF" + } + ] +} diff --git a/requirements.txt b/requirements.txt index 4d67618..f9e82a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,5 @@ fontTools==4.53.1 chws_tool==1.4.2 gftools==0.9.67 axisregistry==0.4.11 -sbom4python==0.11.1 \ No newline at end of file +sbom4python==0.11.1 +lib4sbom==0.4.7 \ No newline at end of file