text stringlengths 5 22M | id stringlengths 12 177 | metadata dict | __index_level_0__ int64 0 1.37k |
|---|---|---|---|
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Dict
from azure.cognitiveservices.language.luis.runtime import LUISRuntimeClient
from azure.cognitiveservices.language.luis.runtime.models import LuisResult
from msrest.authentication import CognitiveServic... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_v2.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_v2.py",
"repo_id": "botbuilder-python",
"token_count": 1880
} | 400 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from msrest.serialization import Model
class QnAResponseContext(Model):
"""
The context associated with QnA.
Used to mark if the qna response has related prompts.
"""
_attribute_map = {
"is_cont... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/qna_response_context.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/qna_response_context.py",
"repo_id": "botbuilder-python",
"token_count": 319
} | 401 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from enum import Enum
class QnATelemetryConstants(str, Enum):
"""
Default QnA event and property names logged using IBotTelemetryClient.
"""
qna_message_event = "QnaMessage"
"""Event name"""
knowled... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/utils/qna_telemetry_constants.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/utils/qna_telemetry_constants.py",
"repo_id": "botbuilder-python",
"token_count": 232
} | 402 |
{
"text": "Deliver from 12345 VA to 12346 WA",
"intents": {
"Delivery": {
"score": 0.999999642
},
"search": {
"score": 5.50502E-06
},
"None": {
"score": 1.97937743E-06
},
"EntityTests": {
"score": 1.76767367E-06
},
"Travel": {
"score": 1.76767367E-06... | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Composite3.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Composite3.json",
"repo_id": "botbuilder-python",
"token_count": 3117
} | 403 |
{
"entities": {
"$instance": {}
},
"intents": {
"Greeting": {
"score": 0.9589885
}
},
"text": "Hi",
"v3": {
"options": {
"includeAllIntents": false,
"includeAPIResults": true,
"includeInstanceData": true,
"log": true,
"prefe... | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/NoEntitiesInstanceTrue_v3.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/NoEntitiesInstanceTrue_v3.json",
"repo_id": "botbuilder-python",
"token_count": 378
} | 404 |
{
"answers": [
{
"questions": [
"Esper seeks"
],
"answer": "Esper seeks. She's a curious little explorer. Young toddlers seek out new adventures, expanding their knowledge base. It's their job to test limits, to learn about them. It's the adult's job to en... | botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/QnAMakerDialog_ActiveLearning.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/QnAMakerDialog_ActiveLearning.json",
"repo_id": "botbuilder-python",
"token_count": 1318
} | 405 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""Bot Framework Application Insights integration package info."""
import os
__title__ = "botbuilder-applicationinsights"
__version__ = (
os.environ["packageVersion"] if "packageVersion" in os.environ else "4.16.0"
)
__u... | botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/about.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/about.py",
"repo_id": "botbuilder-python",
"token_count": 153
} | 406 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
from setuptools import setup
REQUIRES = [
"applicationinsights==0.11.9",
"botbuilder-schema==4.16.0",
"botframework-connector==4.16.0",
"botbuilder-core==4.16.0",
]
TESTS_REQUIRES = [
"aiounitte... | botbuilder-python/libraries/botbuilder-applicationinsights/setup.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/setup.py",
"repo_id": "botbuilder-python",
"token_count": 764
} | 407 |
from unittest import TestCase
from botbuilder.azure import CosmosDbKeyEscape
class TestKeyValidation(TestCase):
def test_should_not_change_a_valid_key(self):
valid_key = "Abc12345"
sanitized_key = CosmosDbKeyEscape.sanitize_key(valid_key)
assert (
valid_key == sanitized_key
... | botbuilder-python/libraries/botbuilder-azure/tests/test_key_validation.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-azure/tests/test_key_validation.py",
"repo_id": "botbuilder-python",
"token_count": 1486
} | 408 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import traceback
from abc import ABC, abstractmethod
from typing import Dict
from enum import Enum
class Severity(Enum):
verbose = 0
information = 1
warning = 2
error = 3
critical = 4
class TelemetryDa... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_telemetry_client.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_telemetry_client.py",
"repo_id": "botbuilder-python",
"token_count": 3155
} | 409 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
from typing import List, Union, Type
from aiohttp.web import RouteTableDef, Request, Response
from msrest.serialization import Model
from botbuilder.schema import (
Activity,
AttachmentData,
Conversat... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/integration/aiohttp_channel_service.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/integration/aiohttp_channel_service.py",
"repo_id": "botbuilder-python",
"token_count": 2657
} | 410 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# SPECIAL_CHARS
# closing ')', '}' and ']'
# '-' (a range in character set)
# '&', '~', (extended character set operations)
# '#' (comment) and WHITESPACE (ignored) in verbose mode
SPECIAL_CHARS_MAP = {i: "\\" + chr(i) for i ... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/re_escape.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/re_escape.py",
"repo_id": "botbuilder-python",
"token_count": 319
} | 411 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from .turn_context import TurnContext
class StatePropertyAccessor(ABC):
@abstractmethod
async def get(
self, turn_context: TurnContext, default_value_or_factory=None
... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/state_property_accessor.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/state_property_accessor.py",
"repo_id": "botbuilder-python",
"token_count": 444
} | 412 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License
class TelemetryLoggerConstants:
"""The Telemetry Logger Event names."""
# The name of the event when a new message is received from the user.
BOT_MSG_RECEIVE_EVENT: str = "BotMessageReceived"
# The name of t... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/telemetry_logger_constants.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/telemetry_logger_constants.py",
"repo_id": "botbuilder-python",
"token_count": 220
} | 413 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import aiounittest
from botbuilder.schema import Activity
from botbuilder.schema.teams import TeamsChannelData
from botbuilder.core.teams import teams_get_team_info
class TestTeamsChannelData(aiounittest.AsyncTestCase):
... | botbuilder-python/libraries/botbuilder-core/tests/teams/test_teams_channel_data.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/teams/test_teams_channel_data.py",
"repo_id": "botbuilder-python",
"token_count": 354
} | 414 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
import aiounittest
from botbuilder.core import MessageFactory
from botbuilder.schema import (
ActionTypes,
Activity,
Attachment,
CardAction,
InputHints,
AttachmentLayoutTypes,
... | botbuilder-python/libraries/botbuilder-core/tests/test_message_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_message_factory.py",
"repo_id": "botbuilder-python",
"token_count": 4400
} | 415 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from botbuilder.schema import CardAction
class Choice:
def __init__(
self, value: str = None, action: CardAction = None, synonyms: List[str] = None
):
self.value: str = value... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/choice.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/choice.py",
"repo_id": "botbuilder-python",
"token_count": 140
} | 416 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from botbuilder.core import NullTelemetryClient, BotTelemetryClient
from .dialog import Dialog
from .dialog_context import DialogContext
from .dialog_event import DialogEvent
from .dialog... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_container.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_container.py",
"repo_id": "botbuilder-python",
"token_count": 1645
} | 417 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from typing import Iterable
from .path_resolver_base import PathResolverBase
class ComponentPathResolversBase(ABC):
@abstractmethod
def get_path_resolvers(self) -> Iterable[Path... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/component_path_resolvers_base.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/component_path_resolvers_base.py",
"repo_id": "botbuilder-python",
"token_count": 111
} | 418 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.core import ConversationState
from botbuilder.dialogs.memory import scope_path
from .bot_state_memory_scope import BotStateMemoryScope
class ConversationMemoryScope(BotStateMemoryScope):
def __init__(se... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/conversation_memory_scope.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/conversation_memory_scope.py",
"repo_id": "botbuilder-python",
"token_count": 110
} | 419 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Dict
from recognizers_choice import recognize_boolean
from botbuilder.core.turn_context import TurnContext
from botbuilder.schema import ActivityTypes, Activity
from botbuilder.dialogs.choices import (
... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/confirm_prompt.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/confirm_prompt.py",
"repo_id": "botbuilder-python",
"token_count": 2544
} | 420 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.core import ConversationState
from botbuilder.core.skills import (
BotFrameworkClient,
BotFrameworkSkill,
ConversationIdFactoryBase,
)
class SkillDialogOptions:
def __init__(
self,
... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/skills/skill_dialog_options.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/skills/skill_dialog_options.py",
"repo_id": "botbuilder-python",
"token_count": 359
} | 421 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import copy
import aiounittest
from botbuilder.dialogs.prompts import (
AttachmentPrompt,
PromptOptions,
PromptValidatorContext,
)
from botbuilder.schema import Activity, ActivityTypes, Attachment, InputHints
fro... | botbuilder-python/libraries/botbuilder-dialogs/tests/test_attachment_prompt.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/test_attachment_prompt.py",
"repo_id": "botbuilder-python",
"token_count": 5892
} | 422 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from uuid import uuid4
from typing import Awaitable, Callable, Dict, Union
from unittest.mock import Mock
import aiounittest
from botbuilder.core import MessageFactory, InvokeResponse
from botbuilder.core.skills import (
... | botbuilder-python/libraries/botbuilder-integration-aiohttp/tests/skills/test_skill_http_client.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-integration-aiohttp/tests/skills/test_skill_http_client.py",
"repo_id": "botbuilder-python",
"token_count": 3679
} | 423 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from enum import Enum
class CallerIdConstants(str, Enum):
public_azure_channel = "urn:botframework:azure"
"""
The caller ID for any Bot Framework channel.
"""
us_gov_channel = "urn:botframework:azureusg... | botbuilder-python/libraries/botbuilder-schema/botbuilder/schema/callerid_constants.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-schema/botbuilder/schema/callerid_constants.py",
"repo_id": "botbuilder-python",
"token_count": 207
} | 424 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .async_mixin import AsyncServiceClientMixin
| botbuilder-python/libraries/botframework-connector/botframework/connector/async_mixin/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/async_mixin/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 37
} | 425 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
from msal import ConfidentialClientApplication
from .app_credentials import AppCredentials
class CertificateAppCredentials(AppCredentials, ABC):
"""
AppCredentials implementation using a certif... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/certificate_app_credentials.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/certificate_app_credentials.py",
"repo_id": "botbuilder-python",
"token_count": 1290
} | 426 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from .app_credentials import AppCredentials
class ServiceClientCredentialsFactory(ABC):
@abstractmethod
async def is_valid_app_id(self, app_id: str) -> bool:
"""
... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/service_client_credentials_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/service_client_credentials_factory.py",
"repo_id": "botbuilder-python",
"token_count": 534
} | 427 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# ---------------------------------------------------------------------... | botbuilder-python/libraries/botframework-connector/botframework/connector/token_api/models/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/token_api/models/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 395
} | 428 |
interactions:
- request:
body: '{"type": "message", "channelId": "slack", "from": {"id": "B21UTEF8S:T03CWQ0QB"},
"recipient": {"id": "U19KH8EHJ:T03CWQ0QB"}, "textFormat": "markdown", "attachmentLayout":
"list", "text": "Child activity."}'
headers:
Accept: [application/json]
Accept-Encodi... | botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_reply_to_activity_with_invalid_conversation_id_fails.yaml/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_reply_to_activity_with_invalid_conversation_id_fails.yaml",
"repo_id": "botbuilder-python",
"token_count": 616
} | 429 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import aiounittest
from botframework.connector.auth import AuthenticationConstants, MicrosoftAppCredentials
class TestMicrosoftAppCredentials(aiounittest.AsyncTestCase):
async def test_app_credentials(self):
de... | botbuilder-python/libraries/botframework-connector/tests/test_microsoft_app_credentials.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/test_microsoft_app_credentials.py",
"repo_id": "botbuilder-python",
"token_count": 544
} | 430 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import asyncio
from uuid import UUID
from typing import Awaitable, Callable, List
import botframework.streaming as streaming
import botframework.streaming.payloads as payloads
from botframework.streaming.payloads.models impo... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/assemblers/receive_response_assembler.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/assemblers/receive_response_assembler.py",
"repo_id": "botbuilder-python",
"token_count": 1358
} | 431 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from uuid import UUID
from typing import Awaitable, Callable, Dict, List, Union
from botframework.streaming.payloads.assemblers import (
Assembler,
ReceiveRequestAssembler,
ReceiveResponseAssembler,
)
from botfra... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/payload_assembler_manager.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/payload_assembler_manager.py",
"repo_id": "botbuilder-python",
"token_count": 1148
} | 432 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
from .transport_base import TransportBase
class TransportReceiverBase(ABC, TransportBase):
async def receive(self, buffer: object, offset: int, count: int) -> int:
raise NotImplementedError(... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/transport_receiver_base.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/transport_receiver_base.py",
"repo_id": "botbuilder-python",
"token_count": 92
} | 433 |
from asyncio import Semaphore
from typing import List
from uuid import UUID, uuid4
import aiounittest
from botframework.streaming.payload_transport import PayloadSender
from botframework.streaming.payloads import HeaderSerializer
from botframework.streaming.payloads.models import Header
from botframework.streaming.tra... | botbuilder-python/libraries/botframework-streaming/tests/test_payload_sender.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/tests/test_payload_sender.py",
"repo_id": "botbuilder-python",
"token_count": 787
} | 434 |
#!/usr/bin/env python3
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
from typing import Dict
from botbuilder.core.skills import BotFrameworkSkill
""" Bot Configuration """
class DefaultConfig:
""" Bot Configuration """
PORT = 3978
APP_ID = os.en... | botbuilder-python/tests/experimental/sso/parent/config.py/0 | {
"file_path": "botbuilder-python/tests/experimental/sso/parent/config.py",
"repo_id": "botbuilder-python",
"token_count": 157
} | 435 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from os import environ
class DefaultConfig:
"""Bot Configuration"""
PORT: int = 3978
APP_ID: str = environ.get("MicrosoftAppId", "")
APP_PASSWORD: str = environ.get("MicrosoftAppPassword", "")
| botbuilder-python/tests/functional-tests/functionaltestbot/flask_bot_app/default_config.py/0 | {
"file_path": "botbuilder-python/tests/functional-tests/functionaltestbot/flask_bot_app/default_config.py",
"repo_id": "botbuilder-python",
"token_count": 97
} | 436 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Tuple
import requests
from requests import Response
class DirectLineClient:
"""A direct line client that sends and receives messages."""
def __init__(self, direct_line_secret: str):
self... | botbuilder-python/tests/functional-tests/tests/direct_line_client.py/0 | {
"file_path": "botbuilder-python/tests/functional-tests/tests/direct_line_client.py",
"repo_id": "botbuilder-python",
"token_count": 1506
} | 437 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from botbuilder.core import MessageFactory, TurnContext
from botbuilder.schema import ActivityTypes, ChannelAccount
from helpers.dialog_helper import DialogHelper
from bots import DialogBot
class A... | botbuilder-python/tests/skills/skills-prototypes/dialog-to-dialog/authentication-bot/bots/auth_bot.py/0 | {
"file_path": "botbuilder-python/tests/skills/skills-prototypes/dialog-to-dialog/authentication-bot/bots/auth_bot.py",
"repo_id": "botbuilder-python",
"token_count": 565
} | 438 |
from .root_bot import RootBot
__all__ = ["RootBot"]
| botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-root-bot/bots/__init__.py/0 | {
"file_path": "botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-root-bot/bots/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 19
} | 439 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ecircumflexhookabove" format="2">
<advance width="1200"/>
<unicode hex="1EC2"/>
<outline>
<component base="E"/>
<component base="circumflexcomb.case" xOffset="30"/>
<component base="hookabovecomb.case" xOffset="414" yOffset="248"/>
</outline>
<li... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexhookabove.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexhookabove.glif",
"repo_id": "cascadia-code",
"token_count": 325
} | 440 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Iacute" format="2">
<advance width="1200"/>
<unicode hex="00CD"/>
<outline>
<component base="I"/>
<component base="acutecomb.case" xOffset="79"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_acute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_acute.glif",
"repo_id": "cascadia-code",
"token_count": 96
} | 441 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ocircumflexhookabove" format="2">
<advance width="1200"/>
<unicode hex="1ED4"/>
<outline>
<component base="O"/>
<component base="circumflexcomb.case"/>
<component base="hookabovecomb.case" xOffset="384" yOffset="248"/>
</outline>
<lib>
<dict>... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexhookabove.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexhookabove.glif",
"repo_id": "cascadia-code",
"token_count": 320
} | 442 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Omacrongrave" format="2">
<advance width="1200"/>
<unicode hex="1E50"/>
<outline>
<component base="O"/>
<component base="macroncomb.case"/>
<component base="gravecomb.case" xOffset="-80" yOffset="341"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_macrongrave.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_macrongrave.glif",
"repo_id": "cascadia-code",
"token_count": 117
} | 443 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Tcommaaccent" format="2">
<advance width="1200"/>
<unicode hex="021A"/>
<outline>
<component base="T"/>
<component base="commaaccentcomb" xOffset="-5"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/T_commaaccent.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/T_commaaccent.glif",
"repo_id": "cascadia-code",
"token_count": 98
} | 444 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Zacute.loclPLK" format="2">
<advance width="1200"/>
<outline>
<component base="Z"/>
<component base="acutecomb.case.loclPLK"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.loclP_L_K_.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.loclP_L_K_.glif",
"repo_id": "cascadia-code",
"token_count": 91
} | 445 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="_vinvertedbelow-ar" format="2">
<advance width="1200"/>
<anchor x="602" y="-117" name="_bottom"/>
<anchor x="602" y="-2" name="_bottom.dot"/>
<anchor x="603" y="-426" name="bottom"/>
<outline>
<component base="_vabove" xScale="-1" yScale="-1" xOffset="12... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_vinvertedbelow-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_vinvertedbelow-ar.glif",
"repo_id": "cascadia-code",
"token_count": 389
} | 446 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="acircumflexgrave" format="2">
<advance width="1200"/>
<unicode hex="1EA7"/>
<outline>
<component base="a"/>
<component base="circumflexcomb" xOffset="-20"/>
<component base="gravecomb" xOffset="293" yOffset="340"/>
</outline>
<lib>
<dict>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/acircumflexgrave.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/acircumflexgrave.glif",
"repo_id": "cascadia-code",
"token_count": 317
} | 447 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ainTwodotshorizontalabove-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="ain-ar.fina"/>
<component base="twodotshorizontalabove-ar" xOffset="10" yOffset="283"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 174
} | 448 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefTwoabove-ar" format="2">
<advance width="1200"/>
<unicode hex="0773"/>
<anchor x="610" y="-141" name="bottom"/>
<anchor x="361" y="1570" name="top"/>
<outline>
<component base="two-persian.small01" xOffset="-269" yOffset="-83"/>
<component base="... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 439
} | 449 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefdagesh-hb" format="2">
<advance width="1200"/>
<unicode hex="FB30"/>
<outline>
<component base="alef-hb"/>
<component base="dagesh-hb" xOffset="-151" yOffset="-170"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.9... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.glif",
"repo_id": "cascadia-code",
"token_count": 173
} | 450 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="asterisk_slash.liga" format="2">
<advance width="1200"/>
<outline>
<component base="asterisk" xOffset="62"/>
<component base="slash" xOffset="1142"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/asterisk_slash.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/asterisk_slash.liga.glif",
"repo_id": "cascadia-code",
"token_count": 416
} | 451 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="beh-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.medi"/>
<component base="dotbelow-ar" xOffset="-10" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 165
} | 452 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behThreedotshorizontalbelow-ar.fina.alt" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.fina.alt"/>
<component base="_dots.horz.below" xOffset="-708" yOffset="-18"/>
</outline>
<lib>
<dict>
<key>com.schriftgestal... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.alt.glif",
"repo_id": "cascadia-code",
"token_count": 361
} | 453 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behThreedotsupbelow-ar" format="2">
<advance width="1200"/>
<unicode hex="0752"/>
<outline>
<component base="behDotless-ar"/>
<component base="threedotsupbelow-ar" xOffset="-20" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.glif",
"repo_id": "cascadia-code",
"token_count": 179
} | 454 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behVabove-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.init"/>
<component base="vabove-ar" xOffset="235" yOffset="335"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 340
} | 455 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="beheh-ar.alt" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.alt"/>
<component base="fourdotsbelow-ar" xOffset="-620" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.alt.glif",
"repo_id": "cascadia-code",
"token_count": 346
} | 456 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="checkerBoardFill" format="2">
<advance width="1200"/>
<unicode hex="1FB95"/>
<outline>
<contour>
<point x="0" y="2226" type="line"/>
<point x="300" y="2226" type="line"/>
<point x="300" y="1549" type="line"/>
<point x="0" y="1549" typ... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_ill.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_ill.glif",
"repo_id": "cascadia-code",
"token_count": 860
} | 457 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="colon_equal.liga" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="1083" y="835" type="line"/>
<point x="2120" y="835" type="line"/>
<point x="2120" y="1085" type="line"/>
<point x="1083" y="1085" type="line"/>
</co... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/colon_equal.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/colon_equal.liga.glif",
"repo_id": "cascadia-code",
"token_count": 481
} | 458 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dalThreedotsdown-ar" format="2">
<advance width="1200"/>
<unicode hex="068F"/>
<outline>
<component base="dal-ar"/>
<component base="threedotsdownabove-ar" xOffset="16" yOffset="512"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.glif",
"repo_id": "cascadia-code",
"token_count": 174
} | 459 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dcaron" format="2">
<advance width="1200"/>
<unicode hex="010F"/>
<outline>
<contour>
<point x="1105" y="1188" type="line"/>
<point x="1311" y="1188" type="line"/>
<point x="1401" y="1568" type="line"/>
<point x="1155" y="1568" type="... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dcaron.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dcaron.glif",
"repo_id": "cascadia-code",
"token_count": 375
} | 460 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="deviceControlTwoControl" format="2">
<advance width="1200"/>
<unicode hex="2412"/>
<outline>
<component base="D.half" xOffset="-10" yOffset="781"/>
<component base="two.half" xOffset="370"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltun... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif",
"repo_id": "cascadia-code",
"token_count": 477
} | 461 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dotaccent" format="2">
<advance width="1200"/>
<unicode hex="02D9"/>
<outline>
<component base="dotaccentcomb"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
<dict>
<key>alignment... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dotaccent.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dotaccent.glif",
"repo_id": "cascadia-code",
"token_count": 278
} | 462 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dul-ar.fina" format="2">
<advance width="1200"/>
<guideline x="127" y="632" angle="0"/>
<outline>
<component base="dal-ar.fina"/>
<component base="threedotsupabove-ar" xOffset="36" yOffset="482"/>
</outline>
<lib>
<dict>
<key>public.markCol... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dul-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dul-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 185
} | 463 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="eacute" format="2">
<advance width="1200"/>
<unicode hex="00E9"/>
<outline>
<component base="e"/>
<component base="acutecomb" xOffset="61"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/eacute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/eacute.glif",
"repo_id": "cascadia-code",
"token_count": 95
} | 464 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="eight-ar" format="2">
<advance width="1200"/>
<unicode hex="0668"/>
<outline>
<component base="seven-ar" xScale="-1" yScale="-1" xOffset="1204" yOffset="1430"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/eight-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/eight-ar.glif",
"repo_id": "cascadia-code",
"token_count": 167
} | 465 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="escapeControl" format="2">
<advance width="1200"/>
<unicode hex="241B"/>
<outline>
<component base="E.half" xOffset="-10" yOffset="781"/>
<component base="C.half" xOffset="370"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.Com... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/escapeC_ontrol.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/escapeC_ontrol.glif",
"repo_id": "cascadia-code",
"token_count": 475
} | 466 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="exclam_exclam.liga" format="2">
<advance width="1200"/>
<outline>
<component base="exclam" xOffset="140"/>
<component base="exclam" xOffset="1060"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/exclam_exclam.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/exclam_exclam.liga.glif",
"repo_id": "cascadia-code",
"token_count": 422
} | 467 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="fehDotbelowThreedotsabove-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="fehDotless-ar.init"/>
<component base="dotbelow-ar" xOffset="113" yOffset="-24"/>
<component base="threedotsupabove-ar" xOffset="65" yOffset="460"/>
</o... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 507
} | 468 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="fehThreedotsupbelow-ar.fina.alt" format="2">
<advance width="1200"/>
<outline>
<component base="fehDotless-ar.fina.alt"/>
<component base="threedotsupbelow-ar" xOffset="-35" yOffset="-18"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.G... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.alt.glif",
"repo_id": "cascadia-code",
"token_count": 359
} | 469 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="fiveeighths.BRACKET.500" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="710" y="692" type="line"/>
<point x="1121" y="969" type="line"/>
<point x="989" y="1143" type="line"/>
<point x="617" y="814" type="line"/>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif",
"repo_id": "cascadia-code",
"token_count": 665
} | 470 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="four-persian.urdusuperior" format="2">
<advance width="1200"/>
<outline>
<component base="four-persian.urduinferior" yOffset="797"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.category</key>
<string>Number</string>
<key... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urdusuperior.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urdusuperior.glif",
"repo_id": "cascadia-code",
"token_count": 271
} | 471 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="franc" format="2">
<advance width="1200"/>
<unicode hex="20A3"/>
<outline>
<contour>
<point x="13" y="199" type="line"/>
<point x="695" y="199" type="line"/>
<point x="695" y="386" type="line"/>
<point x="13" y="386" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/franc.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/franc.glif",
"repo_id": "cascadia-code",
"token_count": 367
} | 472 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="gafRing-ar.medi" format="2">
<advance width="1200"/>
<anchor x="649" y="-141" name="bottom"/>
<outline>
<component base="gaf-ar.medi"/>
<component base="ringArabic" xOffset="234" yOffset="978"/>
</outline>
<lib>
<dict>
<key>com.schriftgesta... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 353
} | 473 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="guarani" format="2">
<advance width="1200"/>
<unicode hex="20B2"/>
<outline>
<contour>
<point x="518" y="-320" type="line"/>
<point x="771" y="-320" type="line"/>
<point x="771" y="54" type="line"/>
<point x="721" y="121" type="line"/... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/guarani.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/guarani.glif",
"repo_id": "cascadia-code",
"token_count": 454
} | 474 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="hahFourbelow-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="hah-ar.fina"/>
<component base="four-persiancenter-ar" xOffset="-4" yOffset="-340"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.glyph.leftMetr... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 273
} | 475 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="hahTahbelow-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="hah-ar.fina"/>
<component base="tahcenter-ar" xOffset="23" yOffset="-382"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</ke... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 271
} | 476 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="hahTwodotsverticalabove-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="hah-ar.fina"/>
<component base="twodotsverticalabove-ar" xOffset="-34" yOffset="362"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 175
} | 477 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="hehHamzaabove-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="heh-ar.fina"/>
<component base="hamzaabove-ar" xOffset="109" yOffset="-84"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.6... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hehH_amzaabove-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hehH_amzaabove-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 169
} | 478 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="hookabovecomb" format="2">
<unicode hex="0309"/>
<anchor x="580" y="1060" name="_top"/>
<anchor x="580" y="1060" name="_top_viet"/>
<anchor x="590" y="1618" name="top"/>
<outline>
<contour>
<point x="477" y="1248" type="line"/>
<point x="682"... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hookabovecomb.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hookabovecomb.glif",
"repo_id": "cascadia-code",
"token_count": 693
} | 479 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ii-cy.loclBGR" format="2">
<advance width="1200"/>
<outline>
<component base="u"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif",
"repo_id": "cascadia-code",
"token_count": 71
} | 480 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="kafTwodotshorizontalabove-ar.fina" format="2">
<advance width="1200"/>
<anchor x="545.9" y="1381.8" name="top"/>
<outline>
<component base="kaf-ar.fina"/>
<component base="twodotshorizontalabove-ar" xScale="0.7" yScale="0.7" xOffset="116" yOffset="683"/>... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 392
} | 481 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="kasra-ar" format="2">
<unicode hex="0650"/>
<anchor x="598" y="0" name="_bottom"/>
<anchor x="602" y="-237" name="bottom"/>
<outline>
<component base="_fatha-ar" xOffset="3" yOffset="-1568"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kasra-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kasra-ar.glif",
"repo_id": "cascadia-code",
"token_count": 400
} | 482 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="kehehThreedotsbelow-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="keheh-ar.fina"/>
<component base="threedotsdownbelow-ar" xOffset="-47" yOffset="-4"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<strin... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 175
} | 483 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="khah-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="hah-ar.medi"/>
<component base="dotabove-ar" xOffset="-34" yOffset="372"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 338
} | 484 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="lamBar-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="lam-ar.fina"/>
<component base="_bar" xScale="0.9" xOffset="381" yOffset="633"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.glyph.leftMetricsKey</ke... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 269
} | 485 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="lamDoublebar-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="lam-ar.medi"/>
<component base="_doublebar" xScale="0.9" xOffset="171" yOffset="633"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.glyph.leftMe... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 267
} | 486 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="lamVabove-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="lam-ar.init"/>
<component base="vabove-ar" xOffset="234" yOffset="935"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</str... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 163
} | 487 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="leftOneThirdBlock" format="2">
<advance width="1200"/>
<unicode hex="1FBCF"/>
<outline>
<contour>
<point x="0" y="-480" type="line"/>
<point x="400" y="-480" type="line"/>
<point x="400" y="2226" type="line"/>
<point x="0" y="2226" ty... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/leftO_neT_hirdB_lock.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/leftO_neT_hirdB_lock.glif",
"repo_id": "cascadia-code",
"token_count": 169
} | 488 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="less" format="2">
<advance width="1200"/>
<unicode hex="003C"/>
<outline>
<contour>
<point x="1087" y="197" type="line"/>
<point x="1087" y="467" type="line"/>
<point x="331" y="700" type="line"/>
<point x="331" y="718" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less.glif",
"repo_id": "cascadia-code",
"token_count": 246
} | 489 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="less_equal_middle.seq" format="2">
<advance width="1200"/>
<outline>
<component base="equal_middle.seq" xScale="-1" xOffset="1200"/>
<component base="less.alt"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less_equal_middle.seq.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less_equal_middle.seq.glif",
"repo_id": "cascadia-code",
"token_count": 97
} | 490 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="less_plus.liga" format="2">
<advance width="1200"/>
<outline>
<component base="less" xOffset="81"/>
<component base="plus" xOffset="1152"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
<d... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less_plus.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less_plus.liga.glif",
"repo_id": "cascadia-code",
"token_count": 284
} | 491 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="lowerThreeQuartersBlock.stypo" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="0" y="-480" type="line"/>
<point x="1200" y="-480" type="line"/>
<point x="1200" y="1305" type="line"/>
<point x="0" y="1305" type="line"/>... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif",
"repo_id": "cascadia-code",
"token_count": 162
} | 492 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="mediumWhiteSmallSquare" format="2">
<advance width="1200"/>
<unicode hex="25FD"/>
<note>
uni25FD
</note>
<outline>
<contour>
<point x="225" y="335" type="line"/>
<point x="975" y="335" type="line"/>
<point x="975" y="1085" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/mediumW_hiteS_mallS_quare.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/mediumW_hiteS_mallS_quare.glif",
"repo_id": "cascadia-code",
"token_count": 276
} | 493 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="naira" format="2">
<advance width="1200"/>
<unicode hex="20A6"/>
<outline>
<contour>
<point x="0" y="599" type="line"/>
<point x="1200" y="599" type="line"/>
<point x="1200" y="821" type="line"/>
<point x="0" y="821" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/naira.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/naira.glif",
"repo_id": "cascadia-code",
"token_count": 370
} | 494 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="noon-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="noonghunna-ar.fina"/>
<component base="dotabove-ar" xOffset="-38" yOffset="7"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</s... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 166
} | 495 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="noonRing-ar" format="2">
<advance width="1200"/>
<unicode hex="06BC"/>
<outline>
<component base="noon-ar"/>
<component base="ringArabic" xOffset="-8" yOffset="-432"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.glif",
"repo_id": "cascadia-code",
"token_count": 168
} | 496 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="numbersign_parenleft.liga" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="842" y="0" type="line"/>
<point x="1084" y="0" type="line"/>
<point x="1204" y="1420" type="line"/>
<point x="962" y="1420" type="line"/>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/numbersign_parenleft.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/numbersign_parenleft.liga.glif",
"repo_id": "cascadia-code",
"token_count": 674
} | 497 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="oacute.loclPLK" format="2">
<advance width="1200"/>
<outline>
<component base="o"/>
<component base="acutecomb.loclPLK" xOffset="30"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/oacute.loclP_L_K_.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/oacute.loclP_L_K_.glif",
"repo_id": "cascadia-code",
"token_count": 94
} | 498 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ograve" format="2">
<advance width="1200"/>
<unicode hex="00F2"/>
<outline>
<component base="o"/>
<component base="gravecomb" xOffset="-45"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ograve.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ograve.glif",
"repo_id": "cascadia-code",
"token_count": 93
} | 499 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.