From 244892aeb849a9ad9801aa9828e6282d29df87f0 Mon Sep 17 00:00:00 2001 From: Pheenoh Date: Wed, 9 Aug 2023 16:27:37 -0600 Subject: [PATCH] Github Projects (#1872) * github projects * add project prefixes --- .github/workflows/assign.yml | 26 + .github/workflows/ok-check.yml | 32 +- include/rel/d/a/e/d_a_e_yk/d_a_e_yk.h | 130 +- libs/JSystem/JParticle/JPAMath.cpp | 2 +- rel/d/a/e/d_a_e_yk/d_a_e_yk.cpp | 2 +- tools/classify_tu.py | 127 + tools/libgithub/__init__.py | 4 + tools/libgithub/field.py | 85 + tools/libgithub/graphql.py | 60 + tools/libgithub/issue.py | 443 + tools/libgithub/label.py | 229 + tools/libgithub/option.py | 78 + tools/libgithub/project.py | 546 + tools/libgithub/repository.py | 41 + tools/libgithub/state.py | 9 + tools/libgithub/util.py | 86 + tools/libgithub/view.py | 51 + tools/logger.py | 21 + tools/pjstate.yml | 13005 ++++++++++++++++++++++++ tools/projects.yml | 243 + tools/requirements.txt | 3 +- tools/tp.py | 263 +- 22 files changed, 15422 insertions(+), 64 deletions(-) create mode 100644 .github/workflows/assign.yml create mode 100644 tools/classify_tu.py create mode 100644 tools/libgithub/__init__.py create mode 100644 tools/libgithub/field.py create mode 100644 tools/libgithub/graphql.py create mode 100644 tools/libgithub/issue.py create mode 100644 tools/libgithub/label.py create mode 100644 tools/libgithub/option.py create mode 100644 tools/libgithub/project.py create mode 100644 tools/libgithub/repository.py create mode 100644 tools/libgithub/state.py create mode 100644 tools/libgithub/util.py create mode 100644 tools/libgithub/view.py create mode 100644 tools/logger.py create mode 100644 tools/pjstate.yml create mode 100644 tools/projects.yml diff --git a/.github/workflows/assign.yml b/.github/workflows/assign.yml new file mode 100644 index 00000000000..c5461b52ab6 --- /dev/null +++ b/.github/workflows/assign.yml @@ -0,0 +1,26 @@ +name: Assign issue to commenter +on: + issue_comment: + types: [created] + +jobs: + assign_to_commenter: + permissions: + issues: write + runs-on: ubuntu-latest + steps: + - name: Assign issue to commenter + uses: actions/github-script@v3 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + const issueComment = context.payload.comment; + const issue = context.payload.issue; + if (issueComment.body === "/assign") { + github.issues.addAssignees({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issue.number, + assignees: [issueComment.user.login] + }); + } diff --git a/.github/workflows/ok-check.yml b/.github/workflows/ok-check.yml index 50697c1bb54..df816ddd3f4 100644 --- a/.github/workflows/ok-check.yml +++ b/.github/workflows/ok-check.yml @@ -31,4 +31,34 @@ jobs: PROGRESS_API_KEY: ${{ secrets.FROGRESS_API_KEY }} run: | ./tp progress -f JSON > progress-${{ github.run_id }}.json - ./tp upload-progress progress-${{ github.run_id }}.json -b https://progress.deco.mp/ -p twilightprincess -v gcn_usa \ No newline at end of file + ./tp upload-progress progress-${{ github.run_id }}.json -b https://progress.deco.mp/ -p twilightprincess -v gcn_usa + - name: Get changed .c, .cpp, .inc files + if: github.event_name != 'pull_request' + id: changed-files-specific + uses: tj-actions/changed-files@v36 + with: + files: | + **/*.{c,cpp,inc} + - name: Update Status + if: github.event_name != 'pull_request' && steps.changed-files-specific.outputs.any_changed == 'true' + run: | + # Install libclang-16-dev for FunctionChecker + wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - + sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-16 main" + sudo apt update + sudo apt install -y libclang-16-dev + + FILENAMES="${{ steps.changed-files-specific.outputs.all_changed_files }}" + CMD="./tp github-check-update-status --personal-access-token ${{ secrets.PAT_TOKEN }} --debug" + + # If .inc files are found, assume it's for d_a_alink.cpp for now. + # We can come up something better here later if needed. + if echo "$FILENAMES" | grep -q ".inc"; then + CMD="$CMD --filename src/d/a/d_a_alink.cpp" + else + for FILE in $FILENAMES; do + CMD="$CMD --filename $FILE" + done + fi + + $CMD diff --git a/include/rel/d/a/e/d_a_e_yk/d_a_e_yk.h b/include/rel/d/a/e/d_a_e_yk/d_a_e_yk.h index 9271288722a..acaf3dfb3e1 100644 --- a/include/rel/d/a/e/d_a_e_yk/d_a_e_yk.h +++ b/include/rel/d/a/e/d_a_e_yk/d_a_e_yk.h @@ -1,3 +1,9 @@ +/** +* @file d_a_e_yk.h +* This header contains information about the Shadow Keese actor. +* +*/ + #ifndef D_A_E_YK_H #define D_A_E_YK_H @@ -8,20 +14,28 @@ #include "d/cc/d_cc_uty.h" #include "d/d_path.h" +/** + * \enum daE_YK_Action + * \brief Shadow Keese current action. + * + */ enum daE_YK_Action { - ACT_ROOF, // keese is on roof - ACT_FIGHT_FLY, // keese is transitioning from flying to aggro - ACT_FIGHT, // keese is aggroed - ACT_ATTACK, // keese is attacking - ACT_RETURN, // keese is returning to roof - ACT_FLY, // keese is flying around - ACT_PATH_FLY, // Unconfirmed: keese is flying along its path? - ACT_CHANCE = 10, // keese is stunned/fell down - ACT_WOLFBITE = 13, // keese is being bitten by wolf - ACT_WIND // keese is in the gale boomerang + ACT_ROOF, /**< Keese is on roof. */ + ACT_FIGHT_FLY, /**< Keese is transitioning from flying to aggro. */ + ACT_FIGHT, /**< Keese is aggroed. */ + ACT_ATTACK, /**< Keese is attacking. */ + ACT_RETURN, /**< Keese is returning to roof. */ + ACT_FLY, /**< Keese is flying around. */ + ACT_PATH_FLY, /**< Unconfirmed: Keese is flying along its path. */ + ACT_CHANCE = 10, /**< Keese is stunned/fell down. */ + ACT_WOLFBITE = 13, /**< Keese is being bitten by wolf. */ + ACT_WIND /**< Keese is in the gale boomerang. */ }; -// tmp struct to get HIO to match +/** + * \brief Temporary HIO struct to get a match. Remove later. + * + */ struct daE_YK_HIO_c_tmp { void* vtable; /* 0x04 */ s8 field_0x04; @@ -32,6 +46,11 @@ struct daE_YK_HIO_c_tmp { /* 0x18 */ f32 field_0x18; }; + +/** + * \brief Shadow Keese Host Input Output class + * + */ class daE_YK_HIO_c { public: /* 8080482C */ daE_YK_HIO_c(); @@ -46,52 +65,55 @@ public: /* 0x18 */ f32 field_0x18; }; +/** + * \brief Shadow Keese actor class + * + */ class e_yk_class : public fopEn_enemy_c { public: - /* 0x5AC */ request_of_phase_process_class mPhase; - /* 0x5B4 */ u8 mParam1; // paramter - used to determine default action? - /* 0x5B5 */ u8 mPlayerTriggerBase; // parameter - base value used to determine mPlayerTrigger below - /* 0x5B6 */ u8 field_0x5b6; - /* 0x5B7 */ u8 mPathIdx; // parameter - used to lookup/set mpPath based on the room - /* 0x5B8 */ u8 field_0x5b8; - /* 0x5B9 */ s8 mPathPntIdx; // tracks the index of the points along the keese's path - /* 0x5BA */ s8 field_0x5ba; - /* 0x5BB */ u8 field_0x5bb; - /* 0x5BC */ dPath* mpPath; // flight path for keese to follow? - /* 0x5C0 */ mDoExt_McaMorfSO* mpMorfSO; // last res loaded - /* 0x5C4 */ Z2CreatureEnemy mCreature; // used for playing keese noises - /* 0x668 */ int mResIdx; // index number of last res loaded - /* 0x66C */ s16 field_0x66c; - /* 0x66E */ s16 mAction; // current action (see daE_YK_Action above) - /* 0x670 */ s16 mActionPhase; // current phase of current action - /* 0x674 */ cXyz mPathPntPos; // tracks the position of the point the keese is along a path - /* 0x680 */ s16 mAngleFromPlayer; // current keese angle from player - /* 0x684 */ f32 mDistanceXZFromPlayer; // current keese distance from player - /* 0x688 */ f32 mPlayerTrigger; // how close to the keese the player has to be before aggro - /* 0x68C */ f32 field_0x68c; - /* 0x690 */ f32 field_0x690; - /* 0x694 */ f32 field_0x694; - /* 0x698 */ s16 field_0x698; - /* 0x69A */ csXyz field_0x69a; - /* 0x6A0 */ s8 field_0x6a0; - /* 0x6A1 */ u8 field_0x6a1; - /* 0x6A2 */ s16 field_0x6a2[4]; - /* 0x6AA */ s16 field_0x6aa; - /* 0x6AC */ s16 field_0x6ac[6]; - /* 0x6B8 */ cXyz mBoomrangPosOffset; // offset position when keese caught in rang - /* 0x6C4 */ s16 mBoomrangXRotOffset; // offset x rotation when keese caught in rang - /* 0x6C8 */ dBgS_AcchCir field_0x6c8; - /* 0x708 */ dBgS_ObjAcch field_0x708; - /* 0x8E0 */ dCcD_Stts mCollisionStatus; // collision status - /* 0x91C */ dCcD_Sph mCollisionSphere; // collision sphere - /* 0xA54 */ dCcU_AtInfo mAtColliderInfo; // attack collider info (used when keese gets hit) - /* 0xA78 */ u32 field_0xa78; - /* 0xA7C */ u32 field_0xa7c; - /* 0xA80 */ u32 field_0xa80; - /* 0xA84 */ u32 mParticleEmitterIds[2]; - /* 0xA8C */ u8 field_0xa8c; + /* 0x5AC */ request_of_phase_process_class mPhase; ///< @brief Actor phase process class. + /* 0x5B4 */ u8 mParam1; ///< @brief Actor parameter. Used to determine default action? + /* 0x5B5 */ u8 mPlayerTriggerBase; ///< @brief Actor parameter. Used to determine mPlayerTrigger value. @see mPlayerTrigeer + /* 0x5B6 */ u8 field_0x5b6; ///< @brief ??? + /* 0x5B7 */ u8 mPathIdx; ///< @brief Path index. Used to lookup/set mpPath based on the room. + /* 0x5B8 */ u8 field_0x5b8; ///< @brief ??? + /* 0x5B9 */ s8 mPathPntIdx; ///< @brief Path point index. Tracks the index of the points along the actor's path. + /* 0x5BA */ s8 field_0x5ba; ///< @brief ??? + /* 0x5BB */ u8 field_0x5bb; ///< @brief ??? + /* 0x5BC */ dPath* mpPath; ///< @brief Flight path. Flight path for the actor to follow? + /* 0x5C0 */ mDoExt_McaMorfSO* mpMorfSO; ///< @brief MorfSO pointer. Tracks the last resource loaded. + /* 0x5C4 */ Z2CreatureEnemy mCreature; ///< @brief Z2 Audio class. Used for playing actor noises. + /* 0x668 */ int mResIdx; ///< @brief Resource index. Tracks the index of the last resource loaded. + /* 0x66C */ s16 field_0x66c; ///< @brief ??? + /* 0x66E */ s16 mAction; ///< @brief Current action. Tracks the current action of the actor. @see daE_YK_Action + /* 0x670 */ s16 mActionPhase; ///< @brief Current action phase. Tracks the phase of the current action of the actor. @see daE_YK_Action + /* 0x674 */ cXyz mPathPntPos; ///< @brief Path point position. Tracks the position of the point the actor is along a path. + /* 0x680 */ s16 mAngleFromPlayer; ///< @brief Angle from player. Tracks the current actor angle from player. + /* 0x684 */ f32 mDistanceXZFromPlayer; ///< @brief Distance from player. Tracks the current distance the actor is from the player. + /* 0x688 */ f32 mPlayerTrigger; ///< @brief Trigger distance from player. Tracks how close to the actor the player has to be before it will begin to attack the player. + /* 0x68C */ f32 field_0x68c; ///< @brief ??? + /* 0x690 */ f32 field_0x690; ///< @brief ??? + /* 0x694 */ f32 field_0x694; ///< @brief ??? + /* 0x698 */ s16 field_0x698; ///< @brief ??? + /* 0x69A */ csXyz field_0x69a; ///< @brief ??? + /* 0x6A0 */ s8 field_0x6a0; ///< @brief ??? + /* 0x6A1 */ u8 field_0x6a1; ///< @brief ??? + /* 0x6A2 */ s16 field_0x6a2[4]; ///< @brief ??? + /* 0x6AA */ s16 field_0x6aa; ///< @brief ??? + /* 0x6AC */ s16 field_0x6ac[6]; ///< @brief ??? + /* 0x6B8 */ cXyz mBoomrangPosOffset; ///< @brief Boomerang position offset. Tracks the offset position when the actor is caught in the gale boomerang. + /* 0x6C4 */ s16 mBoomrangXRotOffset; ///< @brief Boomerang rotation offset. Tracks the offset x rotation when the actor is caught in the gale boomerang. + /* 0x6C8 */ dBgS_AcchCir field_0x6c8; ///< @brief ??? + /* 0x708 */ dBgS_ObjAcch field_0x708; ///< @brief ??? + /* 0x8E0 */ dCcD_Stts mCollisionStatus; ///< @brief Collision status. + /* 0x91C */ dCcD_Sph mCollisionSphere; ///< @brief Collision sphere. + /* 0xA54 */ dCcU_AtInfo mAtColliderInfo; ///< @brief Attack collider info. Used when actor gets hit. + /* 0xA78 */ u32 field_0xa78; ///< @brief ??? + /* 0xA7C */ u32 field_0xa7c; ///< @brief ??? + /* 0xA80 */ u32 field_0xa80; ///< @brief ??? + /* 0xA84 */ u32 mParticleEmitterIds[2]; ///< @brief ??? + /* 0xA8C */ u8 field_0xa8c; ///< @brief ??? }; - // size: 0xA90 #endif /* D_A_E_YK_H */ diff --git a/libs/JSystem/JParticle/JPAMath.cpp b/libs/JSystem/JParticle/JPAMath.cpp index 94744cb018e..51f4905c29a 100644 --- a/libs/JSystem/JParticle/JPAMath.cpp +++ b/libs/JSystem/JParticle/JPAMath.cpp @@ -184,4 +184,4 @@ f32 JPACalcKeyAnmValue(f32 param_0, u16 param_1, f32 const* param_2) { return JMAHermiteInterpolation(param_0, param_2[0], param_2[1], param_2[3], param_2[4], param_2[5], param_2[6]); -} +} \ No newline at end of file diff --git a/rel/d/a/e/d_a_e_yk/d_a_e_yk.cpp b/rel/d/a/e/d_a_e_yk/d_a_e_yk.cpp index 58bdb83e46a..8fd1065c39d 100644 --- a/rel/d/a/e/d_a_e_yk/d_a_e_yk.cpp +++ b/rel/d/a/e/d_a_e_yk/d_a_e_yk.cpp @@ -1,5 +1,5 @@ /** - * d_a_e_yk.cpp + * @file d_a_e_yk.cpp * Enemy - Shadow Keese */ diff --git a/tools/classify_tu.py b/tools/classify_tu.py new file mode 100644 index 00000000000..915b5dd1a42 --- /dev/null +++ b/tools/classify_tu.py @@ -0,0 +1,127 @@ +import clang.cindex +import re +import shutil + +from logger import LOG + +# Regular expression to match #include "asm/..." +asm_pattern = re.compile(r'#\s*include\s*"asm/.*"') + +# Include directories passed to clang +include_dirs = ['include','include/dolphin','src'] + +class FunctionChecker: + def __init__(self, file_path): + self.file_path = file_path + self.backup_file_path = None + self.index = clang.cindex.Index.create() + self.include_options = [] + self.not_attempted = [] + self.new_not_attempted = [] + self.attempted = [] + self.completed = [] + + for dir in include_dirs: + self.include_options += ['-I', dir] + + def replace_static_asm(self): + pattern = r'\bstatic\s+asm\b' + self.backup_file_path = self.file_path + '.bak' + + # Make a backup copy of the file + shutil.copy2(self.file_path, self.backup_file_path) + + with open(self.file_path, 'r') as file: + lines = file.readlines() + + replaced_lines = [re.sub(pattern, 'asm', line) for line in lines] + + with open(self.file_path, 'w') as file: + file.writelines(replaced_lines) + + def restore_backup(self): + shutil.move(self.backup_file_path, self.file_path) + + def check_function(self,line): + # Check if there are any characters between { and } + if re.search(r'\{.+\}', line, re.DOTALL): + # Check if those characters are not '/* empty function */' or whitespaces or 'return True;' or 'return False;' + if not re.search(r'\{\s*(/\*\s*empty function\s*\*/)?\s*\}', line) and not re.search(r'\{\s*return (True|False)\s*;\s*\}', line, re.IGNORECASE): + return True + return False + + def return_status(self) -> str: + unattempted = len(self.new_not_attempted) + attempted = len(self.attempted) + completed = len(self.completed) + + if attempted > 0 or (unattempted > 0 and completed > 0): + return "in progress" + if unattempted > 0: + return "todo" + if completed > 0 or (completed == 0 and attempted == 0 and unattempted == 0): + return "done" + return "error" + + def find_includes(self,node, nonmatching: bool): + if str(node.location.file) == self.file_path or str(node.location.file).endswith(".inc"): + # Check if the node is a function + if node.kind in (clang.cindex.CursorKind.FUNCTION_DECL, + clang.cindex.CursorKind.CXX_METHOD, + clang.cindex.CursorKind.CONSTRUCTOR, + clang.cindex.CursorKind.DESTRUCTOR, + clang.cindex.CursorKind.CONVERSION_FUNCTION): + + # Get the function body + body = [token.spelling for token in node.get_tokens()] + body_str = ' '.join(body) + check_body_str = body_str.strip() + + # Skip if the function body doesn't exist or is empty + if self.check_function(check_body_str): + LOG.debug(f"Checking function: {node.mangled_name}") + + if asm_pattern.search(body_str): + if nonmatching: + self.new_not_attempted.append(node.mangled_name) + else: + self.not_attempted.append(node.mangled_name) + else: + if nonmatching and node.mangled_name not in self.not_attempted: + self.completed.append(node.mangled_name) + + # Recurse for children of this node + for c in node.get_children(): + self.find_includes(c, nonmatching) + +def run(input_filename: str) -> str: + checker = FunctionChecker(input_filename) + + try: + # tiny hack to get all functions to show up correctly in the AST + checker.replace_static_asm() + + # first categorize unattempted functions + tu = checker.index.parse(checker.file_path, checker.include_options) + checker.find_includes(tu.cursor, False) + + # enable nonmatching functions + checker.include_options += ['-DNONMATCHING'] + + # then categorize attempted/completed functions + tu = checker.index.parse(input_filename, checker.include_options) + checker.find_includes(tu.cursor, True) + + checker.attempted = set(checker.not_attempted) - set(checker.new_not_attempted) + + LOG.debug(f"Not Attempted: {len(set(checker.new_not_attempted))}") + LOG.debug(f"Attempted: {len(set(checker.attempted))}") + LOG.debug(f"Complete: {len(set(checker.completed))}") + LOG.debug(f"Total: {len(set(checker.new_not_attempted)) + len(set(checker.attempted)) + len(set(checker.completed))}") + return checker.return_status() + except Exception as e: + print("Exception:", e) + return e + finally: + checker.restore_backup() + diff --git a/tools/libgithub/__init__.py b/tools/libgithub/__init__.py new file mode 100644 index 00000000000..0cd84121981 --- /dev/null +++ b/tools/libgithub/__init__.py @@ -0,0 +1,4 @@ +from .issue import * +from .project import * +from .label import * +from .repository import * \ No newline at end of file diff --git a/tools/libgithub/field.py b/tools/libgithub/field.py new file mode 100644 index 00000000000..aabc70b2232 --- /dev/null +++ b/tools/libgithub/field.py @@ -0,0 +1,85 @@ +import sys + +from .option import Option +from .graphql import GraphQLClient +from logger import LOG + +class Field: + def __init__(self, id, name, options): + self.id = id + self.name = name + self.options = options + + @staticmethod + def get_status_field(project_id: str) -> 'Field': + LOG.debug(f'Getting status field for project ID {project_id}') + query = ''' + query ($projectId: ID!) { + node(id: $projectId) { + ... on ProjectV2 { + fields(first: 100) { + nodes { + ... on ProjectV2SingleSelectField { + name + id + } + } + } + } + } + } + ''' + + variables = { + "projectId": project_id + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + fields = data['data']['node']['fields']['nodes'] + for field in fields: + if 'name' in field and field['name'] == 'Status': + field_id = field['id'] + LOG.info(f'Status Field ID: {field_id}') + return Field( + id=field_id, + name='Status', + options=Option.get_all_options(field_id) + ) + else: + LOG.critica(f'No field found with name "Status"!') + sys.exit(1) + + def create_option(self, option_name: str): + LOG.debug(f'Creating option with name {option_name} for field {self.name}') + query = ''' + mutation ($fieldId: ID!, $optionName: String!) { + createProjectOption(input: {projectId: $fieldId, name: $optionName}) { + projectOption { + id + name + } + } + } + ''' + variables = { + "fieldId": self.id, + "optionName": option_name + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + option_id = data['data']['createProjectOption']['projectOption']['id'] + LOG.info(f'Created option with name {option_name} and ID {option_id}') + return Option(option_id, option_name) + else: + LOG.warning(f'Could not create option with name {option_name}') + return None + + # Finish later if we decide to add more fields other than the default Status field + def create(self, project_id: str): + pass + + # Finish later if we decide to add more fields other than the default Status field + def delete(self): + pass \ No newline at end of file diff --git a/tools/libgithub/graphql.py b/tools/libgithub/graphql.py new file mode 100644 index 00000000000..4b1c1e67d92 --- /dev/null +++ b/tools/libgithub/graphql.py @@ -0,0 +1,60 @@ +import requests +import sys +import time + +from typing import Optional +from logger import LOG + +class GraphQLClient: + instance = None + url: str = 'https://api.github.com/graphql' + headers: dict + personal_access_token: Optional[str] = None + + @classmethod + def setup(cls, pat_token: Optional[str] = None): + if cls.instance is None: + cls.instance = GraphQLClient() + if pat_token is not None: + cls.personal_access_token = pat_token + cls.headers = { + 'Authorization': f'Bearer {cls.personal_access_token}', + 'Accept': 'application/vnd.github.v3+json', + 'Accept': 'application/vnd.github.bane-preview+json', + } + else: + LOG.error('No personal access token provided. Please provide one with the --personal-access-token flag.') + sys.exit(1) + + @classmethod + def get_instance(cls): + if cls.instance is None: + raise Exception("The singleton instance has not been set up. Call setup() first.") + return cls.instance + + def __init__(self): + if self.instance is not None: + raise Exception("This class is a singleton!") + + + def make_request(self, query_or_mutation: str, variables: dict): + payload = { + 'query': query_or_mutation, + 'variables': variables + } + + while True: + response = requests.post(self.url, headers=self.headers, json=payload) + data = response.json() + + if 'errors' in data: + error_message = data['errors'][0]['message'] + if 'was submitted too quickly' in error_message or 'API rate limit exceeded' in error_message or 'Something went wrong while executing your query' in error_message: + LOG.warning('Hit rate limit. Sleeping for 30 seconds...') + time.sleep(30) + continue + else: + LOG.error(f"Fail. Error: {error_message}") + return None + + return data \ No newline at end of file diff --git a/tools/libgithub/issue.py b/tools/libgithub/issue.py new file mode 100644 index 00000000000..37bd3fee189 --- /dev/null +++ b/tools/libgithub/issue.py @@ -0,0 +1,443 @@ +import sys + +from .label import * +from typing import Optional + +@dataclass +class Issue: + yaml_data: Optional[dict] = None + + def __eq__(self, other): + if isinstance(other, Issue): + return self.unique_id == other.unique_id + return False + + def __hash__(self): + return hash(self.unique_id) + + def __init__(self,id=None, title=None, body=None, label_ids=None, file_path=None, data=None): + if data is not None: + self.yaml_ctor(data) + else: + self.id = id + self.title = title + self.body = body + self.label_ids = label_ids + self.file_path = file_path + + def yaml_ctor(self,data): + for tu, labels, file_path in get_translation_units(data): + self.id = None + self.title = tu + self.body = None + self.file_path = file_path + self.label_ids = [] + + def set_open(self): + pass + + def set_closed(self): + LOG.debug(f'Closing issue {self.id}') + + mutation = """ + mutation CloseIssue($id: ID!) { + closeIssue(input: {issueId: $id}) { + clientMutationId + } + } + """ + + variables = { + "id": self.id + } + + data = GraphQLClient.get_instance().make_request(mutation, variables) + if data: + LOG.info(f'Closed issue {self.id}') + else: + LOG.error(f'Failed to close issue {self.id}') + sys.exit(1) + + + + + @staticmethod + def delete_all(): + LOG.debug(f'Deleting all issues in {RepoInfo.owner.name}/{RepoInfo.name}') + + issue_state = StateFile.data["issues"] + if issue_state is not None and len(issue_state) > 0: + for issue in issue_state.copy(): + Issue( + file_path=issue["file_path"], + id=issue["id"], + title=issue["file_path"] + ).delete() + else: + LOG.warning(f'No issues found in state file, nothing to delete.') + return + + @staticmethod + def get_all_from_github() -> list['Issue']: + return Issue.get_open() + Issue.get_closed() + + @staticmethod + def get_closed() -> list['Issue']: + return Issue.get_by_state("CLOSED") + + @staticmethod + def get_open() -> list['Issue']: + return Issue.get_by_state("OPEN") + + @staticmethod + def get_all_from_yaml(data): + ret_issues = [] + labels_dict = {label['name']: label['id'] for label in StateFile.data["labels"]} + + for d in data: + # Get tu, labels, filepath for current project + tu_info = get_translation_units(d) + + # Add in project name as a label + for idx, (tu, labels, path) in enumerate(tu_info): + new_labels = labels + [d['project']['title']] + tu_info[idx] = (tu, new_labels, path) + + + for tu, labels, file_path in tu_info: + state_label_ids = [] + + # Fetch label ids from state file + for label in labels: + if label in labels_dict: + LOG.debug(f'Found label {label} for TU {tu} in state file, adding to issue.') + state_label_ids.append(labels_dict[label]) + else: + LOG.error(f'Label {label} not found in state file, please run ./tp github-sync-labels first.') + sys.exit(1) + + issue = Issue( + id=None, # set in check_and_create or create method + title=tu, + body=None, + label_ids=state_label_ids, + file_path=file_path + ) + + ret_issues.append(issue) + + return ret_issues + + @staticmethod + def get_by_unique_id(unique_id: str) -> 'Issue': + LOG.debug(f'Getting issue with unique ID {unique_id} on {RepoInfo.owner.name}/{RepoInfo.name}') + + query = ''' + query ($owner: String!, $repo: String!, $first: Int!, $after: String) { + repository(owner: $owner, name: $repo) { + issues(first: $first, after: $after) { + pageInfo { + endCursor + hasNextPage + } + nodes { + title + id + body + labels(first: 100) { + nodes { + id + name + } + } + } + } + } + } + ''' + + has_next_page = True + cursor = None + + while has_next_page: + variables = { + "owner": RepoInfo.owner.name, + "repo": RepoInfo.name, + "first": 100, + "after": cursor + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + issues = data['data']['repository']['issues']['nodes'] + for issue in issues: + labels = sorted([label['name'] for label in issue['labels']['nodes']]) + issue_unique_id = issue['title'] + '-' + '-'.join(labels) + if issue_unique_id == unique_id: + return Issue( + id=issue['id'], + title=issue['title'], + body=issue['body'], + labels=[ + Label( + id=label['id'], + name=label['name'] + ) for label in issue['labels']['nodes'] + ], + unique_id=unique_id + ) + + page_info = data['data']['repository']['issues']['pageInfo'] + has_next_page = page_info['hasNextPage'] + cursor = page_info['endCursor'] + else: + LOG.warning(f'No issue found with unique ID {unique_id}') + return None + + @staticmethod + def get_by_state(state: str) -> list['Issue']: + LOG.debug(f'Getting {state} issues on {RepoInfo.owner.name}/{RepoInfo.name}') + + query = ''' + query ($owner: String!, $repo: String!, $state: [IssueState!], $cursor: String) { + repository(owner: $owner, name: $repo) { + issues(first: 100, states: $state, after: $cursor) { + pageInfo { + endCursor + hasNextPage + } + nodes { + title + id + body + labels(first: 100) { + nodes { + id + name + } + } + } + } + } + } + ''' + + + all_issues = [] + has_next_page = True + cursor = None + + while has_next_page: + variables = { + "owner": RepoInfo.owner.name, + "repo": RepoInfo.name, + "state": state, + "cursor": cursor + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + issues = data['data']['repository']['issues']['nodes'] + for issue in issues: + insert_issue = Issue( + id=issue['id'], + title=issue['title'], + body=issue['body'] + ) + + all_issues.append(insert_issue) + + + LOG.debug(f'{state} issues retrieved: {issues}') + page_info = data['data']['repository']['issues']['pageInfo'] + has_next_page = page_info['hasNextPage'] + cursor = page_info['endCursor'] + + LOG.debug(f'All {state} issues retrieved: {all_issues}') + return all_issues + + @staticmethod + def get_labels_by_id(issue_id: str) -> list[Label]: + LOG.debug(f'Getting all labels for issue {issue_id} on {RepoInfo.owner.name}/{RepoInfo.name}') + + query = ''' + query ($id: ID!) { + node(id: $id) { + ... on Issue { + labels(first: 100) { + nodes { + id + name + } + } + } + } + } + ''' + + variables = { + "id": issue_id + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + labels = data['data']['node']['labels']['nodes'] + LOG.debug(f'Labels retrieved: {labels} for issue {issue_id}') + + ret_labels = [] + for label in labels: + label = Label( + id=label["id"], + name=label["name"] + ) + + ret_labels.append(label) + + return ret_labels + else: + LOG.debug(f'No labels found for issue {issue_id}') + return [] + + def attach_labels(self) -> None: + LOG.debug(f'Attaching labels to issue {self.id} on {RepoInfo.owner.name}/{RepoInfo.name}') + + def check_and_create(self) -> None: + issues = StateFile.data.get('issues') + + if issues is None: + issue_dict = {} + else: + issue_dict = {issue['file_path']: issue for issue in issues} + + if self.file_path in issue_dict: + LOG.info(f"Issue {self.title} from TU {self.file_path} already setup!") + self.id = issue_dict[self.file_path]["id"] + else: + LOG.info(f'Creating missing issue {self.title}.') + self.create() + + # def check_and_attach_labels(self) -> None: + # LOG.debug(f'Checking labels for issue {self.title} on {RepoInfo.owner.name}/{RepoInfo.name}') + + # issues = StateFile.data.get('issues') + + # if issues is None: + # issue_dict = {} + # else: + # issue_dict = {issue['file_path']: issue for issue in issues} + + # if self.file_path in issue_dict: + # state_labels = StateFile.data.get('labels') + # label_ids = issue_dict[self.file_path]["label_ids"] + + # if label_ids is not None: + # state_label_ids = [label['id'] for label in state_labels] + # for label_id in label_ids: + # if label_id in state_label_ids: + # LOG.debug(f'Label {label_id} exists in state, continuing') + # continue + # else: + # LOG.error(f'Label {label_id} does not exist in state, please run sync-labels first') + # sys.exit(1) + + # LOG.info(f'All labels already attached to issue {self.title} on {RepoInfo.owner.name}/{RepoInfo.name}') + # else: + # LOG.info(f'Attaching labels to issue {self.title} on {RepoInfo.owner.name}/{RepoInfo.name}') + + # # use yaml data to fetch label names for this issue + # # lookup id from state and attach to issue + # = + # for label in : + # self.attach_label_by_id() # finish + + # LOG.info(f'Labels attached to issue {self.title} on {RepoInfo.owner.name}/{RepoInfo.name}') + + + # print(label_ids) + # sys.exit(0) + # else: + # LOG.error(f"Issue {self.title} from TU {self.file_path} is missing") + # sys.exit(1) + + def create(self): + repo_id = RepoInfo.id + mutation = """ + mutation CreateIssue($input: CreateIssueInput!) { + createIssue(input: $input) { + issue { + id + title + } + } + } + """ + + input_dict = { + "repositoryId": repo_id, + "title": self.title, + "body": self.body, + } + + if self.label_ids is not None: + input_dict["labelIds"] = self.label_ids + + variables = { + "input": input_dict + } + + data = GraphQLClient.get_instance().make_request(mutation, variables) + if data: + self.id = data["data"]["createIssue"]["issue"]["id"] + self.title = data["data"]["createIssue"]["issue"]["title"] + self.write_state_to_file() + LOG.info(f'Created Issue {self.title} with ID {self.id}') + return self.id + + def delete(self) -> None: + LOG.debug(f'Deleting issue {self.title} with ID {self.id}') + mutation = ''' + mutation DeleteIssue($id: ID!) { + deleteIssue(input: {issueId: $id}) { + clientMutationId + } + } + ''' + + variables = { + "id": self.id + } + + data = GraphQLClient.get_instance().make_request(mutation, variables) + if data: + self.write_state_to_file(delete=True) + LOG.info(f'Successfully deleted issue {self.title}.') + else: + LOG.error(f'Failed to delete issue {self.title}') + + def write_state_to_file(self, delete: bool = False): + state = { + "id": self.id, + "title": self.title, + "body": self.body, + "label_ids": self.label_ids, + "file_path": self.file_path, + } + + curr_state_issues = StateFile.data.get("issues", None) + if curr_state_issues is not None: + for i, issue in enumerate(curr_state_issues): + if issue['id'] == self.id: + if delete: + del StateFile.data['issues'][i] + break + else: + StateFile.data['issues'][i] = state + break + else: + StateFile.data['issues'].append((state)) + else: + StateFile.data['issues'] = [state] + + + with open("tools/pjstate.yml", 'w') as f: + yaml.safe_dump(StateFile.data, f) \ No newline at end of file diff --git a/tools/libgithub/label.py b/tools/libgithub/label.py new file mode 100644 index 00000000000..fa777b9ccb8 --- /dev/null +++ b/tools/libgithub/label.py @@ -0,0 +1,229 @@ +from .repository import RepoInfo +from .graphql import GraphQLClient +from .util import * +from .state import * +from logger import LOG +from dataclasses import dataclass +from typing import Optional + +import yaml, sys + +@dataclass +class Label: + @staticmethod + def get_all_from_yaml(data): + ret_labels = [] + sub_labels = [] + + for d in data: + sub_labels = get_sub_labels(d) + + for label in sub_labels: + ret_label = Label(name=label) + ret_labels.append(ret_label) + + + title_label = Label(data=d) + ret_labels.append(title_label) + + return ret_labels + + + def __eq__(self, other): + if isinstance(other, Label): + return self.name == other.name and self.id == other.id + return False + + def __hash__(self): + return hash((self.name, self.id)) + + def __init__(self,data=None,id=None,name=None): + if data is not None: + project_data = data.get('project', {}) + self.yaml_ctor(project_data) + else: + self.id = id + self.name = name + + def yaml_ctor(self,project_data): + self.id = None + self.name = project_data.get('title', 'MISSING_TITLE') + + @staticmethod + def delete_all(): + LOG.debug(f'Deleting all labels in {RepoInfo.owner.name}/{RepoInfo.name}') + + label_state = StateFile.data["labels"] + if label_state is not None and len(StateFile.data) > 0: + for label in label_state.copy(): + Label( + id=label["id"], + name=label["name"] + ).delete() + else: + LOG.warning(f'No labels found in state file, nothing to delete.') + return + + @staticmethod + def get_all_from_github() -> list['Label']: + LOG.debug(f'Fetch all current labels for {RepoInfo.owner.name}/{RepoInfo.name}') + query = ''' + query ($owner: String!, $repo: String!) { + repository(owner: $owner, name: $repo) { + labels(first: 100) { + nodes { + name + id + } + } + } + } + ''' + + variables = { + "owner": RepoInfo.owner.name, + "repo": RepoInfo.name + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + labels = data['data']['repository']['labels']['nodes'] + LOG.debug(f'Labels retrieved: {labels}') + return [ + Label( + id=label["id"], + name=label["name"] + ) for label in labels + ] + else: + LOG.warning(f'No labels found in {RepoInfo.owner.name}/{RepoInfo.name}') + return [] + + @staticmethod + def get_id_by_name(label_name: str): + LOG.debug(f'Fetch label ID for label {label_name} in {RepoInfo.owner.name}/{RepoInfo.name}') + query = ''' + query ($owner: String!, $repo: String!) { + repository(owner: $owner, name: $repo) { + labels(first: 100) { + nodes { + name + id + } + } + } + } + ''' + + variables = { + "owner": RepoInfo.owner.name, + "repo": RepoInfo.name + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + labels = data['data']['repository']['labels']['nodes'] + for label in labels: + if label['name'] == label_name: + LOG.debug(f'Label ID for {label_name} retrieved: {label["id"]}') + return label['id'] + + LOG.warning(f'Label {label_name} not found in {RepoInfo.owner.name}/{RepoInfo.name}') + return None + + def check_and_create(self) -> None: + labels = StateFile.data.get('labels') + + if labels is None: + label_dict = {} + else: + label_dict = {label['name']: label for label in labels} + + if self.name in label_dict: + LOG.info(f"Label {self.name} already setup!") + self.id = label_dict[self.name]["id"] + self.name = label_dict[self.name]["name"] + else: + LOG.debug(f'Creating missing label {self.name}.') + self.create() + + + def create(self) -> None: + LOG.debug(f'Creating issue label: {self.name}') + + mutation = ''' + mutation ($repoId: ID!, $labelName: String!, $color: String!) { + createLabel(input: { name: $labelName, repositoryId: $repoId, color: $color }) { + label { + name + id + } + } + } + ''' + + variables = { + "repoId": RepoInfo.id, + "labelName": self.name, + "color": generate_random_rgb_hex() + } + + + data = GraphQLClient.get_instance().make_request(mutation, variables) + if data: + LOG.debug(f'Create label data: {data}') + self.id = data['data']['createLabel']['label']['id'] + self.write_state_to_file() + LOG.info(f"Successfully created label '{self.name} with ID {self.id}'!") + else: + LOG.error(f"Failed to create label {self.name}") + sys.exit(1) + + def delete(self) -> None: + query = ''' + mutation ($labelId: ID!) { + deleteLabel(input: { + id: $labelId + }) { + clientMutationId + } + } + ''' + + variables = { + "labelId": self.id + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + self.write_state_to_file(delete=True) + LOG.info(f'Successfully deleted label {self.name}') + else: + LOG.error(f'Failed to delete label {self.name}') + + def write_state_to_file(self, delete: bool = False): + state = { + "id": self.id, + "name": self.name + } + + curr_state_labels = StateFile.data.get('labels',None) + + if curr_state_labels is not None: + + for i, label in enumerate(StateFile.data['labels']): + if label['id'] == self.id: + if delete: + del StateFile.data['labels'][i] + break + else: + StateFile.data['labels'][i] = state + break + else: + StateFile.data['labels'].append((state)) + else: + StateFile.data['labels'] = [state] + + + with open("tools/pjstate.yml", 'w') as f: + yaml.safe_dump(StateFile.data, f) diff --git a/tools/libgithub/option.py b/tools/libgithub/option.py new file mode 100644 index 00000000000..227b39d7f5a --- /dev/null +++ b/tools/libgithub/option.py @@ -0,0 +1,78 @@ +from .util import * +from .graphql import GraphQLClient +from dataclasses import dataclass +from logger import LOG + +class Option: + def __init__(self, id, name): + self.id = id + self.name = name + + @staticmethod + def get_all_options(field_id: str) -> list['Option']: + LOG.debug(f'Getting all options for field {field_id}') + query = ''' + query ($fieldId: ID!) { + node(id: $fieldId) { + ... on ProjectV2SingleSelectField { + options { + id + name + } + } + } + } + ''' + variables = { + "fieldId": field_id + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + options = data['data']['node']['options'] + LOG.info(f'Options: {options}') + ret_options = [] + + for option in options: + option_id = option['id'] + option_name = option['name'] + ret_options.append(Option(id = option_id, name = option_name)) + + return ret_options + else: + LOG.warning(f'No options found for field {field_id}') + return [] + + @staticmethod + def get_id(field_id: str, option_name: str) -> str: + LOG.debug(f'Getting option ID for field {field_id} with name {option_name}') + query = ''' + query ($fieldId: ID!) { + node(id: $fieldId) { + ... on ProjectV2SingleSelectField { + options { + id + name + } + } + } + } + ''' + variables = { + "fieldId": field_id + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + options = data['data']['node']['options'] + for option in options: + if option['name'] == option_name: + option_id = option['id'] + LOG.info(f'{option_name} Option ID: {option_id}') + return option_id + + LOG.warning(f'No option found with name {option_name}') + return None + + def delete(self): + pass \ No newline at end of file diff --git a/tools/libgithub/project.py b/tools/libgithub/project.py new file mode 100644 index 00000000000..52795ecfae5 --- /dev/null +++ b/tools/libgithub/project.py @@ -0,0 +1,546 @@ +import yaml + +from .issue import * +from .field import * +from typing import Optional + +class Project: + def __eq__(self, other): + if isinstance(other, Label): + return self.title == other.name and self.id == other.id + return False + + def __hash__(self): + return hash((self.title, self.id)) + + def __init__(self, id=None, title=None, number=None, items=None, items_to_attach=None, status_field=None, data=None): + if data is not None: + self.id = None + self.title = data.get("project").get('title', 'MISSING_TITLE') + self.number = None + self.items = None + self.items_to_attach = None + self.status_field = None + else: + self.id = id + self.title = title + self.number = number + self.items = items + self.items_to_attach = items_to_attach + self.status_field = status_field + + @staticmethod + def get_all_from_yaml(data) -> list['Project']: + ret_projects = [] + issues_dict = {issue['file_path']: issue['id'] for issue in StateFile.data["issues"]} + + for d in data: + items = [] + + for tu, _, file_path in get_translation_units(d): + if file_path in issues_dict: + LOG.debug(f'Issue {tu} found in state file.') + LOG.debug(f'Adding ID {issues_dict[file_path]} to items.') + + items.append({ + "issue_id": issues_dict[file_path] + }) + else: + LOG.error(f'Issue {tu} not found in state file. Please run ./tp github-sync-issues first.') + sys.exit(1) + + project = Project( + id=None, + title=d['project']['title'], + number=None, + items=[], + items_to_attach=items + ) + + ret_projects.append(project) + return ret_projects + + @staticmethod + def get_all_from_github() -> list['Project']: + LOG.debug(f'Getting projects on {RepoInfo.owner.name}/{RepoInfo.name}') + query = ''' + query ($owner: String!, $repo: String!, $cursor: String) { + repository(owner: $owner, name: $repo) { + projectsV2(first: 20) { + nodes { + id + title + number + + items(first: 100, after: $cursor) { + pageInfo { + endCursor + hasNextPage + } + edges { + cursor + node { + id + content { + ... on Issue { + id + title + } + } + } + } + } + } + } + } + } + ''' + variables = { + "owner": RepoInfo.owner.name, + "repo": RepoInfo.name, + "cursor": None, + } + + ret_projects = [] + while True: + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + projects = data['data']['repository']['projectsV2']['nodes'] + LOG.debug(f'Projects retrieved: {projects}') + + for project in projects: + items = [] + + for edge in project['items']['edges']: + LOG.debug(f'Item: {edge}') + item_id = edge['node']['id'] + issue_id = edge['node']['content']['id'] + + item = ProjectItem( + id=item_id, + issue_id = issue_id, + ) + + items.append(item) + + ret_project = Project( + id=project['id'], + title=project['title'], + number=project['number'], + items=items + ) + + ret_projects.append(ret_project) + + # Check if there are more items to fetch + if len(projects) == 0 or not data['data']['repository']['projectsV2']['nodes'][0]['items']['pageInfo']['hasNextPage']: + break + + # Update the cursor to the last item's cursor for the next fetch + variables['cursor'] = data['data']['repository']['projectsV2']['nodes'][0]['items']['pageInfo']['endCursor'] + else: + LOG.warning("No projects found!") + break + + return ret_projects + + + @staticmethod + def get_project_by_name(project_name: str) -> Optional['Project']: + all_projects = Project.get_all_from_github() + if all_projects: + for project in all_projects: + if project.title == project_name: + return project + else: + LOG.warning(f'No projects found in {RepoInfo.owner.name}/{RepoInfo.name}') + return None + + @staticmethod + def delete_all(): + LOG.debug(f'Deleting all projects in {RepoInfo.owner.name}/{RepoInfo.name}') + project_state = StateFile.data["projects"] + + if project_state is not None and len(project_state) > 0: + for project in project_state.copy(): + Project( + id=project["id"], + title=project["title"] + ).delete() + else: + LOG.warning(f'No projects found in state file. Nothing to delete.') + return + + def create(self) -> None: + owner_id = RepoInfo.owner.id + repo_id = RepoInfo.id + + if not owner_id or not repo_id: + return + + LOG.debug(f'Creating Github project {self.title}') + + mutation = ''' + mutation ($ownerId: ID!, $repoId: ID!, $projectName: String!) { + createProjectV2(input: { ownerId: $ownerId, repositoryId: $repoId, title: $projectName }) { + projectV2 { + id + number + title + } + } + } + ''' + variables = { + "ownerId": owner_id, + "repoId": repo_id, + "projectName": self.title + } + + data = GraphQLClient.get_instance().make_request(mutation, variables) + if data: + self.id = data['data']['createProjectV2']['projectV2']['id'] + self.number = data['data']['createProjectV2']['projectV2']['number'] + self.status_field = Field.get_status_field(self.id) + self.write_state_to_file() + self.set_public() + + LOG.info(f"Successfully created project '{self.title}' with ID {self.id} and number {self.number}") + else: + LOG.error(f'Failed to create project {self.title}') + sys.exit(1) + + def check_and_create(self) -> None: + projects = StateFile.data.get('projects') + + if projects is None: + project_dict = {} + else: + project_dict = {project['title']: project for project in projects} + + if self.title in project_dict: + LOG.info(f'Project {self.title} already exists') + + + self.id = project_dict[self.title]["id"] + self.number = project_dict[self.title]["number"] + self.items = project_dict[self.title]["items"] + self.status_field = project_dict[self.title]["status_field"] + + missing_issue_ids = [item['issue_id'] for item in self.items_to_attach if item['issue_id'] not in {item['issue_id'] for item in self.items}] + + LOG.info(f'Attaching missing issues to project {self.title}') + if len(missing_issue_ids) > 0: + for id in missing_issue_ids: + self.attach_issue(id) + else: + LOG.info(f'All issues already attached to project {self.title}') + else: + LOG.info(f'Creating missing project {self.title}') + + self.create() + for item in self.items_to_attach: + self.attach_issue(item["issue_id"]) + + def attach_issue(self, issue_id) -> None: + LOG.debug(f'Attaching issue {issue_id} to project {self.title}') + mutation = """ + mutation AddProjectV2ItemById($input: AddProjectV2ItemByIdInput!) { + addProjectV2ItemById(input: $input) { + clientMutationId + + item { + id + } + } + } + """ + + variables = { + "input": { + "projectId": self.id, + "contentId": issue_id, + "clientMutationId": "UNIQUE_ID" + } + } + + data = GraphQLClient.get_instance().make_request(mutation, variables) + if data: + LOG.debug(f'Issue {issue_id} attached to project {self.title}') + item_id = data['data']['addProjectV2ItemById']['item']['id'] + self.items.append({ + "issue_id": issue_id, + "item_id": item_id + }) + self.write_state_to_file() + else: + LOG.error(f'Failed to attach issue {issue_id} to project {self.title}') + sys.exit(1) + + def get_item_id_from_issue(self, issue: Issue) -> str: + LOG.debug(f'Getting item ID for issue {issue.title} in project {self.title}') + + query = """ + query ($projectId: ID!, $issueId: ID!) { + projectV2Item(projectId: $projectId, contentId: $issueId) { + id + } + } + """ + + variables = { + "projectId": self.id, + "issueId": issue.id + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + LOG.debug(f'Got item ID for issue {issue.title} in project {self.title}') + return data['data']['projectV2Item']['id'] + else: + LOG.error(f'Failed to get item ID for issue {issue.title} in project {self.title}') + sys.exit(1) + + def delete(self) -> None: + query = ''' + mutation ($projectId: ID!) { + deleteProjectV2(input: { + projectId: $projectId + }) { + clientMutationId + } + } + ''' + + variables = { + "projectId": self.id + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + self.write_state_to_file(delete=True) + LOG.info(f'Successfully deleted project {self.title}.') + + else: + LOG.error(f'Failed to delete project {self.title}') + sys.exit(1) + + def set_public(self) -> None: + query = ''' + mutation UpdateProjectVisibility($input: UpdateProjectV2Input!) { + updateProjectV2(input: $input) { + projectV2 { + id + title + public + } + } + } + ''' + + variables = { + "input": { + "projectId": self.id, + "public": True + } + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + LOG.info(f'Successfully set project {self.title} to public.') + else: + LOG.error(f'Failed to set project {self.title} to public.') + sys.exit(1) + + def set_status_for_item(self, item_id: str, status: str) -> None: + query = ''' + mutation updateProjectV2ItemFieldValue($input: UpdateProjectV2ItemFieldValueInput!) { + updateProjectV2ItemFieldValue(input: $input) { + projectV2Item { + databaseId + } + } + } + ''' + + options = self.status_field.options + option = next((option for option in options if option.name.lower() == status.lower()), None) + + variables = { + "input": { + "projectId": self.id, + "itemId": item_id, + "fieldId": self.status_field.id, + "value": { + "singleSelectOptionId": option.id + } + } + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + LOG.info(f'Successfully set status for item {item_id} to {status}') + else: + LOG.error(f'Failed to set status for item {item_id} to {status}') + sys.exit(1) + + def set_id(self) -> None: + LOG.debug(f'Getting ID for project {self.title}') + + query = ''' + query ($owner: String!, $name: String!, $projectName: String!) { + repository(owner: $owner, name: $name) { + projectsV2(query: $projectName, first: 1) { + nodes { + id + title + } + } + } + } + ''' + + variables = { + "owner": RepoInfo.owner.name, + "name": RepoInfo.name, + "projectName": self.title + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + projects = data['data']['repository']['projectsV2']['nodes'] + for project in projects: + if project['title'] == self.title: + project_id = project['id'] + LOG.info(f'Project ID for {self.title}: {project_id}') + self.id = project_id + else: + LOG.critical(f'No project found with title {self.title}') + sys.exit(1) + else: + LOG.critical(f'Query failed.') + sys.exit(1) + + def set_items(self) -> None: + query = ''' + query ($owner: String!, $repo: String!, $cursor: String) { + repository(owner: $owner, name: $repo) { + projectsV2(first: 20) { + nodes { + items(first: 100, after: $cursor) { + pageInfo { + endCursor + hasNextPage + } + edges { + cursor + node { + id + content { + ... on Issue { + id + title + } + } + } + } + } + } + } + } + } + ''' + variables = { + "owner": RepoInfo.owner.name, + "repo": RepoInfo.name, + "cursor": None, + } + + self.items = [] + while True: + data = GraphQLClient.get_instance().make_request(query, variables) + + if data: + projects = data['data']['repository']['projectsV2']['nodes'] + + for project in projects: + for edge in project['items']['edges']: + item_id = edge['node']['id'] + issue_id = edge['node']['content']['id'] + issue_title = edge['node']['content']['title'] + + item = { + 'id': item_id, + 'issue_id': issue_id, + 'issue_title': issue_title + } + + self.items.append(item) + + # Check if there are more items to fetch + if not data['data']['repository']['projectsV2']['nodes'][0]['items']['pageInfo']['hasNextPage']: + break + + # Update the cursor to the last item's cursor for the next fetch + variables['cursor'] = data['data']['repository']['projectsV2']['nodes'][0]['items']['pageInfo']['endCursor'] + else: + break + + def write_state_to_file(self, delete: bool = False): + state = { + "title": self.title, + "id": self.id, + "number": self.number, + "items": self.items, + "status_field": self.status_field + } + + curr_state_projects = StateFile.data.get("projects", None) + if curr_state_projects is not None: + for i, project in enumerate(curr_state_projects): + if project['id'] == self.id: + if delete: + del StateFile.data['projects'][i] + break + else: + StateFile.data['projects'][i] = state + break + else: + StateFile.data['projects'].append((state)) + else: + StateFile.data['projects'] = [state] + + + with open("tools/pjstate.yml", 'w') as f: + yaml.safe_dump(StateFile.data, f) + +# Custom representer for Option +def option_representer(dumper, data): + return dumper.represent_mapping('!Option', { + 'id': data.id, + 'name': data.name + }) + +# Custom constructor for Option +def option_constructor(loader, node): + values = loader.construct_mapping(node) + return Option(values['id'], values['name']) + +# Custom representer for Field +def field_representer(dumper, data): + return dumper.represent_mapping('!Field', { + 'id': data.id, + 'name': data.name, + 'options': data.options + }) + +# Custom constructor for Field +def field_constructor(loader, node): + values = loader.construct_mapping(node) + return Field(values['id'], values['name'], values['options']) + +# Register the custom representers and constructors with SafeDumper +yaml.add_representer(Option, option_representer, Dumper=yaml.SafeDumper) +yaml.add_constructor('!Option', option_constructor, Loader=yaml.SafeLoader) +yaml.add_representer(Field, field_representer, Dumper=yaml.SafeDumper) +yaml.add_constructor('!Field', field_constructor, Loader=yaml.SafeLoader) \ No newline at end of file diff --git a/tools/libgithub/repository.py b/tools/libgithub/repository.py new file mode 100644 index 00000000000..0edc3d8a926 --- /dev/null +++ b/tools/libgithub/repository.py @@ -0,0 +1,41 @@ +import sys + +from .graphql import GraphQLClient +from typing import ClassVar +from logger import LOG + +class OwnerInfo: + id: ClassVar[str] + name: ClassVar[str] + +class RepoInfo: + id: ClassVar[str] + name: ClassVar[str] + owner: ClassVar[OwnerInfo] + + @classmethod + def set_ids(cls): + LOG.debug(f'Fetching repo ID for {cls.name}') + + query = ''' + query ($owner: String!, $repo: String!) { + repository(owner: $owner, name: $repo) { + owner { + id + } + id + } + } + ''' + variables = { + "owner": cls.owner.name, + "repo": cls.name + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + cls.id = data['data']['repository']['id'] + cls.owner.id = data['data']['repository']['owner']['id'] + else: + LOG.error(f"Failed to fetch repo ID! Make sure {cls.owner.name}/{cls.name} exists and isn't private.") + sys.exit(1) \ No newline at end of file diff --git a/tools/libgithub/state.py b/tools/libgithub/state.py new file mode 100644 index 00000000000..87e0459a91c --- /dev/null +++ b/tools/libgithub/state.py @@ -0,0 +1,9 @@ +import yaml, pathlib + +class StateFile: + data = None + + @classmethod + def load(self, file_name: pathlib.Path): + with open(file_name, 'r') as f: + self.data = yaml.safe_load(f) \ No newline at end of file diff --git a/tools/libgithub/util.py b/tools/libgithub/util.py new file mode 100644 index 00000000000..0d2845624c9 --- /dev/null +++ b/tools/libgithub/util.py @@ -0,0 +1,86 @@ +import random, os +from typing import List, Tuple +from logger import LOG + +def generate_random_rgb_hex() -> str: + return ''.join([random.choice('0123456789ABCDEF') for _ in range(6)]) + +def get_translation_units(data) -> list[Tuple[str, List[str], str]]: + dirs = [{'path': dir_data['path'], 'sub_labels': dir_data.get('sub_labels', [])} for dir_data in data.get('dirs', [])] + not_dirs = [{'path': dir_data['path'], 'sub_labels': dir_data.get('sub_labels', [])} for dir_data in data.get('notDirs', [])] + files = [{'path': file_data['path'], 'sub_labels': file_data.get('sub_labels', [])} for file_data in data.get('files', [])] + not_files = [{'path': file_data['path'], 'sub_labels': file_data.get('sub_labels', [])} for file_data in data.get('notFiles', [])] + + ignore_files = [ + "ctx.c", + "unknown_translation_unit.cpp", + "unknown_translation_unit_bss.cpp", + ] + [file['path'] for file in not_files] + + ignore_dirs = [ + "build", + "tools", + "expected" + ] + [directory['path'] for directory in not_dirs] + + tus = [] + + LOG.debug('Adding include files directly to tu list') + for file in files: + if file['path'] not in ignore_files and file['path'].endswith((".c", ".cpp")): + tus.append((file['path'].split("/")[-1], file['sub_labels'], file['path'])) # Use sub_labels from file and include file path + LOG.debug(f'TU name: {file["path"]}') + + directories_to_walk = dirs + + LOG.debug('Adding files from include dirs directly to tu list') + for directory in directories_to_walk: + for root, _, files in os.walk(directory['path']): + if any(ignore_dir in root for ignore_dir in ignore_dirs): + continue + + for file in files: + if file not in ignore_files and file.endswith((".c", ".cpp")): + full_file_path = os.path.join(root, file) + tus.append((file, directory['sub_labels'], full_file_path)) # Use sub_labels from directory and include file path + + return tus + +def get_sub_labels(data) -> list[str]: + dirs = [{'path': dir_data['path'], 'sub_labels': dir_data.get('sub_labels', [])} for dir_data in data.get('dirs', [])] + not_dirs = [{'path': dir_data['path'], 'sub_labels': dir_data.get('sub_labels', [])} for dir_data in data.get('notDirs', [])] + files = [{'path': file_data['path'], 'sub_labels': file_data.get('sub_labels', [])} for file_data in data.get('files', [])] + not_files = [{'path': file_data['path'], 'sub_labels': file_data.get('sub_labels', [])} for file_data in data.get('notFiles', [])] + + ignore_files = [ + "ctx.c", + "unknown_translation_unit.cpp", + "unknown_translation_unit_bss.cpp", + ] + [file['path'] for file in not_files] + + ignore_dirs = [ + "build", + "tools", + "expected" + ] + [directory['path'] for directory in not_dirs] + + sub_labels = [] + + for file in files: + if file['path'] not in ignore_files and file['path'].endswith((".c", ".cpp")): + sub_labels.append(file['sub_labels']) + + for directory in dirs: + for root, _, files in os.walk(directory['path']): + if any(ignore_dir in root for ignore_dir in ignore_dirs): + continue + + for file in files: + if file not in ignore_files and file.endswith((".c", ".cpp")): + sub_labels.append(directory['sub_labels']) + + sub_labels = [item for sublist in sub_labels for item in sublist] + + # Convert the list of strings to a set + sub_labels = set(sub_labels) + return sub_labels \ No newline at end of file diff --git a/tools/libgithub/view.py b/tools/libgithub/view.py new file mode 100644 index 00000000000..f01abe8bdeb --- /dev/null +++ b/tools/libgithub/view.py @@ -0,0 +1,51 @@ +# This is mostly useless until Github extends their API to allow for view creation. + +from .graphql import GraphQLClient +from dataclasses import dataclass +from logger import LOG + +@dataclass +class View: + def set_layoutout(self, layout: str): + self.layout = layout + + # Doesn't actually work (yet) + def check_and_create(self): + LOG.debug(f'Checking if view {self.name} exists') + query = ''' + query ($projectNumber: String!) { + node(id: $projectNumber) { + ... on ProjectV2 { + views { + nodes { + name + number + } + } + } + } + } + ''' + + variables = { + "projectNumber": self.number + } + + data = GraphQLClient.get_instance().make_request(query, variables) + if data: + views = data['data']['node']['views']['nodes'] + LOG.info(f'Views: {views}') + + for view in views: + if view['name'] == self.name: + LOG.info(f'View {self.name} exists') + return + + LOG.info(f'View {self.name} does not exist, creating') + self.create() + else: + LOG.warning(f'No views found for project {self.number}') + + # Waiting on Github to update their API + def create(self): + pass \ No newline at end of file diff --git a/tools/logger.py b/tools/logger.py new file mode 100644 index 00000000000..4a9eead242f --- /dev/null +++ b/tools/logger.py @@ -0,0 +1,21 @@ +try: + import logging + import sys + + from rich.logging import RichHandler + from rich.console import Console +except ImportError as e: + print(f"Failed to import module in {__file__}: {e}") + sys.exit(1) + +CONSOLE = Console() + +logging.basicConfig( + level="NOTSET", + format="%(message)s", + datefmt="[%X]", + handlers=[RichHandler(console=CONSOLE, rich_tracebacks=True)], +) + +LOG = logging.getLogger("rich") +LOG.setLevel(logging.INFO) \ No newline at end of file diff --git a/tools/pjstate.yml b/tools/pjstate.yml new file mode 100644 index 00000000000..bf6401b7947 --- /dev/null +++ b/tools/pjstate.yml @@ -0,0 +1,13005 @@ +issues: +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/GCN/EXI2_DDH_GCN/main.c + id: I_kwDOEVxG285tz9b- + label_ids: + - LA_kwDOEVxG288AAAABWzdECg + - LA_kwDOEVxG288AAAABWzdEPA + title: main.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/GCN/EXI2_GDEV_GCN/main.c + id: I_kwDOEVxG285tz9cE + label_ids: + - LA_kwDOEVxG288AAAABWzdD7g + - LA_kwDOEVxG288AAAABWzdEPA + title: main.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/mutex_TRK.c + id: I_kwDOEVxG285tz9cR + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: mutex_TRK.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/msg.c + id: I_kwDOEVxG285tz9cj + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: msg.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/msgbuf.c + id: I_kwDOEVxG285tz9c3 + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: msgbuf.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/nubinit.c + id: I_kwDOEVxG285tz9dD + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: nubinit.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/notify.c + id: I_kwDOEVxG285tz9dL + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: notify.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/dispatch.c + id: I_kwDOEVxG285tz9dY + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: dispatch.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/serpoll.c + id: I_kwDOEVxG285tz9de + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: serpoll.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/mem_TRK.c + id: I_kwDOEVxG285tz9dq + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: mem_TRK.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/main_TRK.c + id: I_kwDOEVxG285tz9d4 + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: main_TRK.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/support.c + id: I_kwDOEVxG285tz9eB + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: support.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/nubevent.c + id: I_kwDOEVxG285tz9eO + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: nubevent.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/mainloop.c + id: I_kwDOEVxG285tz9eZ + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: mainloop.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Portable/msghndlr.c + id: I_kwDOEVxG285tz9ee + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: msghndlr.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/MetroTRK/Export/mslsupp.c + id: I_kwDOEVxG285tz9ep + label_ids: + - LA_kwDOEVxG288AAAABWzdD9A + - LA_kwDOEVxG288AAAABWzdEPA + title: mslsupp.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/ppc/Export/targsupp.c + id: I_kwDOEVxG285tz9e6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEMA + - LA_kwDOEVxG288AAAABWzdEPA + title: targsupp.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/ppc/Generic/flush_cache.c + id: I_kwDOEVxG285tz9fJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEMA + - LA_kwDOEVxG288AAAABWzdEPA + title: flush_cache.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/ppc/Generic/mpc_7xx_603e.c + id: I_kwDOEVxG285tz9fb + label_ids: + - LA_kwDOEVxG288AAAABWzdEMA + - LA_kwDOEVxG288AAAABWzdEPA + title: mpc_7xx_603e.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/ppc/Generic/targimpl.c + id: I_kwDOEVxG285tz9fl + label_ids: + - LA_kwDOEVxG288AAAABWzdEMA + - LA_kwDOEVxG288AAAABWzdEPA + title: targimpl.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/Os/dolphin/usr_put.c + id: I_kwDOEVxG285tz9qg + label_ids: + - LA_kwDOEVxG288AAAABWzdD_g + - LA_kwDOEVxG288AAAABWzdEPA + title: usr_put.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/Os/dolphin/dolphin_trk.c + id: I_kwDOEVxG285tz9qr + label_ids: + - LA_kwDOEVxG288AAAABWzdD_g + - LA_kwDOEVxG288AAAABWzdEPA + title: dolphin_trk.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/Os/dolphin/dolphin_trk_glue.c + id: I_kwDOEVxG285tz9q4 + label_ids: + - LA_kwDOEVxG288AAAABWzdD_g + - LA_kwDOEVxG288AAAABWzdEPA + title: dolphin_trk_glue.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/Os/dolphin/UDP_Stubs.c + id: I_kwDOEVxG285tz9rF + label_ids: + - LA_kwDOEVxG288AAAABWzdD_g + - LA_kwDOEVxG288AAAABWzdEPA + title: UDP_Stubs.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/Os/dolphin/target_options.c + id: I_kwDOEVxG285tz9rS + label_ids: + - LA_kwDOEVxG288AAAABWzdD_g + - LA_kwDOEVxG288AAAABWzdEPA + title: target_options.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/Os/dolphin/targcont.c + id: I_kwDOEVxG285tz9rf + label_ids: + - LA_kwDOEVxG288AAAABWzdD_g + - LA_kwDOEVxG288AAAABWzdEPA + title: targcont.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/utils/common/MWTrace.c + id: I_kwDOEVxG285tz9rt + label_ids: + - LA_kwDOEVxG288AAAABWzdEIw + - LA_kwDOEVxG288AAAABWzdEPA + title: MWTrace.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/utils/common/CircleBuffer.c + id: I_kwDOEVxG285tz9r- + label_ids: + - LA_kwDOEVxG288AAAABWzdEIw + - LA_kwDOEVxG288AAAABWzdEPA + title: CircleBuffer.c +- body: null + file_path: libs/TRK_MINNOW_DOLPHIN/utils/gc/MWCriticalSection_gc.c + id: I_kwDOEVxG285tz9sL + label_ids: + - LA_kwDOEVxG288AAAABWzdEIw + - LA_kwDOEVxG288AAAABWzdEPA + title: MWCriticalSection_gc.c +- body: null + file_path: src/d/a/d_a_alink.cpp + id: I_kwDOEVxG285tz9sY + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_alink.cpp +- body: null + file_path: src/d/a/d_a_horse_static.cpp + id: I_kwDOEVxG285tz9sg + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_horse_static.cpp +- body: null + file_path: src/d/a/d_a_item_static.cpp + id: I_kwDOEVxG285tz9st + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_item_static.cpp +- body: null + file_path: src/d/a/d_a_itembase.cpp + id: I_kwDOEVxG285tz9s1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_itembase.cpp +- body: null + file_path: src/d/a/d_a_itembase_static.cpp + id: I_kwDOEVxG285tz9s9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_itembase_static.cpp +- body: null + file_path: src/d/a/d_a_player.cpp + id: I_kwDOEVxG285tz9tF + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_player.cpp +- body: null + file_path: src/d/a/d_a_no_chg_room.cpp + id: I_kwDOEVxG285tz9tS + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_no_chg_room.cpp +- body: null + file_path: src/d/a/d_a_shop_item_static.cpp + id: I_kwDOEVxG285tz9tY + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_shop_item_static.cpp +- body: null + file_path: src/d/a/d_a_npc.cpp + id: I_kwDOEVxG285tz9to + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc.cpp +- body: null + file_path: src/d/a/d_a_npc_cd.cpp + id: I_kwDOEVxG285tz9t1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_cd.cpp +- body: null + file_path: src/d/a/d_a_npc_cd2.cpp + id: I_kwDOEVxG285tz9uB + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_cd2.cpp +- body: null + file_path: src/d/a/d_a_obj.cpp + id: I_kwDOEVxG285tz94q + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj.cpp +- body: null + file_path: src/d/a/d_a_obj_item.cpp + id: I_kwDOEVxG285tz942 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_item.cpp +- body: null + file_path: src/d/a/d_a_obj_ss_base.cpp + id: I_kwDOEVxG285tz95D + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ss_base.cpp +- body: null + file_path: rel/d/a/d_a_alldie/d_a_alldie.cpp + id: I_kwDOEVxG285tz95Q + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_alldie.cpp +- body: null + file_path: rel/d/a/d_a_andsw/d_a_andsw.cpp + id: I_kwDOEVxG285tz95b + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_andsw.cpp +- body: null + file_path: rel/d/a/d_a_andsw2/d_a_andsw2.cpp + id: I_kwDOEVxG285tz95l + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_andsw2.cpp +- body: null + file_path: rel/d/a/d_a_arrow/d_a_arrow.cpp + id: I_kwDOEVxG285tz95z + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_arrow.cpp +- body: null + file_path: rel/d/a/d_a_balloon_2D/d_a_balloon_2D.cpp + id: I_kwDOEVxG285tz96D + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_balloon_2D.cpp +- body: null + file_path: rel/d/a/d_a_bd/d_a_bd.cpp + id: I_kwDOEVxG285tz96O + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_bd.cpp +- body: null + file_path: rel/d/a/d_a_bg/d_a_bg.cpp + id: I_kwDOEVxG285tz96X + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_bg.cpp +- body: null + file_path: rel/d/a/d_a_bg_obj/d_a_bg_obj.cpp + id: I_kwDOEVxG285tz96h + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_bg_obj.cpp +- body: null + file_path: rel/d/a/d_a_boomerang/d_a_boomerang.cpp + id: I_kwDOEVxG285tz96v + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_boomerang.cpp +- body: null + file_path: rel/d/a/d_a_bullet/d_a_bullet.cpp + id: I_kwDOEVxG285tz965 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_bullet.cpp +- body: null + file_path: rel/d/a/d_a_canoe/d_a_canoe.cpp + id: I_kwDOEVxG285tz97D + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_canoe.cpp +- body: null + file_path: rel/d/a/d_a_coach_2D/d_a_coach_2D.cpp + id: I_kwDOEVxG285tz97S + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_coach_2D.cpp +- body: null + file_path: rel/d/a/d_a_coach_fire/d_a_coach_fire.cpp + id: I_kwDOEVxG285tz97c + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_coach_fire.cpp +- body: null + file_path: rel/d/a/d_a_cow/d_a_cow.cpp + id: I_kwDOEVxG285tz97q + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_cow.cpp +- body: null + file_path: rel/d/a/d_a_crod/d_a_crod.cpp + id: I_kwDOEVxG285tz97y + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_crod.cpp +- body: null + file_path: rel/d/a/d_a_cstaF/d_a_cstaF.cpp + id: I_kwDOEVxG285tz979 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_cstaF.cpp +- body: null + file_path: rel/d/a/d_a_cstatue/d_a_cstatue.cpp + id: I_kwDOEVxG285tz98J + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_cstatue.cpp +- body: null + file_path: rel/d/a/d_a_demo00/d_a_demo00.cpp + id: I_kwDOEVxG285tz-Gp + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_demo00.cpp +- body: null + file_path: rel/d/a/d_a_demo_item/d_a_demo_item.cpp + id: I_kwDOEVxG285tz-G1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_demo_item.cpp +- body: null + file_path: rel/d/a/d_a_disappear/d_a_disappear.cpp + id: I_kwDOEVxG285tz-HJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_disappear.cpp +- body: null + file_path: rel/d/a/d_a_dmidna/d_a_dmidna.cpp + id: I_kwDOEVxG285tz-HZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_dmidna.cpp +- body: null + file_path: rel/d/a/d_a_do/d_a_do.cpp + id: I_kwDOEVxG285tz-Hj + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_do.cpp +- body: null + file_path: rel/d/a/d_a_dshutter/d_a_dshutter.cpp + id: I_kwDOEVxG285tz-Ht + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_dshutter.cpp +- body: null + file_path: rel/d/a/d_a_econt/d_a_econt.cpp + id: I_kwDOEVxG285tz-H1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_econt.cpp +- body: null + file_path: rel/d/a/d_a_ep/d_a_ep.cpp + id: I_kwDOEVxG285tz-H_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_ep.cpp +- body: null + file_path: rel/d/a/d_a_formation_mng/d_a_formation_mng.cpp + id: I_kwDOEVxG285tz-IL + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_formation_mng.cpp +- body: null + file_path: rel/d/a/d_a_fr/d_a_fr.cpp + id: I_kwDOEVxG285tz-IV + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_fr.cpp +- body: null + file_path: rel/d/a/d_a_grass/d_a_grass.cpp + id: I_kwDOEVxG285tz-Ij + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_grass.cpp +- body: null + file_path: rel/d/a/d_a_guard_mng/d_a_guard_mng.cpp + id: I_kwDOEVxG285tz-Iq + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_guard_mng.cpp +- body: null + file_path: rel/d/a/d_a_hitobj/d_a_hitobj.cpp + id: I_kwDOEVxG285tz-Ix + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_hitobj.cpp +- body: null + file_path: rel/d/a/d_a_horse/d_a_horse.cpp + id: I_kwDOEVxG285tz-I4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_horse.cpp +- body: null + file_path: rel/d/a/d_a_hozelda/d_a_hozelda.cpp + id: I_kwDOEVxG285tz-JB + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_hozelda.cpp +- body: null + file_path: rel/d/a/d_a_izumi_gate/d_a_izumi_gate.cpp + id: I_kwDOEVxG285tz-JJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_izumi_gate.cpp +- body: null + file_path: rel/d/a/d_a_kago/d_a_kago.cpp + id: I_kwDOEVxG285tz-Jd + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kago.cpp +- body: null + file_path: rel/d/a/d_a_L7demo_dr/d_a_L7demo_dr.cpp + id: I_kwDOEVxG285tz-Jp + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_L7demo_dr.cpp +- body: null + file_path: rel/d/a/d_a_L7low_dr/d_a_L7low_dr.cpp + id: I_kwDOEVxG285tz-J2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_L7low_dr.cpp +- body: null + file_path: rel/d/a/d_a_L7op_demo_dr/d_a_L7op_demo_dr.cpp + id: I_kwDOEVxG285tz-KA + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_L7op_demo_dr.cpp +- body: null + file_path: rel/d/a/d_a_mant/d_a_mant.cpp + id: I_kwDOEVxG285tz-W1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_mant.cpp +- body: null + file_path: rel/d/a/d_a_mg_fish/d_a_mg_fish.cpp + id: I_kwDOEVxG285tz-XL + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_mg_fish.cpp +- body: null + file_path: rel/d/a/d_a_mg_fshop/d_a_mg_fshop.cpp + id: I_kwDOEVxG285tz-XY + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_mg_fshop.cpp +- body: null + file_path: rel/d/a/d_a_mg_rod/d_a_mg_rod.cpp + id: I_kwDOEVxG285tz-Xk + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_mg_rod.cpp +- body: null + file_path: rel/d/a/d_a_midna/d_a_midna.cpp + id: I_kwDOEVxG285tz-Xt + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_midna.cpp +- body: null + file_path: rel/d/a/d_a_mirror/d_a_mirror.cpp + id: I_kwDOEVxG285tz-X9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_mirror.cpp +- body: null + file_path: rel/d/a/d_a_movie_player/d_a_movie_player.cpp + id: I_kwDOEVxG285tz-YH + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_movie_player.cpp +- body: null + file_path: rel/d/a/d_a_myna/d_a_myna.cpp + id: I_kwDOEVxG285tz-YL + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_myna.cpp +- body: null + file_path: rel/d/a/d_a_nbomb/d_a_nbomb.cpp + id: I_kwDOEVxG285tz-YV + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_nbomb.cpp +- body: null + file_path: rel/d/a/d_a_ni/d_a_ni.cpp + id: I_kwDOEVxG285tz-Yb + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_ni.cpp +- body: null + file_path: rel/d/a/d_a_passer_mng/d_a_passer_mng.cpp + id: I_kwDOEVxG285tz-Yl + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_passer_mng.cpp +- body: null + file_path: rel/d/a/d_a_path_line/d_a_path_line.cpp + id: I_kwDOEVxG285tz-Y2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_path_line.cpp +- body: null + file_path: rel/d/a/d_a_peru/d_a_peru.cpp + id: I_kwDOEVxG285tz-Y8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_peru.cpp +- body: null + file_path: rel/d/a/d_a_ppolamp/d_a_ppolamp.cpp + id: I_kwDOEVxG285tz-ZJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_ppolamp.cpp +- body: null + file_path: rel/d/a/d_a_scene_exit/d_a_scene_exit.cpp + id: I_kwDOEVxG285tz-ZU + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_scene_exit.cpp +- body: null + file_path: rel/d/a/d_a_scene_exit2/d_a_scene_exit2.cpp + id: I_kwDOEVxG285tz-Zf + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_scene_exit2.cpp +- body: null + file_path: rel/d/a/d_a_set_bgobj/d_a_set_bgobj.cpp + id: I_kwDOEVxG285tz-Zq + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_set_bgobj.cpp +- body: null + file_path: rel/d/a/d_a_shop_item/d_a_shop_item.cpp + id: I_kwDOEVxG285tz-Z4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_shop_item.cpp +- body: null + file_path: rel/d/a/d_a_skip_2D/d_a_skip_2D.cpp + id: I_kwDOEVxG285tz-aB + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_skip_2D.cpp +- body: null + file_path: rel/d/a/d_a_spinner/d_a_spinner.cpp + id: I_kwDOEVxG285tz-aQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_spinner.cpp +- body: null + file_path: rel/d/a/d_a_sq/d_a_sq.cpp + id: I_kwDOEVxG285tz-lS + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_sq.cpp +- body: null + file_path: rel/d/a/d_a_startAndGoal/d_a_startAndGoal.cpp + id: I_kwDOEVxG285tz-ld + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_startAndGoal.cpp +- body: null + file_path: rel/d/a/d_a_suspend/d_a_suspend.cpp + id: I_kwDOEVxG285tz-lo + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_suspend.cpp +- body: null + file_path: rel/d/a/d_a_swBall/d_a_swBall.cpp + id: I_kwDOEVxG285tz-lx + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_swBall.cpp +- body: null + file_path: rel/d/a/d_a_swc00/d_a_swc00.cpp + id: I_kwDOEVxG285tz-mB + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_swc00.cpp +- body: null + file_path: rel/d/a/d_a_swhit0/d_a_swhit0.cpp + id: I_kwDOEVxG285tz-mL + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_swhit0.cpp +- body: null + file_path: rel/d/a/d_a_swLBall/d_a_swLBall.cpp + id: I_kwDOEVxG285tz-mX + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_swLBall.cpp +- body: null + file_path: rel/d/a/d_a_swTime/d_a_swTime.cpp + id: I_kwDOEVxG285tz-mg + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_swTime.cpp +- body: null + file_path: rel/d/a/d_a_talk/d_a_talk.cpp + id: I_kwDOEVxG285tz-mx + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_talk.cpp +- body: null + file_path: rel/d/a/d_a_tbox/d_a_tbox.cpp + id: I_kwDOEVxG285tz-nA + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tbox.cpp +- body: null + file_path: rel/d/a/d_a_tbox2/d_a_tbox2.cpp + id: I_kwDOEVxG285tz-nM + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tbox2.cpp +- body: null + file_path: rel/d/a/d_a_tboxSw/d_a_tboxSw.cpp + id: I_kwDOEVxG285tz-nU + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tboxSw.cpp +- body: null + file_path: rel/d/a/d_a_title/d_a_title_nonmatching.cpp + id: I_kwDOEVxG285tz-nf + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_title_nonmatching.cpp +- body: null + file_path: rel/d/a/d_a_title/d_a_title.cpp + id: I_kwDOEVxG285tz-np + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_title.cpp +- body: null + file_path: rel/d/a/d_a_vrbox/d_a_vrbox.cpp + id: I_kwDOEVxG285tz-n1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_vrbox.cpp +- body: null + file_path: rel/d/a/d_a_vrbox2/d_a_vrbox2.cpp + id: I_kwDOEVxG285tz-oB + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_vrbox2.cpp +- body: null + file_path: rel/d/a/d_a_warp_bug/d_a_warp_bug.cpp + id: I_kwDOEVxG285tz-oG + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_warp_bug.cpp +- body: null + file_path: rel/d/a/d_a_ykgr/d_a_ykgr.cpp + id: I_kwDOEVxG285tz-oP + label_ids: + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_ykgr.cpp +- body: null + file_path: rel/d/a/door/d_a_door_mbossL1/d_a_door_mbossL1.cpp + id: I_kwDOEVxG285tz-oU + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_mbossL1.cpp +- body: null + file_path: rel/d/a/door/d_a_door_bossL1/d_a_door_bossL1.cpp + id: I_kwDOEVxG285tz-of + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_bossL1.cpp +- body: null + file_path: rel/d/a/door/d_a_door_shutter/d_a_door_shutter.cpp + id: I_kwDOEVxG285tz-zX + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_shutter.cpp +- body: null + file_path: rel/d/a/door/d_a_door_spiral/d_a_door_spiral.cpp + id: I_kwDOEVxG285tz-zy + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_spiral.cpp +- body: null + file_path: rel/d/a/door/d_a_door_bossL5/d_a_door_bossL5.cpp + id: I_kwDOEVxG285tz-0A + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_bossL5.cpp +- body: null + file_path: rel/d/a/door/d_a_door_push/d_a_door_push.cpp + id: I_kwDOEVxG285tz-0F + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_push.cpp +- body: null + file_path: rel/d/a/door/d_a_door_knob00/d_a_door_knob00.cpp + id: I_kwDOEVxG285tz-0S + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_knob00.cpp +- body: null + file_path: rel/d/a/door/d_a_door_dbdoor00/d_a_door_dbdoor00.cpp + id: I_kwDOEVxG285tz-0e + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_dbdoor00.cpp +- body: null + file_path: rel/d/a/door/d_a_door_boss/d_a_door_boss.cpp + id: I_kwDOEVxG285tz-0n + label_ids: + - LA_kwDOEVxG288AAAABWzdEgQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_door_boss.cpp +- body: null + file_path: rel/d/a/e/d_a_e_yg/d_a_e_yg.cpp + id: I_kwDOEVxG285tz-00 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_yg.cpp +- body: null + file_path: rel/d/a/e/d_a_e_kr/d_a_e_kr.cpp + id: I_kwDOEVxG285tz-1A + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_kr.cpp +- body: null + file_path: rel/d/a/e/d_a_e_pm/d_a_e_pm.cpp + id: I_kwDOEVxG285tz-1I + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_pm.cpp +- body: null + file_path: rel/d/a/e/d_a_e_yk/d_a_e_yk.cpp + id: I_kwDOEVxG285tz-1m + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_yk.cpp +- body: null + file_path: rel/d/a/e/d_a_e_gm/d_a_e_gm.cpp + id: I_kwDOEVxG285tz-1u + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_gm.cpp +- body: null + file_path: rel/d/a/e/d_a_e_s1/d_a_e_s1.cpp + id: I_kwDOEVxG285tz-12 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_s1.cpp +- body: null + file_path: rel/d/a/e/d_a_e_db_leaf/d_a_e_db_leaf.cpp + id: I_kwDOEVxG285tz-2A + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_db_leaf.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ww/d_a_e_ww.cpp + id: I_kwDOEVxG285tz-2K + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ww.cpp +- body: null + file_path: rel/d/a/e/d_a_e_rd/d_a_e_rd.cpp + id: I_kwDOEVxG285tz-2a + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_rd.cpp +- body: null + file_path: rel/d/a/e/d_a_e_df/d_a_e_df.cpp + id: I_kwDOEVxG285tz-2l + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_df.cpp +- body: null + file_path: rel/d/a/e/d_a_e_tk/d_a_e_tk.cpp + id: I_kwDOEVxG285tz-2x + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_tk.cpp +- body: null + file_path: rel/d/a/e/d_a_e_oc/d_a_e_oc.cpp + id: I_kwDOEVxG285tz-29 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_oc.cpp +- body: null + file_path: rel/d/a/e/d_a_e_hzelda/d_a_e_hzelda.cpp + id: I_kwDOEVxG285tz-3M + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_hzelda.cpp +- body: null + file_path: rel/d/a/e/d_a_e_fk/d_a_e_fk.cpp + id: I_kwDOEVxG285tz_CY + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_fk.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ba/d_a_e_ba.cpp + id: I_kwDOEVxG285tz_Cm + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ba.cpp +- body: null + file_path: rel/d/a/e/d_a_e_yd/d_a_e_yd.cpp + id: I_kwDOEVxG285tz_C5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_yd.cpp +- body: null + file_path: rel/d/a/e/d_a_e_mk/d_a_e_mk.cpp + id: I_kwDOEVxG285tz_DC + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_mk.cpp +- body: null + file_path: rel/d/a/e/d_a_e_hb_leaf/d_a_e_hb_leaf.cpp + id: I_kwDOEVxG285tz_DO + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_hb_leaf.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ym_tag/d_a_e_ym_tag.cpp + id: I_kwDOEVxG285tz_Dd + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ym_tag.cpp +- body: null + file_path: rel/d/a/e/d_a_e_sw/d_a_e_sw.cpp + id: I_kwDOEVxG285tz_Ds + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_sw.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ai/d_a_e_ai.cpp + id: I_kwDOEVxG285tz_D4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ai.cpp +- body: null + file_path: rel/d/a/e/d_a_e_fs/d_a_e_fs.cpp + id: I_kwDOEVxG285tz_EE + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_fs.cpp +- body: null + file_path: rel/d/a/e/d_a_e_wb/d_a_e_wb.cpp + id: I_kwDOEVxG285tz_ES + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_wb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_nest/d_a_e_nest.cpp + id: I_kwDOEVxG285t0ECu + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_nest.cpp +- body: null + file_path: rel/d/a/e/d_a_e_arrow/d_a_e_arrow.cpp + id: I_kwDOEVxG285t0EC4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_arrow.cpp +- body: null + file_path: rel/d/a/e/d_a_e_st_line/d_a_e_st_line.cpp + id: I_kwDOEVxG285t0EDL + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_st_line.cpp +- body: null + file_path: rel/d/a/e/d_a_e_cr/d_a_e_cr.cpp + id: I_kwDOEVxG285t0EDY + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_cr.cpp +- body: null + file_path: rel/d/a/e/d_a_e_vt/d_a_e_vt.cpp + id: I_kwDOEVxG285t0EDs + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_vt.cpp +- body: null + file_path: rel/d/a/e/d_a_e_zs/d_a_e_zs.cpp + id: I_kwDOEVxG285t0ED7 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_zs.cpp +- body: null + file_path: rel/d/a/e/d_a_e_yh/d_a_e_yh.cpp + id: I_kwDOEVxG285t0EER + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_yh.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ph/d_a_e_ph.cpp + id: I_kwDOEVxG285t0EEk + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ph.cpp +- body: null + file_path: rel/d/a/e/d_a_e_fz/d_a_e_fz.cpp + id: I_kwDOEVxG285t0EE0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_fz.cpp +- body: null + file_path: rel/d/a/e/d_a_e_zm/d_a_e_zm.cpp + id: I_kwDOEVxG285t0EFA + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_zm.cpp +- body: null + file_path: rel/d/a/e/d_a_e_dt/d_a_e_dt.cpp + id: I_kwDOEVxG285t0EFO + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_dt.cpp +- body: null + file_path: rel/d/a/e/d_a_e_mb/d_a_e_mb.cpp + id: I_kwDOEVxG285t0EFe + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_mb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_bu/d_a_e_bu.cpp + id: I_kwDOEVxG285t0EFq + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_bu.cpp +- body: null + file_path: rel/d/a/e/d_a_e_mm/d_a_e_mm.cpp + id: I_kwDOEVxG285t0EF0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_mm.cpp +- body: null + file_path: rel/d/a/e/d_a_e_gb/d_a_e_gb.cpp + id: I_kwDOEVxG285t0EGA + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_gb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ot/d_a_e_ot.cpp + id: I_kwDOEVxG285t0EGJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ot.cpp +- body: null + file_path: rel/d/a/e/d_a_e_md/d_a_e_md.cpp + id: I_kwDOEVxG285t0EGV + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_md.cpp +- body: null + file_path: rel/d/a/e/d_a_e_is/d_a_e_is.cpp + id: I_kwDOEVxG285t0EGg + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_is.cpp +- body: null + file_path: rel/d/a/e/d_a_e_st/d_a_e_st.cpp + id: I_kwDOEVxG285t0EGy + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_st.cpp +- body: null + file_path: rel/d/a/e/d_a_e_sb/d_a_e_sb.cpp + id: I_kwDOEVxG285t0EHC + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_sb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_pz/d_a_e_pz.cpp + id: I_kwDOEVxG285t0ESL + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_pz.cpp +- body: null + file_path: rel/d/a/e/d_a_e_kk/d_a_e_kk.cpp + id: I_kwDOEVxG285t0ESW + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_kk.cpp +- body: null + file_path: rel/d/a/e/d_a_e_hm/d_a_e_hm.cpp + id: I_kwDOEVxG285t0ESk + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_hm.cpp +- body: null + file_path: rel/d/a/e/d_a_e_th_ball/d_a_e_th_ball.cpp + id: I_kwDOEVxG285t0ES0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_th_ball.cpp +- body: null + file_path: rel/d/a/e/d_a_e_fb/d_a_e_fb.cpp + id: I_kwDOEVxG285t0ES8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_fb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_bug/d_a_e_bug.cpp + id: I_kwDOEVxG285t0ETF + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_bug.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ym/d_a_e_ym.cpp + id: I_kwDOEVxG285t0ETY + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ym.cpp +- body: null + file_path: rel/d/a/e/d_a_e_sm2/d_a_e_sm2.cpp + id: I_kwDOEVxG285t0ETk + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_sm2.cpp +- body: null + file_path: rel/d/a/e/d_a_e_gs/d_a_e_gs.cpp + id: I_kwDOEVxG285t0ETx + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_gs.cpp +- body: null + file_path: rel/d/a/e/d_a_e_sm/d_a_e_sm.cpp + id: I_kwDOEVxG285t0EUC + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_sm.cpp +- body: null + file_path: rel/d/a/e/d_a_e_hb/d_a_e_hb.cpp + id: I_kwDOEVxG285t0EUN + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_hb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_dn/d_a_e_dn.cpp + id: I_kwDOEVxG285t0EUd + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_dn.cpp +- body: null + file_path: rel/d/a/e/d_a_e_zh/d_a_e_zh.cpp + id: I_kwDOEVxG285t0EUw + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_zh.cpp +- body: null + file_path: rel/d/a/e/d_a_e_rb/d_a_e_rb.cpp + id: I_kwDOEVxG285t0EU8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_rb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_db/d_a_e_db.cpp + id: I_kwDOEVxG285t0EVI + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_db.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ge/d_a_e_ge.cpp + id: I_kwDOEVxG285t0EVP + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ge.cpp +- body: null + file_path: rel/d/a/e/d_a_e_po/d_a_e_po.cpp + id: I_kwDOEVxG285t0EVf + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_po.cpp +- body: null + file_path: rel/d/a/e/d_a_e_gob/d_a_e_gob.cpp + id: I_kwDOEVxG285t0EVx + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_gob.cpp +- body: null + file_path: rel/d/a/e/d_a_e_hp/d_a_e_hp.cpp + id: I_kwDOEVxG285t0EV9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_hp.cpp +- body: null + file_path: rel/d/a/e/d_a_e_bi/d_a_e_bi.cpp + id: I_kwDOEVxG285t0EWJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_bi.cpp +- body: null + file_path: rel/d/a/e/d_a_e_hz/d_a_e_hz.cpp + id: I_kwDOEVxG285t0Eg4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_hz.cpp +- body: null + file_path: rel/d/a/e/d_a_e_tk_ball/d_a_e_tk_ball.cpp + id: I_kwDOEVxG285t0Ehc + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_tk_ball.cpp +- body: null + file_path: rel/d/a/e/d_a_e_sg/d_a_e_sg.cpp + id: I_kwDOEVxG285t0Eh1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_sg.cpp +- body: null + file_path: rel/d/a/e/d_a_e_warpappear/d_a_e_warpappear.cpp + id: I_kwDOEVxG285t0EiL + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_warpappear.cpp +- body: null + file_path: rel/d/a/e/d_a_e_yd_leaf/d_a_e_yd_leaf.cpp + id: I_kwDOEVxG285t0EiX + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_yd_leaf.cpp +- body: null + file_path: rel/d/a/e/d_a_e_dk/d_a_e_dk.cpp + id: I_kwDOEVxG285t0Eil + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_dk.cpp +- body: null + file_path: rel/d/a/e/d_a_e_fm/d_a_e_fm.cpp + id: I_kwDOEVxG285t0Eiz + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_fm.cpp +- body: null + file_path: rel/d/a/e/d_a_e_kg/d_a_e_kg.cpp + id: I_kwDOEVxG285t0Ei5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_kg.cpp +- body: null + file_path: rel/d/a/e/d_a_e_rdb/d_a_e_rdb.cpp + id: I_kwDOEVxG285t0EjF + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_rdb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_tk2/d_a_e_tk2.cpp + id: I_kwDOEVxG285t0EjY + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_tk2.cpp +- body: null + file_path: rel/d/a/e/d_a_e_tt/d_a_e_tt.cpp + id: I_kwDOEVxG285t0Ejd + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_tt.cpp +- body: null + file_path: rel/d/a/e/d_a_e_gi/d_a_e_gi.cpp + id: I_kwDOEVxG285t0Ejx + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_gi.cpp +- body: null + file_path: rel/d/a/e/d_a_e_nz/d_a_e_nz.cpp + id: I_kwDOEVxG285t0Ej9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_nz.cpp +- body: null + file_path: rel/d/a/e/d_a_e_dd/d_a_e_dd.cpp + id: I_kwDOEVxG285t0EkI + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_dd.cpp +- body: null + file_path: rel/d/a/e/d_a_e_bg/d_a_e_bg.cpp + id: I_kwDOEVxG285t0EkT + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_bg.cpp +- body: null + file_path: rel/d/a/e/d_a_e_bee/d_a_e_bee.cpp + id: I_kwDOEVxG285t0Ekb + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_bee.cpp +- body: null + file_path: rel/d/a/e/d_a_e_mm_mt/d_a_e_mm_mt.cpp + id: I_kwDOEVxG285t0Eko + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_mm_mt.cpp +- body: null + file_path: rel/d/a/e/d_a_e_sf/d_a_e_sf.cpp + id: I_kwDOEVxG285t0Eky + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_sf.cpp +- body: null + file_path: rel/d/a/e/d_a_e_rdy/d_a_e_rdy.cpp + id: I_kwDOEVxG285t0Ek_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_rdy.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ymb/d_a_e_ymb.cpp + id: I_kwDOEVxG285t0ElM + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ymb.cpp +- body: null + file_path: rel/d/a/e/d_a_e_th/d_a_e_th.cpp + id: I_kwDOEVxG285t0EvX + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_th.cpp +- body: null + file_path: rel/d/a/e/d_a_e_bs/d_a_e_bs.cpp + id: I_kwDOEVxG285t0Evl + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_bs.cpp +- body: null + file_path: rel/d/a/e/d_a_e_bi_leaf/d_a_e_bi_leaf.cpp + id: I_kwDOEVxG285t0Evx + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_bi_leaf.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ms/d_a_e_ms.cpp + id: I_kwDOEVxG285t0Ev9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ms.cpp +- body: null + file_path: rel/d/a/e/d_a_e_mk_bo/d_a_e_mk_bo.cpp + id: I_kwDOEVxG285t0EwN + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_mk_bo.cpp +- body: null + file_path: rel/d/a/e/d_a_e_cr_egg/d_a_e_cr_egg.cpp + id: I_kwDOEVxG285t0EwV + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_cr_egg.cpp +- body: null + file_path: rel/d/a/e/d_a_e_sh/d_a_e_sh.cpp + id: I_kwDOEVxG285t0Ewi + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_sh.cpp +- body: null + file_path: rel/d/a/e/d_a_e_mf/d_a_e_mf.cpp + id: I_kwDOEVxG285t0Ewv + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_mf.cpp +- body: null + file_path: rel/d/a/e/d_a_e_yr/d_a_e_yr.cpp + id: I_kwDOEVxG285t0Ew- + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_yr.cpp +- body: null + file_path: rel/d/a/e/d_a_e_yc/d_a_e_yc.cpp + id: I_kwDOEVxG285t0ExL + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_yc.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ga/d_a_e_ga.cpp + id: I_kwDOEVxG285t0ExW + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ga.cpp +- body: null + file_path: rel/d/a/e/d_a_e_ws/d_a_e_ws.cpp + id: I_kwDOEVxG285t0Exk + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_ws.cpp +- body: null + file_path: rel/d/a/e/d_a_e_oct_bg/d_a_e_oct_bg.cpp + id: I_kwDOEVxG285t0Exy + label_ids: + - LA_kwDOEVxG288AAAABWzdEiQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_e_oct_bg.cpp +- body: null + file_path: rel/d/a/b/d_a_b_yo_ice/d_a_b_yo_ice.cpp + id: I_kwDOEVxG285t0Ex- + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_yo_ice.cpp +- body: null + file_path: rel/d/a/b/d_a_b_bq/d_a_b_bq.cpp + id: I_kwDOEVxG285t0EyQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_bq.cpp +- body: null + file_path: rel/d/a/b/d_a_b_ds/d_a_b_ds.cpp + id: I_kwDOEVxG285t0Eyf + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_ds.cpp +- body: null + file_path: rel/d/a/b/d_a_b_mgn/d_a_b_mgn.cpp + id: I_kwDOEVxG285t0Ey0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_mgn.cpp +- body: null + file_path: rel/d/a/b/d_a_b_tn/d_a_b_tn.cpp + id: I_kwDOEVxG285t0EzC + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_tn.cpp +- body: null + file_path: rel/d/a/b/d_a_b_gos/d_a_b_gos.cpp + id: I_kwDOEVxG285t0EzJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_gos.cpp +- body: null + file_path: rel/d/a/b/d_a_b_zant_mobile/d_a_b_zant_mobile.cpp + id: I_kwDOEVxG285t0EzR + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_zant_mobile.cpp +- body: null + file_path: rel/d/a/b/d_a_b_oh2/d_a_b_oh2.cpp + id: I_kwDOEVxG285t0E9s + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_oh2.cpp +- body: null + file_path: rel/d/a/b/d_a_b_dr/d_a_b_dr.cpp + id: I_kwDOEVxG285t0E96 + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_dr.cpp +- body: null + file_path: rel/d/a/b/d_a_b_yo/d_a_b_yo.cpp + id: I_kwDOEVxG285t0E-J + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_yo.cpp +- body: null + file_path: rel/d/a/b/d_a_b_zant_magic/d_a_b_zant_magic.cpp + id: I_kwDOEVxG285t0E-R + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_zant_magic.cpp +- body: null + file_path: rel/d/a/b/d_a_b_oh/d_a_b_oh.cpp + id: I_kwDOEVxG285t0E-l + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_oh.cpp +- body: null + file_path: rel/d/a/b/d_a_b_dre/d_a_b_dre.cpp + id: I_kwDOEVxG285t0E-v + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_dre.cpp +- body: null + file_path: rel/d/a/b/d_a_b_gnd/d_a_b_gnd.cpp + id: I_kwDOEVxG285t0E-_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_gnd.cpp +- body: null + file_path: rel/d/a/b/d_a_b_go/d_a_b_go.cpp + id: I_kwDOEVxG285t0E_H + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_go.cpp +- body: null + file_path: rel/d/a/b/d_a_b_zant/d_a_b_zant.cpp + id: I_kwDOEVxG285t0E_Z + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_zant.cpp +- body: null + file_path: rel/d/a/b/d_a_b_bh/d_a_b_bh.cpp + id: I_kwDOEVxG285t0E_h + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_bh.cpp +- body: null + file_path: rel/d/a/b/d_a_b_ob/d_a_b_ob.cpp + id: I_kwDOEVxG285t0E_s + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_ob.cpp +- body: null + file_path: rel/d/a/b/d_a_b_gg/d_a_b_gg.cpp + id: I_kwDOEVxG285t0E_- + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_gg.cpp +- body: null + file_path: rel/d/a/b/d_a_b_gm/d_a_b_gm.cpp + id: I_kwDOEVxG285t0FAM + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_gm.cpp +- body: null + file_path: rel/d/a/b/d_a_b_zant_sima/d_a_b_zant_sima.cpp + id: I_kwDOEVxG285t0FAU + label_ids: + - LA_kwDOEVxG288AAAABWzdEdA + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_b_zant_sima.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag03/d_a_kytag03.cpp + id: I_kwDOEVxG285t0FAk + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag03.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag05/d_a_kytag05.cpp + id: I_kwDOEVxG285t0FAs + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag05.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag15/d_a_kytag15.cpp + id: I_kwDOEVxG285t0FA0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag15.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag09/d_a_kytag09.cpp + id: I_kwDOEVxG285t0FA_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag09.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag06/d_a_kytag06.cpp + id: I_kwDOEVxG285t0FBP + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag06.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag07/d_a_kytag07.cpp + id: I_kwDOEVxG285t0FBa + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag07.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag02/d_a_kytag02.cpp + id: I_kwDOEVxG285t0FNJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag02.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag00/d_a_kytag00.cpp + id: I_kwDOEVxG285t0FNe + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag00.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag10/d_a_kytag10.cpp + id: I_kwDOEVxG285t0FNs + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag10.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag13/d_a_kytag13.cpp + id: I_kwDOEVxG285t0FNx + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag13.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag08/d_a_kytag08.cpp + id: I_kwDOEVxG285t0FN5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag08.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag17/d_a_kytag17.cpp + id: I_kwDOEVxG285t0FOG + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag17.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag01/d_a_kytag01.cpp + id: I_kwDOEVxG285t0FOY + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag01.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag14/d_a_kytag14.cpp + id: I_kwDOEVxG285t0FOj + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag14.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag11/d_a_kytag11.cpp + id: I_kwDOEVxG285t0FOu + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag11.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag16/d_a_kytag16.cpp + id: I_kwDOEVxG285t0FO8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag16.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag12/d_a_kytag12.cpp + id: I_kwDOEVxG285t0FPK + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag12.cpp +- body: null + file_path: rel/d/a/kytag/d_a_kytag04/d_a_kytag04.cpp + id: I_kwDOEVxG285t0FPc + label_ids: + - LA_kwDOEVxG288AAAABWzdEkw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_kytag04.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_grr/d_a_npc_grr.cpp + id: I_kwDOEVxG285t0FPp + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_grr.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_prayer/d_a_npc_prayer.cpp + id: I_kwDOEVxG285t0FP5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_prayer.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_toby/d_a_npc_toby.cpp + id: I_kwDOEVxG285t0FQK + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_toby.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_midp/d_a_npc_midp.cpp + id: I_kwDOEVxG285t0FQb + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_midp.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_besu/d_a_npc_besu.cpp + id: I_kwDOEVxG285t0FQt + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_besu.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_seid/d_a_npc_seid.cpp + id: I_kwDOEVxG285t0FRA + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_seid.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_gra/d_a_npc_gra.cpp + id: I_kwDOEVxG285t0FRP + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_gra.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_soldierA/d_a_npc_soldierA.cpp + id: I_kwDOEVxG285t0FRY + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_soldierA.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_pachi_maro/d_a_npc_pachi_maro.cpp + id: I_kwDOEVxG285t0Fb- + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_pachi_maro.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_du/d_a_npc_du.cpp + id: I_kwDOEVxG285t0FcW + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_du.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kolinb/d_a_npc_kolinb.cpp + id: I_kwDOEVxG285t0Fcg + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kolinb.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_yamid/d_a_npc_yamid.cpp + id: I_kwDOEVxG285t0Fcr + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_yamid.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_ne/d_a_npc_ne.cpp + id: I_kwDOEVxG285t0Fc0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_ne.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_clerkb/d_a_npc_clerkb.cpp + id: I_kwDOEVxG285t0FdB + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_clerkb.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_ykw/d_a_npc_ykw.cpp + id: I_kwDOEVxG285t0FdQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_ykw.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_lf/d_a_npc_lf.cpp + id: I_kwDOEVxG285t0Fda + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_lf.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_henna/d_a_npc_henna.cpp + id: I_kwDOEVxG285t0Fds + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_henna.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_myna2/d_a_npc_myna2.cpp + id: I_kwDOEVxG285t0Fd5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_myna2.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_inko/d_a_npc_inko.cpp + id: I_kwDOEVxG285t0FeG + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_inko.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_len/d_a_npc_len.cpp + id: I_kwDOEVxG285t0FeS + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_len.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_ks/d_a_npc_ks.cpp + id: I_kwDOEVxG285t0Fej + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_ks.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_seib/d_a_npc_seib.cpp + id: I_kwDOEVxG285t0Feu + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_seib.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_sola/d_a_npc_sola.cpp + id: I_kwDOEVxG285t0Fe- + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_sola.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_seic/d_a_npc_seic.cpp + id: I_kwDOEVxG285t0FfF + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_seic.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_shop_maro/d_a_npc_shop_maro.cpp + id: I_kwDOEVxG285t0FfR + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_shop_maro.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_yamit/d_a_npc_yamit.cpp + id: I_kwDOEVxG285t0Ffd + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_yamit.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_rafrel/d_a_npc_rafrel.cpp + id: I_kwDOEVxG285t0Ffr + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_rafrel.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_henna0/d_a_npc_henna0.cpp + id: I_kwDOEVxG285t0Ff2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_henna0.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_bouS/d_a_npc_bouS.cpp + id: I_kwDOEVxG285t0Fp6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_bouS.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_blue_ns/d_a_npc_blue_ns.cpp + id: I_kwDOEVxG285t0FqJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_blue_ns.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_tkj/d_a_npc_tkj.cpp + id: I_kwDOEVxG285t0FqR + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_tkj.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_saru/d_a_npc_saru.cpp + id: I_kwDOEVxG285t0Fqf + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_saru.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_maro/d_a_npc_maro.cpp + id: I_kwDOEVxG285t0Fqp + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_maro.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_pachi_taro/d_a_npc_pachi_taro.cpp + id: I_kwDOEVxG285t0Fq0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_pachi_taro.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kkri/d_a_npc_kkri.cpp + id: I_kwDOEVxG285t0FrA + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kkri.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_pouya/d_a_npc_pouya.cpp + id: I_kwDOEVxG285t0FrR + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_pouya.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_doc/d_a_npc_doc.cpp + id: I_kwDOEVxG285t0Frd + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_doc.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_gwolf/d_a_npc_gwolf.cpp + id: I_kwDOEVxG285t0Frp + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_gwolf.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zra/d_a_npc_zra.cpp + id: I_kwDOEVxG285t0LEJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zra.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_taro/d_a_npc_taro.cpp + id: I_kwDOEVxG285t0LEd + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_taro.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kdk/d_a_npc_kdk.cpp + id: I_kwDOEVxG285t0LEt + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kdk.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_lud/d_a_npc_lud.cpp + id: I_kwDOEVxG285t0LE3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_lud.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kasi_hana/d_a_npc_kasi_hana.cpp + id: I_kwDOEVxG285t0LFA + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kasi_hana.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kolin/d_a_npc_kolin.cpp + id: I_kwDOEVxG285t0LFX + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kolin.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_knj/d_a_npc_knj.cpp + id: I_kwDOEVxG285t0LFq + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_knj.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_post/d_a_npc_post.cpp + id: I_kwDOEVxG285t0LF5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_post.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_fguard/d_a_npc_fguard.cpp + id: I_kwDOEVxG285t0LGJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_fguard.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_mk/d_a_npc_mk.cpp + id: I_kwDOEVxG285t0LGV + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_mk.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_seirei/d_a_npc_seirei.cpp + id: I_kwDOEVxG285t0LGi + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_seirei.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zelda/d_a_npc_zelda.cpp + id: I_kwDOEVxG285t0LGy + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zelda.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zelRo/d_a_npc_zelRo.cpp + id: I_kwDOEVxG285t0LG- + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zelRo.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_tks/d_a_npc_tks.cpp + id: I_kwDOEVxG285t0LHO + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_tks.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_guard/d_a_npc_guard.cpp + id: I_kwDOEVxG285t0LHZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_guard.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zrz/d_a_npc_zrz.cpp + id: I_kwDOEVxG285t0LHk + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zrz.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_clerkt/d_a_npc_clerkt.cpp + id: I_kwDOEVxG285t0LHw + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_clerkt.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_hanjo/d_a_npc_hanjo.cpp + id: I_kwDOEVxG285t0LH7 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_hanjo.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_bans/d_a_npc_bans.cpp + id: I_kwDOEVxG285t0LIE + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_bans.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_yelia/d_a_npc_yelia.cpp + id: I_kwDOEVxG285t0LIY + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_yelia.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_cdn3/d_a_npc_cdn3.cpp + id: I_kwDOEVxG285t0LTH + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_cdn3.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_drainSol/d_a_npc_drainSol.cpp + id: I_kwDOEVxG285t0LTS + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_drainSol.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_raca/d_a_npc_raca.cpp + id: I_kwDOEVxG285t0LTg + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_raca.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_uri/d_a_npc_uri.cpp + id: I_kwDOEVxG285t0LT8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_uri.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_worm/d_a_npc_worm.cpp + id: I_kwDOEVxG285t0LUI + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_worm.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_tkc/d_a_npc_tkc.cpp + id: I_kwDOEVxG285t0LUT + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_tkc.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_chat/d_a_npc_chat.cpp + id: I_kwDOEVxG285t0LUi + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_chat.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_shad/d_a_npc_shad.cpp + id: I_kwDOEVxG285t0LUq + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_shad.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_ins/d_a_npc_ins.cpp + id: I_kwDOEVxG285t0LU6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_ins.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kasi_mich/d_a_npc_kasi_mich.cpp + id: I_kwDOEVxG285t0LVF + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kasi_mich.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_impal/d_a_npc_impal.cpp + id: I_kwDOEVxG285t0LVW + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_impal.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_soldierB/d_a_npc_soldierB.cpp + id: I_kwDOEVxG285t0LVm + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_soldierB.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_bou/d_a_npc_bou.cpp + id: I_kwDOEVxG285t0LVz + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_bou.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kasi_kyu/d_a_npc_kasi_kyu.cpp + id: I_kwDOEVxG285t0LV- + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kasi_kyu.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_gnd/d_a_npc_gnd.cpp + id: I_kwDOEVxG285t0LWN + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_gnd.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_tkj2/d_a_npc_tkj2.cpp + id: I_kwDOEVxG285t0LWd + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_tkj2.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_shaman/d_a_npc_shaman.cpp + id: I_kwDOEVxG285t0LWw + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_shaman.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_ykm/d_a_npc_ykm.cpp + id: I_kwDOEVxG285t0LXD + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_ykm.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_moi/d_a_npc_moi.cpp + id: I_kwDOEVxG285t0LXU + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_moi.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zant/d_a_npc_zant.cpp + id: I_kwDOEVxG285t0LXf + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zant.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_shoe/d_a_npc_shoe.cpp + id: I_kwDOEVxG285t0Lhz + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_shoe.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_gro/d_a_npc_gro.cpp + id: I_kwDOEVxG285t0Lh_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_gro.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_shop0/d_a_npc_shop0.cpp + id: I_kwDOEVxG285t0LiL + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_shop0.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_fish/d_a_npc_fish.cpp + id: I_kwDOEVxG285t0Lie + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_fish.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_ashB/d_a_npc_ashB.cpp + id: I_kwDOEVxG285t0Lit + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_ashB.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kn/d_a_npc_kn.cpp + id: I_kwDOEVxG285t0Li3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kn.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_grd/d_a_npc_grd.cpp + id: I_kwDOEVxG285t0LjA + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_grd.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_the/d_a_npc_the.cpp + id: I_kwDOEVxG285t0LjT + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_the.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_moir/d_a_npc_moir.cpp + id: I_kwDOEVxG285t0Ljb + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_moir.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_df/d_a_npc_df.cpp + id: I_kwDOEVxG285t0Lji + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_df.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kyury/d_a_npc_kyury.cpp + id: I_kwDOEVxG285t0Lj0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kyury.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_clerka/d_a_npc_clerka.cpp + id: I_kwDOEVxG285t0Lj8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_clerka.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_sq/d_a_npc_sq.cpp + id: I_kwDOEVxG285t0LkF + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_sq.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_passer/d_a_npc_passer.cpp + id: I_kwDOEVxG285t0LkT + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_passer.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_tr/d_a_npc_tr.cpp + id: I_kwDOEVxG285t0Lkk + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_tr.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_fairy_seirei/d_a_npc_fairy_seirei.cpp + id: I_kwDOEVxG285t0Lku + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_fairy_seirei.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_coach/d_a_npc_coach.cpp + id: I_kwDOEVxG285t0Lk4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_coach.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_chin/d_a_npc_chin.cpp + id: I_kwDOEVxG285t0LlG + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_chin.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_grs/d_a_npc_grs.cpp + id: I_kwDOEVxG285t0LlT + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_grs.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_wrestler/d_a_npc_wrestler.cpp + id: I_kwDOEVxG285t0Llc + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_wrestler.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zelR/d_a_npc_zelR.cpp + id: I_kwDOEVxG285t0LvY + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zelR.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_seira2/d_a_npc_seira2.cpp + id: I_kwDOEVxG285t0Lvl + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_seira2.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_p2/d_a_npc_p2.cpp + id: I_kwDOEVxG285t0Lv0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_p2.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_seira/d_a_npc_seira.cpp + id: I_kwDOEVxG285t0LwB + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_seira.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_grmc/d_a_npc_grmc.cpp + id: I_kwDOEVxG285t0LwS + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_grmc.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_kakashi/d_a_npc_kakashi.cpp + id: I_kwDOEVxG285t0Lwi + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_kakashi.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_aru/d_a_npc_aru.cpp + id: I_kwDOEVxG285t0Lww + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_aru.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_fairy/d_a_npc_fairy.cpp + id: I_kwDOEVxG285t0LxA + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_fairy.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_grm/d_a_npc_grm.cpp + id: I_kwDOEVxG285t0LxS + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_grm.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_grz/d_a_npc_grz.cpp + id: I_kwDOEVxG285t0Lxg + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_grz.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_jagar/d_a_npc_jagar.cpp + id: I_kwDOEVxG285t0Lxr + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_jagar.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_ash/d_a_npc_ash.cpp + id: I_kwDOEVxG285t0Lx0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_ash.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_theB/d_a_npc_theB.cpp + id: I_kwDOEVxG285t0Lx8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_theB.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_yamis/d_a_npc_yamis.cpp + id: I_kwDOEVxG285t0LyL + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_yamis.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_passer2/d_a_npc_passer2.cpp + id: I_kwDOEVxG285t0Lyd + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_passer2.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zanb/d_a_npc_zanb.cpp + id: I_kwDOEVxG285t0Lyk + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zanb.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_tk/d_a_npc_tk.cpp + id: I_kwDOEVxG285t0Lyp + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_tk.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_zrc/d_a_npc_zrc.cpp + id: I_kwDOEVxG285t0Lyy + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_zrc.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_grc/d_a_npc_grc.cpp + id: I_kwDOEVxG285t0LzB + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_grc.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_pachi_besu/d_a_npc_pachi_besu.cpp + id: I_kwDOEVxG285t0LzN + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_pachi_besu.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_doorboy/d_a_npc_doorboy.cpp + id: I_kwDOEVxG285t0MCU + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_doorboy.cpp +- body: null + file_path: rel/d/a/npc/d_a_npc_hoz/d_a_npc_hoz.cpp + id: I_kwDOEVxG285t0MCm + label_ids: + - LA_kwDOEVxG288AAAABWzdEUQ + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_npc_hoz.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6Tenbin/d_a_obj_lv6Tenbin.cpp + id: I_kwDOEVxG285t0MC_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6Tenbin.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kago/d_a_obj_kago.cpp + id: I_kwDOEVxG285t0MDP + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kago.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_octhashi/d_a_obj_octhashi.cpp + id: I_kwDOEVxG285t0MDh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_octhashi.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_fw/d_a_obj_fw.cpp + id: I_kwDOEVxG285t0MD0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_fw.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hhashi/d_a_obj_hhashi.cpp + id: I_kwDOEVxG285t0MEB + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hhashi.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ss_item/d_a_obj_ss_item.cpp + id: I_kwDOEVxG285t0MEU + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ss_item.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hb/d_a_obj_hb.cpp + id: I_kwDOEVxG285t0MEe + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hb.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6TogeRoll/d_a_obj_lv6TogeRoll.cpp + id: I_kwDOEVxG285t0MEq + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6TogeRoll.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_nan/d_a_obj_nan.cpp + id: I_kwDOEVxG285t0ME4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_nan.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hakai_brl/d_a_obj_hakai_brl.cpp + id: I_kwDOEVxG285t0MFG + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hakai_brl.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_window/d_a_obj_window.cpp + id: I_kwDOEVxG285t0MFV + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_window.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_fmobj/d_a_obj_fmobj.cpp + id: I_kwDOEVxG285t0MFe + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_fmobj.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_zrTurara/d_a_obj_zrTurara.cpp + id: I_kwDOEVxG285t0MFs + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_zrTurara.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_drop/d_a_obj_drop.cpp + id: I_kwDOEVxG285t0MF6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_drop.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_cdoor/d_a_obj_cdoor.cpp + id: I_kwDOEVxG285t0MGN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_cdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv3Candle/d_a_obj_lv3Candle.cpp + id: I_kwDOEVxG285t0MGc + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv3Candle.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_poTbox/d_a_obj_poTbox.cpp + id: I_kwDOEVxG285t0MGt + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_poTbox.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bsGate/d_a_obj_bsGate.cpp + id: I_kwDOEVxG285t0MG7 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bsGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_avalanche/d_a_obj_avalanche.cpp + id: I_kwDOEVxG285t0MS9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_avalanche.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv3saka00/d_a_obj_lv3saka00.cpp + id: I_kwDOEVxG285t0MTE + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv3saka00.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tp/d_a_obj_tp.cpp + id: I_kwDOEVxG285t0MTS + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tp.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ikada/d_a_obj_ikada.cpp + id: I_kwDOEVxG285t0MTZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ikada.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hata/d_a_obj_hata.cpp + id: I_kwDOEVxG285t0MTm + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hata.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kag/d_a_obj_kag.cpp + id: I_kwDOEVxG285t0MTz + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kag.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_waterGate/d_a_obj_waterGate.cpp + id: I_kwDOEVxG285t0MT_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_waterGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bk_leaf/d_a_obj_bk_leaf.cpp + id: I_kwDOEVxG285t0MUS + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bk_leaf.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hfuta/d_a_obj_hfuta.cpp + id: I_kwDOEVxG285t0MUe + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hfuta.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_h_saku/d_a_obj_h_saku.cpp + id: I_kwDOEVxG285t0MUu + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_h_saku.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_knBullet/d_a_obj_knBullet.cpp + id: I_kwDOEVxG285t0MU5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_knBullet.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_cho/d_a_obj_cho.cpp + id: I_kwDOEVxG285t0MVK + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_cho.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_iceblock/d_a_obj_iceblock.cpp + id: I_kwDOEVxG285t0MVV + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_iceblock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_laundry/d_a_obj_laundry.cpp + id: I_kwDOEVxG285t0MVf + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_laundry.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rock/d_a_obj_rock.cpp + id: I_kwDOEVxG285t0MV1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crvsteel/d_a_obj_crvsteel.cpp + id: I_kwDOEVxG285t0MV9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crvsteel.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_testcube/d_a_obj_testcube.cpp + id: I_kwDOEVxG285t0MWN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_testcube.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv5SwIce/d_a_obj_lv5SwIce.cpp + id: I_kwDOEVxG285t0MWX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv5SwIce.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_firepillar/d_a_obj_firepillar.cpp + id: I_kwDOEVxG285t0MWf + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_firepillar.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ganonwall/d_a_obj_ganonwall.cpp + id: I_kwDOEVxG285t0MWo + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ganonwall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_flag/d_a_obj_flag.cpp + id: I_kwDOEVxG285t0Mhv + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_flag.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ihasi/d_a_obj_ihasi.cpp + id: I_kwDOEVxG285t0MiA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ihasi.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kantera/d_a_obj_kantera.cpp + id: I_kwDOEVxG285t0MiX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kantera.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kbox/d_a_obj_kbox.cpp + id: I_kwDOEVxG285t0Mim + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kbox.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_zcloth/d_a_obj_zcloth.cpp + id: I_kwDOEVxG285t0Mix + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_zcloth.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rw/d_a_obj_rw.cpp + id: I_kwDOEVxG285t0Mi5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rw.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_poFire/d_a_obj_poFire.cpp + id: I_kwDOEVxG285t0MjM + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_poFire.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_table/d_a_obj_table.cpp + id: I_kwDOEVxG285t0MjW + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_table.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_vground/d_a_obj_vground.cpp + id: I_kwDOEVxG285t0Mjl + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_vground.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_pumpkin/d_a_obj_pumpkin.cpp + id: I_kwDOEVxG285t0Mjy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_pumpkin.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv5FloorBoard/d_a_obj_lv5FloorBoard.cpp + id: I_kwDOEVxG285t0Mj9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv5FloorBoard.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bky_rock/d_a_obj_bky_rock.cpp + id: I_kwDOEVxG285t0MkD + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bky_rock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_dmelevator/d_a_obj_dmelevator.cpp + id: I_kwDOEVxG285t0MkS + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_dmelevator.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_gadget/d_a_obj_gadget.cpp + id: I_kwDOEVxG285t0Mkh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_gadget.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4sand/d_a_obj_lv4sand.cpp + id: I_kwDOEVxG285t0Mkv + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4sand.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_timeFire/d_a_obj_timeFire.cpp + id: I_kwDOEVxG285t0Mk3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_timeFire.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_picture/d_a_obj_picture.cpp + id: I_kwDOEVxG285t0MlI + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_picture.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_yousei/d_a_obj_yousei.cpp + id: I_kwDOEVxG285t0MlS + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_yousei.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kage/d_a_obj_kage.cpp + id: I_kwDOEVxG285t0Mlg + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kage.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_toaru_maki/d_a_obj_toaru_maki.cpp + id: I_kwDOEVxG285t0Mls + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_toaru_maki.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4Gate/d_a_obj_lv4Gate.cpp + id: I_kwDOEVxG285t0MwJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4Gate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bhashi/d_a_obj_bhashi.cpp + id: I_kwDOEVxG285t0MwX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bhashi.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4HsTarget/d_a_obj_lv4HsTarget.cpp + id: I_kwDOEVxG285t0Mwg + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4HsTarget.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_volcball/d_a_obj_volcball.cpp + id: I_kwDOEVxG285t0Mwt + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_volcball.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bombf/d_a_obj_bombf.cpp + id: I_kwDOEVxG285t0Mw8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bombf.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_enemy_create/d_a_obj_enemy_create.cpp + id: I_kwDOEVxG285t0MxE + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_enemy_create.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_metalbox/d_a_obj_metalbox.cpp + id: I_kwDOEVxG285t0MxQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_metalbox.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kshutter/d_a_obj_kshutter.cpp + id: I_kwDOEVxG285t0Mxc + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kshutter.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv1Candle01/d_a_obj_lv1Candle01.cpp + id: I_kwDOEVxG285t0Mxq + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv1Candle01.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_chandelier/d_a_obj_chandelier.cpp + id: I_kwDOEVxG285t0Mx4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_chandelier.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_prop/d_a_obj_prop.cpp + id: I_kwDOEVxG285t0RyZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_prop.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kabuto/d_a_obj_kabuto.cpp + id: I_kwDOEVxG285t0Ryn + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kabuto.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4RailWall/d_a_obj_lv4RailWall.cpp + id: I_kwDOEVxG285t0Ry0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4RailWall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_togeTrap/d_a_obj_togeTrap.cpp + id: I_kwDOEVxG285t0RzC + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_togeTrap.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4PoGate/d_a_obj_lv4PoGate.cpp + id: I_kwDOEVxG285t0RzV + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4PoGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_smallkey/d_a_obj_smallkey.cpp + id: I_kwDOEVxG285t0Rzj + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_smallkey.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ito/d_a_obj_ito.cpp + id: I_kwDOEVxG285t0Rzx + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ito.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_timer/d_a_obj_timer.cpp + id: I_kwDOEVxG285t0R0B + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_timer.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_oiltubo/d_a_obj_oiltubo.cpp + id: I_kwDOEVxG285t0R0S + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_oiltubo.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_dan/d_a_obj_dan.cpp + id: I_kwDOEVxG285t0R0g + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_dan.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6FurikoTrap/d_a_obj_lv6FurikoTrap.cpp + id: I_kwDOEVxG285t0R00 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6FurikoTrap.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_zraMark/d_a_obj_zraMark.cpp + id: I_kwDOEVxG285t0R1F + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_zraMark.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bmshutter/d_a_obj_bmshutter.cpp + id: I_kwDOEVxG285t0R1S + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bmshutter.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_mie/d_a_obj_mie.cpp + id: I_kwDOEVxG285t0R1i + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mie.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_cboard/d_a_obj_cboard.cpp + id: I_kwDOEVxG285t0R14 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_cboard.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_wood_pendulum/d_a_obj_wood_pendulum.cpp + id: I_kwDOEVxG285t0R2A + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_wood_pendulum.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crvfence/d_a_obj_crvfence.cpp + id: I_kwDOEVxG285t0R2P + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crvfence.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_mgate/d_a_obj_mgate.cpp + id: I_kwDOEVxG285t0R2X + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mgate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_web0/d_a_obj_web0.cpp + id: I_kwDOEVxG285t0R2r + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_web0.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tobyhouse/d_a_obj_tobyhouse.cpp + id: I_kwDOEVxG285t0R29 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tobyhouse.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv1Candle00/d_a_obj_lv1Candle00.cpp + id: I_kwDOEVxG285t0SBu + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv1Candle00.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6swturn/d_a_obj_lv6swturn.cpp + id: I_kwDOEVxG285t0SB7 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6swturn.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4CandleDemoTag/d_a_obj_lv4CandleDemoTag.cpp + id: I_kwDOEVxG285t0SCK + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4CandleDemoTag.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sword/d_a_obj_sword.cpp + id: I_kwDOEVxG285t0SCa + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sword.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_usaku/d_a_obj_usaku.cpp + id: I_kwDOEVxG285t0SCp + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_usaku.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv7bridge/d_a_obj_lv7bridge.cpp + id: I_kwDOEVxG285t0SC0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv7bridge.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_snowEffTag/d_a_obj_snowEffTag.cpp + id: I_kwDOEVxG285t0SDF + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_snowEffTag.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_gomikabe/d_a_obj_gomikabe.cpp + id: I_kwDOEVxG285t0SDQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_gomikabe.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bmWindow/d_a_obj_bmWindow.cpp + id: I_kwDOEVxG285t0SDc + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bmWindow.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_nougu/d_a_obj_nougu.cpp + id: I_kwDOEVxG285t0SDl + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_nougu.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_cwall/d_a_obj_cwall.cpp + id: I_kwDOEVxG285t0SDy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_cwall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bhbridge/d_a_obj_bhbridge.cpp + id: I_kwDOEVxG285t0SEC + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bhbridge.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kiPot/d_a_obj_kiPot.cpp + id: I_kwDOEVxG285t0SEX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kiPot.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_flag2/d_a_obj_flag2.cpp + id: I_kwDOEVxG285t0SEm + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_flag2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_inobone/d_a_obj_inobone.cpp + id: I_kwDOEVxG285t0SE5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_inobone.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sw/d_a_obj_sw.cpp + id: I_kwDOEVxG285t0SFG + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sw.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_smoke/d_a_obj_smoke.cpp + id: I_kwDOEVxG285t0SFR + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_smoke.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swchain/d_a_obj_swchain.cpp + id: I_kwDOEVxG285t0SFd + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swchain.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_msima/d_a_obj_msima.cpp + id: I_kwDOEVxG285t0SFn + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_msima.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_itamato/d_a_obj_itamato.cpp + id: I_kwDOEVxG285t0SF5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_itamato.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4digsand/d_a_obj_lv4digsand.cpp + id: I_kwDOEVxG285t0SW9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4digsand.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bkdoor/d_a_obj_bkdoor.cpp + id: I_kwDOEVxG285t0SXN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bkdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sekizoa/d_a_obj_sekizoa.cpp + id: I_kwDOEVxG285t0SXY + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sekizoa.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_heavySw/d_a_obj_heavySw.cpp + id: I_kwDOEVxG285t0SXo + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_heavySw.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_grz_rock/d_a_obj_grz_rock.cpp + id: I_kwDOEVxG285t0SXx + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_grz_rock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_digplace/d_a_obj_digplace.cpp + id: I_kwDOEVxG285t0SYA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_digplace.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_poCandle/d_a_obj_poCandle.cpp + id: I_kwDOEVxG285t0SYP + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_poCandle.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_web1/d_a_obj_web1.cpp + id: I_kwDOEVxG285t0SYg + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_web1.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ari/d_a_obj_ari.cpp + id: I_kwDOEVxG285t0SYy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ari.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tks/d_a_obj_tks.cpp + id: I_kwDOEVxG285t0SZA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tks.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv3Water2/d_a_obj_lv3Water2.cpp + id: I_kwDOEVxG285t0SZO + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv3Water2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crope/d_a_obj_crope.cpp + id: I_kwDOEVxG285t0SZd + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crope.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_wsword/d_a_obj_wsword.cpp + id: I_kwDOEVxG285t0SZq + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_wsword.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kuwagata/d_a_obj_kuwagata.cpp + id: I_kwDOEVxG285t0SZ4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kuwagata.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv8Lift/d_a_obj_lv8Lift.cpp + id: I_kwDOEVxG285t0SaG + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv8Lift.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bemos/d_a_obj_bemos.cpp + id: I_kwDOEVxG285t0SaR + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bemos.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_fireWood2/d_a_obj_fireWood2.cpp + id: I_kwDOEVxG285t0Sag + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_fireWood2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sm_door/d_a_obj_sm_door.cpp + id: I_kwDOEVxG285t0Sao + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sm_door.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kjgjs/d_a_obj_kjgjs.cpp + id: I_kwDOEVxG285t0Say + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kjgjs.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_saidan/d_a_obj_saidan.cpp + id: I_kwDOEVxG285t0SbA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_saidan.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swspinner/d_a_obj_swspinner.cpp + id: I_kwDOEVxG285t0SmR + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swspinner.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bubblePilar/d_a_obj_bubblePilar.cpp + id: I_kwDOEVxG285t0Smn + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bubblePilar.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_volcbom/d_a_obj_volcbom.cpp + id: I_kwDOEVxG285t0SnA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_volcbom.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_flag3/d_a_obj_flag3.cpp + id: I_kwDOEVxG285t0SnI + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_flag3.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_magLiftRot/d_a_obj_magLiftRot.cpp + id: I_kwDOEVxG285t0Snf + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_magLiftRot.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv5IceWall/d_a_obj_lv5IceWall.cpp + id: I_kwDOEVxG285t0Sny + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv5IceWall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_stone/d_a_obj_stone.cpp + id: I_kwDOEVxG285t0SoB + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_stone.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_treesh/d_a_obj_treesh.cpp + id: I_kwDOEVxG285t0SoL + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_treesh.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kgate/d_a_obj_kgate.cpp + id: I_kwDOEVxG285t0SoX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kgate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4CandleTag/d_a_obj_lv4CandleTag.cpp + id: I_kwDOEVxG285t0Son + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4CandleTag.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_udoor/d_a_obj_udoor.cpp + id: I_kwDOEVxG285t0Soy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_udoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lbox/d_a_obj_lbox.cpp + id: I_kwDOEVxG285t0SpA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lbox.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6SzGate/d_a_obj_lv6SzGate.cpp + id: I_kwDOEVxG285t0SpW + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6SzGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_goGate/d_a_obj_goGate.cpp + id: I_kwDOEVxG285t0Sph + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_goGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_thashi/d_a_obj_thashi.cpp + id: I_kwDOEVxG285t0Spw + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_thashi.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crvhahen/d_a_obj_crvhahen.cpp + id: I_kwDOEVxG285t0Sp6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crvhahen.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kwheel01/d_a_obj_kwheel01.cpp + id: I_kwDOEVxG285t0SqF + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kwheel01.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_wood_statue/d_a_obj_wood_statue.cpp + id: I_kwDOEVxG285t0SqT + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_wood_statue.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_mvstair/d_a_obj_mvstair.cpp + id: I_kwDOEVxG285t0Sqe + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mvstair.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_brg/d_a_obj_brg.cpp + id: I_kwDOEVxG285t0Sqt + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_brg.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4EdShutter/d_a_obj_lv4EdShutter.cpp + id: I_kwDOEVxG285t0S2E + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4EdShutter.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_yel_bag/d_a_obj_yel_bag.cpp + id: I_kwDOEVxG285t0S2R + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_yel_bag.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_roten/d_a_obj_roten.cpp + id: I_kwDOEVxG285t0S2f + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_roten.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_master_sword/d_a_obj_master_sword.cpp + id: I_kwDOEVxG285t0S2t + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_master_sword.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_zrTuraraRock/d_a_obj_zrTuraraRock.cpp + id: I_kwDOEVxG285t0S22 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_zrTuraraRock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_syRock/d_a_obj_syRock.cpp + id: I_kwDOEVxG285t0S3A + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_syRock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_so/d_a_obj_so.cpp + id: I_kwDOEVxG285t0S3U + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_so.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv5ychndlr/d_a_obj_lv5ychndlr.cpp + id: I_kwDOEVxG285t0S3k + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv5ychndlr.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6bemos2/d_a_obj_lv6bemos2.cpp + id: I_kwDOEVxG285t0S33 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6bemos2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tmoon/d_a_obj_tmoon.cpp + id: I_kwDOEVxG285t0S4F + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tmoon.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ndoor/d_a_obj_ndoor.cpp + id: I_kwDOEVxG285t0S4Z + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ndoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_well_cover/d_a_obj_well_cover.cpp + id: I_kwDOEVxG285t0S4n + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_well_cover.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6TogeTrap/d_a_obj_lv6TogeTrap.cpp + id: I_kwDOEVxG285t0S4v + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6TogeTrap.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv9SwShutter/d_a_obj_lv9SwShutter.cpp + id: I_kwDOEVxG285t0S44 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv9SwShutter.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_amiShutter/d_a_obj_amiShutter.cpp + id: I_kwDOEVxG285t0S5E + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_amiShutter.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swLight/d_a_obj_swLight.cpp + id: I_kwDOEVxG285t0S5a + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swLight.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_toby/d_a_obj_toby.cpp + id: I_kwDOEVxG285t0S5t + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_toby.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_scannon_crs/d_a_obj_scannon_crs.cpp + id: I_kwDOEVxG285t0S56 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_scannon_crs.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_myogan/d_a_obj_myogan.cpp + id: I_kwDOEVxG285t0S6P + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_myogan.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_Y_taihou/d_a_obj_Y_taihou.cpp + id: I_kwDOEVxG285t0S6h + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_Y_taihou.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_laundry_rope/d_a_obj_laundry_rope.cpp + id: I_kwDOEVxG285t0TFh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_laundry_rope.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_brakeeff/d_a_obj_brakeeff.cpp + id: I_kwDOEVxG285t0TFx + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_brakeeff.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_key/d_a_obj_key.cpp + id: I_kwDOEVxG285t0TF8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_key.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_Turara/d_a_obj_Turara.cpp + id: I_kwDOEVxG285t0TGN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_Turara.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_keyhole/d_a_obj_keyhole.cpp + id: I_kwDOEVxG285t0TGX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_keyhole.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv3WaterB/d_a_obj_lv3WaterB.cpp + id: I_kwDOEVxG285t0TGj + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv3WaterB.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_carry/d_a_obj_carry.cpp + id: I_kwDOEVxG285t0TGr + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_carry.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_balloon/d_a_obj_balloon.cpp + id: I_kwDOEVxG285t0TG4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_balloon.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4chandelier/d_a_obj_lv4chandelier.cpp + id: I_kwDOEVxG285t0THI + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4chandelier.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv3Water/d_a_obj_lv3Water.cpp + id: I_kwDOEVxG285t0THW + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv3Water.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lp/d_a_obj_lp.cpp + id: I_kwDOEVxG285t0THh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lp.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4bridge/d_a_obj_lv4bridge.cpp + id: I_kwDOEVxG285t0THp + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4bridge.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_mhole/d_a_obj_mhole.cpp + id: I_kwDOEVxG285t0THx + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mhole.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv7PropellerY/d_a_obj_lv7PropellerY.cpp + id: I_kwDOEVxG285t0TIA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv7PropellerY.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ystone/d_a_obj_ystone.cpp + id: I_kwDOEVxG285t0TIO + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ystone.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_fireWood/d_a_obj_fireWood.cpp + id: I_kwDOEVxG285t0TIh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_fireWood.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_pdwall/d_a_obj_pdwall.cpp + id: I_kwDOEVxG285t0TIy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_pdwall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_scannon_ten/d_a_obj_scannon_ten.cpp + id: I_kwDOEVxG285t0TI9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_scannon_ten.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tatigi/d_a_obj_tatigi.cpp + id: I_kwDOEVxG285t0TJN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tatigi.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_gra_rock/d_a_obj_gra_rock.cpp + id: I_kwDOEVxG285t0TJf + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_gra_rock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_cowdoor/d_a_obj_cowdoor.cpp + id: I_kwDOEVxG285t0TUW + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_cowdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_spinLift/d_a_obj_spinLift.cpp + id: I_kwDOEVxG285t0TUj + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_spinLift.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_gpTaru/d_a_obj_gpTaru.cpp + id: I_kwDOEVxG285t0TUz + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_gpTaru.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_burnbox/d_a_obj_burnbox.cpp + id: I_kwDOEVxG285t0TU8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_burnbox.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kznkarm/d_a_obj_kznkarm.cpp + id: I_kwDOEVxG285t0TVK + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kznkarm.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_gra2/d_a_obj_gra2.cpp + id: I_kwDOEVxG285t0TVX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_gra2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_cb/d_a_obj_cb.cpp + id: I_kwDOEVxG285t0TVn + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_cb.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kkanban/d_a_obj_kkanban.cpp + id: I_kwDOEVxG285t0TV1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kkanban.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_klift00/d_a_obj_klift00.cpp + id: I_kwDOEVxG285t0TWH + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_klift00.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_food/d_a_obj_food.cpp + id: I_kwDOEVxG285t0TWS + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_food.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_magLift/d_a_obj_magLift.cpp + id: I_kwDOEVxG285t0TWg + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_magLift.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_movebox/d_a_obj_movebox.cpp + id: I_kwDOEVxG285t0TWo + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_movebox.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6elevta/d_a_obj_lv6elevta.cpp + id: I_kwDOEVxG285t0TW1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6elevta.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv7BsGate/d_a_obj_lv7BsGate.cpp + id: I_kwDOEVxG285t0TXB + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv7BsGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ladder/d_a_obj_ladder.cpp + id: I_kwDOEVxG285t0TXP + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ladder.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swpush5/d_a_obj_swpush5.cpp + id: I_kwDOEVxG285t0TXf + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swpush5.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_Lv5Key/d_a_obj_Lv5Key.cpp + id: I_kwDOEVxG285t0TXt + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_Lv5Key.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_snow_soup/d_a_obj_snow_soup.cpp + id: I_kwDOEVxG285t0TX_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_snow_soup.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crvlh_up/d_a_obj_crvlh_up.cpp + id: I_kwDOEVxG285t0TYM + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crvlh_up.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv8UdFloor/d_a_obj_lv8UdFloor.cpp + id: I_kwDOEVxG285t0TYZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv8UdFloor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_gm/d_a_obj_gm.cpp + id: I_kwDOEVxG285t0Tjd + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_gm.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_grave_stone/d_a_obj_grave_stone.cpp + id: I_kwDOEVxG285t0Tjw + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_grave_stone.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_onsenFire/d_a_obj_onsenFire.cpp + id: I_kwDOEVxG285t0Tj8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_onsenFire.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ganonwall2/d_a_obj_ganonwall2.cpp + id: I_kwDOEVxG285t0TkN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ganonwall2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6egate/d_a_obj_lv6egate.cpp + id: I_kwDOEVxG285t0TkX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6egate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_geyser/d_a_obj_geyser.cpp + id: I_kwDOEVxG285t0Tkj + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_geyser.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_digsnow/d_a_obj_digsnow.cpp + id: I_kwDOEVxG285t0Tk6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_digsnow.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_wind_stone/d_a_obj_wind_stone.cpp + id: I_kwDOEVxG285t0TlJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_wind_stone.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_zdoor/d_a_obj_zdoor.cpp + id: I_kwDOEVxG285t0TlR + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_zdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kanban2/d_a_obj_kanban2.cpp + id: I_kwDOEVxG285t0Tld + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kanban2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tornado2/d_a_obj_tornado2.cpp + id: I_kwDOEVxG285t0aDM + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tornado2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_onsenTaru/d_a_obj_onsenTaru.cpp + id: I_kwDOEVxG285t0aDb + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_onsenTaru.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_groundwater/d_a_obj_groundwater.cpp + id: I_kwDOEVxG285t0aDo + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_groundwater.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_thdoor/d_a_obj_thdoor.cpp + id: I_kwDOEVxG285t0aD4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_thdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_glowSphere/d_a_obj_glowSphere.cpp + id: I_kwDOEVxG285t0aEE + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_glowSphere.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_eff/d_a_obj_eff.cpp + id: I_kwDOEVxG285t0aEW + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_eff.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hsTarget/d_a_obj_hsTarget.cpp + id: I_kwDOEVxG285t0aEl + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hsTarget.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ten/d_a_obj_ten.cpp + id: I_kwDOEVxG285t0aEy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ten.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv5yiblltray/d_a_obj_lv5yiblltray.cpp + id: I_kwDOEVxG285t0aFA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv5yiblltray.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swBallB/d_a_obj_swBallB.cpp + id: I_kwDOEVxG285t0aFa + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swBallB.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4SlideWall/d_a_obj_lv4SlideWall.cpp + id: I_kwDOEVxG285t0aFn + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4SlideWall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hbombkoya/d_a_obj_hbombkoya.cpp + id: I_kwDOEVxG285t0aFy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hbombkoya.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_pleaf/d_a_obj_pleaf.cpp + id: I_kwDOEVxG285t0aF8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_pleaf.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_riverrock/d_a_obj_riverrock.cpp + id: I_kwDOEVxG285t0aGL + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_riverrock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_stairBlock/d_a_obj_stairBlock.cpp + id: I_kwDOEVxG285t0aGf + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_stairBlock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv8OptiLift/d_a_obj_lv8OptiLift.cpp + id: I_kwDOEVxG285t0aGr + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv8OptiLift.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_smtile/d_a_obj_smtile.cpp + id: I_kwDOEVxG285t0aG7 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_smtile.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_waterPillar/d_a_obj_waterPillar.cpp + id: I_kwDOEVxG285t0aHN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_waterPillar.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ktOnFire/d_a_obj_ktOnFire.cpp + id: I_kwDOEVxG285t0aHc + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ktOnFire.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_barDesk/d_a_obj_barDesk.cpp + id: I_kwDOEVxG285t0aT0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_barDesk.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rcircle/d_a_obj_rcircle.cpp + id: I_kwDOEVxG285t0aT_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rcircle.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rgate/d_a_obj_rgate.cpp + id: I_kwDOEVxG285t0aUR + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rgate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_wchain/d_a_obj_wchain.cpp + id: I_kwDOEVxG285t0aUm + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_wchain.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_stoneMark/d_a_obj_stoneMark.cpp + id: I_kwDOEVxG285t0aU2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_stoneMark.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sekizo/d_a_obj_sekizo.cpp + id: I_kwDOEVxG285t0aVH + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sekizo.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_gb/d_a_obj_gb.cpp + id: I_kwDOEVxG285t0aVY + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_gb.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sWallShutter/d_a_obj_sWallShutter.cpp + id: I_kwDOEVxG285t0aVn + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sWallShutter.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_pdtile/d_a_obj_pdtile.cpp + id: I_kwDOEVxG285t0aVw + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_pdtile.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sekidoor/d_a_obj_sekidoor.cpp + id: I_kwDOEVxG285t0aV7 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sekidoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_TvCdlst/d_a_obj_TvCdlst.cpp + id: I_kwDOEVxG285t0aWL + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_TvCdlst.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sakuita/d_a_obj_sakuita.cpp + id: I_kwDOEVxG285t0aWX + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sakuita.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tombo/d_a_obj_tombo.cpp + id: I_kwDOEVxG285t0aWo + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tombo.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_takaraDai/d_a_obj_takaraDai.cpp + id: I_kwDOEVxG285t0aWw + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_takaraDai.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swBallA/d_a_obj_swBallA.cpp + id: I_kwDOEVxG285t0aXC + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swBallA.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kaisou/d_a_obj_kaisou.cpp + id: I_kwDOEVxG285t0aXR + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kaisou.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_zra_rock/d_a_obj_zra_rock.cpp + id: I_kwDOEVxG285t0aXh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_zra_rock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_wdStick/d_a_obj_wdStick.cpp + id: I_kwDOEVxG285t0aXy + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_wdStick.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bbox/d_a_obj_bbox.cpp + id: I_kwDOEVxG285t0aYC + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bbox.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_automata/d_a_obj_automata.cpp + id: I_kwDOEVxG285t0aYO + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_automata.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv2Candle/d_a_obj_lv2Candle.cpp + id: I_kwDOEVxG285t0akk + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv2Candle.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bed/d_a_obj_bed.cpp + id: I_kwDOEVxG285t0aky + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bed.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tornado/d_a_obj_tornado.cpp + id: I_kwDOEVxG285t0ak_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tornado.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv8KekkaiTrap/d_a_obj_lv8KekkaiTrap.cpp + id: I_kwDOEVxG285t0alK + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv8KekkaiTrap.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rstair/d_a_obj_rstair.cpp + id: I_kwDOEVxG285t0alV + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rstair.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_smgdoor/d_a_obj_smgdoor.cpp + id: I_kwDOEVxG285t0ali + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_smgdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_maki/d_a_obj_maki.cpp + id: I_kwDOEVxG285t0aly + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_maki.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6ChangeGate/d_a_obj_lv6ChangeGate.cpp + id: I_kwDOEVxG285t0al9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6ChangeGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_mato/d_a_obj_mato.cpp + id: I_kwDOEVxG285t0amM + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mato.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swpush2/d_a_obj_swpush2.cpp + id: I_kwDOEVxG285t0amb + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swpush2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_chest/d_a_obj_chest.cpp + id: I_kwDOEVxG285t0aml + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_chest.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_dust/d_a_obj_dust.cpp + id: I_kwDOEVxG285t0amz + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_dust.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4gear/d_a_obj_lv4gear.cpp + id: I_kwDOEVxG285t0am- + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4gear.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swhang/d_a_obj_swhang.cpp + id: I_kwDOEVxG285t0anH + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swhang.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kazeneko/d_a_obj_kazeneko.cpp + id: I_kwDOEVxG285t0anW + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kazeneko.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ita/d_a_obj_ita.cpp + id: I_kwDOEVxG285t0anl + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ita.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ss_drink/d_a_obj_ss_drink.cpp + id: I_kwDOEVxG285t0ant + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ss_drink.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crvlh_down/d_a_obj_crvlh_down.cpp + id: I_kwDOEVxG285t0an8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crvlh_down.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_nagaisu/d_a_obj_nagaisu.cpp + id: I_kwDOEVxG285t0aoJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_nagaisu.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kita/d_a_obj_kita.cpp + id: I_kwDOEVxG285t0aoe + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kita.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crvgate/d_a_obj_crvgate.cpp + id: I_kwDOEVxG285t0a1u + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crvgate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_crystal/d_a_obj_crystal.cpp + id: I_kwDOEVxG285t0a11 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_crystal.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kbacket/d_a_obj_kbacket.cpp + id: I_kwDOEVxG285t0a2F + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kbacket.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_batta/d_a_obj_batta.cpp + id: I_kwDOEVxG285t0a2Z + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_batta.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_magne_arm/d_a_obj_magne_arm.cpp + id: I_kwDOEVxG285t0a2p + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_magne_arm.cpp +- body: null + file_path: rel/d/a/obj/mirror/d_a_obj_mirror_table/d_a_obj_mirror_table.cpp + id: I_kwDOEVxG285t0a21 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mirror_table.cpp +- body: null + file_path: rel/d/a/obj/mirror/d_a_obj_mirror_screw/d_a_obj_mirror_screw.cpp + id: I_kwDOEVxG285t0a3B + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mirror_screw.cpp +- body: null + file_path: rel/d/a/obj/mirror/d_a_obj_mirror_sand/d_a_obj_mirror_sand.cpp + id: I_kwDOEVxG285t0a3T + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mirror_sand.cpp +- body: null + file_path: rel/d/a/obj/mirror/d_a_obj_mirror_6pole/d_a_obj_mirror_6pole.cpp + id: I_kwDOEVxG285t0a3m + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mirror_6pole.cpp +- body: null + file_path: rel/d/a/obj/mirror/d_a_obj_mirror_chain/d_a_obj_mirror_chain.cpp + id: I_kwDOEVxG285t0a35 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_mirror_chain.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6SwGate/d_a_obj_lv6SwGate.cpp + id: I_kwDOEVxG285t0a4I + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6SwGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6bemos/d_a_obj_lv6bemos.cpp + id: I_kwDOEVxG285t0a4c + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6bemos.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rfHole/d_a_obj_rfHole.cpp + id: I_kwDOEVxG285t0a4r + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rfHole.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_szbridge/d_a_obj_szbridge.cpp + id: I_kwDOEVxG285t0a45 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_szbridge.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_tgake/d_a_obj_tgake.cpp + id: I_kwDOEVxG285t0a5K + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_tgake.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rotTrap/d_a_obj_rotTrap.cpp + id: I_kwDOEVxG285t0a5Y + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rotTrap.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_onsen/d_a_obj_onsen.cpp + id: I_kwDOEVxG285t0a5o + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_onsen.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4prelvtr/d_a_obj_lv4prelvtr.cpp + id: I_kwDOEVxG285t0a56 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4prelvtr.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ornament_cloth/d_a_obj_ornament_cloth.cpp + id: I_kwDOEVxG285t0a6I + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ornament_cloth.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_fchain/d_a_obj_fchain.cpp + id: I_kwDOEVxG285t0a6b + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_fchain.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swpush/d_a_obj_swpush.cpp + id: I_kwDOEVxG285t0bG_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swpush.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_zra_freeze/d_a_obj_zra_freeze.cpp + id: I_kwDOEVxG285t0bHS + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_zra_freeze.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_graWall/d_a_obj_graWall.cpp + id: I_kwDOEVxG285t0bHc + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_graWall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4floor/d_a_obj_lv4floor.cpp + id: I_kwDOEVxG285t0bHq + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4floor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swpropeller/d_a_obj_swpropeller.cpp + id: I_kwDOEVxG285t0bH5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swpropeller.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_life_container/d_a_obj_life_container.cpp + id: I_kwDOEVxG285t0bID + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_life_container.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_shield/d_a_obj_shield.cpp + id: I_kwDOEVxG285t0bIV + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_shield.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_waterfall/d_a_obj_waterfall.cpp + id: I_kwDOEVxG285t0bIm + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_waterfall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_stopper2/d_a_obj_stopper2.cpp + id: I_kwDOEVxG285t0bJA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_stopper2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_taFence/d_a_obj_taFence.cpp + id: I_kwDOEVxG285t0bJS + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_taFence.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_stopper/d_a_obj_stopper.cpp + id: I_kwDOEVxG285t0bJj + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_stopper.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_fan/d_a_obj_fan.cpp + id: I_kwDOEVxG285t0bJ0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_fan.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv3waterEff/d_a_obj_lv3waterEff.cpp + id: I_kwDOEVxG285t0bKH + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv3waterEff.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv4prwall/d_a_obj_lv4prwall.cpp + id: I_kwDOEVxG285t0bKa + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv4prwall.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ki/d_a_obj_ki.cpp + id: I_kwDOEVxG285t0bKm + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ki.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hasu2/d_a_obj_hasu2.cpp + id: I_kwDOEVxG285t0bK6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hasu2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_smw_stone/d_a_obj_smw_stone.cpp + id: I_kwDOEVxG285t0bLb + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_smw_stone.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_lv6Lblock/d_a_obj_lv6Lblock.cpp + id: I_kwDOEVxG285t0bL6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_lv6Lblock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_nameplate/d_a_obj_nameplate.cpp + id: I_kwDOEVxG285t0bMh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_nameplate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_iceleaf/d_a_obj_iceleaf.cpp + id: I_kwDOEVxG285t0bNI + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_iceleaf.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_bosswarp/d_a_obj_bosswarp.cpp + id: I_kwDOEVxG285t0bqb + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_bosswarp.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swBallC/d_a_obj_swBallC.cpp + id: I_kwDOEVxG285t0brB + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swBallC.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_damCps/d_a_obj_damCps.cpp + id: I_kwDOEVxG285t0brg + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_damCps.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_twGate/d_a_obj_twGate.cpp + id: I_kwDOEVxG285t0bsA + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_twGate.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_boumato/d_a_obj_boumato.cpp + id: I_kwDOEVxG285t0bsi + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_boumato.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_pillar/d_a_obj_pillar.cpp + id: I_kwDOEVxG285t0btF + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_pillar.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_yobikusa/d_a_obj_yobikusa.cpp + id: I_kwDOEVxG285t0bts + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_yobikusa.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_katatsumuri/d_a_obj_katatsumuri.cpp + id: I_kwDOEVxG285t0buQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_katatsumuri.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_swturn/d_a_obj_swturn.cpp + id: I_kwDOEVxG285t0buz + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_swturn.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_wflag/d_a_obj_wflag.cpp + id: I_kwDOEVxG285t0bvb + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_wflag.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ice_s/d_a_obj_ice_s.cpp + id: I_kwDOEVxG285t0bwB + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ice_s.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_hakai_ftr/d_a_obj_hakai_ftr.cpp + id: I_kwDOEVxG285t0bwl + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_hakai_ftr.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_warp_kbrg/d_a_obj_warp_kbrg.cpp + id: I_kwDOEVxG285t0bxG + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_warp_kbrg.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_digholl/d_a_obj_digholl.cpp + id: I_kwDOEVxG285t0bxr + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_digholl.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_warp_obrg/d_a_obj_warp_obrg.cpp + id: I_kwDOEVxG285t0byU + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_warp_obrg.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rope_bridge/d_a_obj_rope_bridge.cpp + id: I_kwDOEVxG285t0by5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rope_bridge.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_rotBridge/d_a_obj_rotBridge.cpp + id: I_kwDOEVxG285t0bzc + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_rotBridge.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_fallobj/d_a_obj_fallobj.cpp + id: I_kwDOEVxG285t0b0D + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_fallobj.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_ice_l/d_a_obj_ice_l.cpp + id: I_kwDOEVxG285t0b0f + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_ice_l.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_suisya/d_a_obj_suisya.cpp + id: I_kwDOEVxG285t0b1C + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_suisya.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_cblock/d_a_obj_cblock.cpp + id: I_kwDOEVxG285t0cVZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_cblock.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kwheel00/d_a_obj_kwheel00.cpp + id: I_kwDOEVxG285t0cWN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kwheel00.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_scannon/d_a_obj_scannon.cpp + id: I_kwDOEVxG285t0cXM + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_scannon.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_sakuita_rope/d_a_obj_sakuita_rope.cpp + id: I_kwDOEVxG285t0cYB + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_sakuita_rope.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_stick/d_a_obj_stick.cpp + id: I_kwDOEVxG285t0cYt + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_stick.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_pdoor/d_a_obj_pdoor.cpp + id: I_kwDOEVxG285t0cZh + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_pdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_catdoor/d_a_obj_catdoor.cpp + id: I_kwDOEVxG285t0cab + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_catdoor.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_firepillar2/d_a_obj_firepillar2.cpp + id: I_kwDOEVxG285t0cbN + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_firepillar2.cpp +- body: null + file_path: rel/d/a/obj/d_a_obj_kamakiri/d_a_obj_kamakiri.cpp + id: I_kwDOEVxG285t0cb1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEQw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_obj_kamakiri.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_hstop/d_a_tag_hstop.cpp + id: I_kwDOEVxG285t0ccU + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_hstop.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_wljump/d_a_tag_wljump.cpp + id: I_kwDOEVxG285t0cc0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_wljump.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_hinit/d_a_tag_hinit.cpp + id: I_kwDOEVxG285t0cdT + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_hinit.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_ret_room/d_a_tag_ret_room.cpp + id: I_kwDOEVxG285t0ceE + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_ret_room.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_lantern/d_a_tag_lantern.cpp + id: I_kwDOEVxG285t0cei + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_lantern.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_kmsg/d_a_tag_kmsg.cpp + id: I_kwDOEVxG285t0cfI + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_kmsg.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_gstart/d_a_tag_gstart.cpp + id: I_kwDOEVxG285t0cft + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_gstart.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_CstaSw/d_a_tag_CstaSw.cpp + id: I_kwDOEVxG285t0cgS + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_CstaSw.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_chkpoint/d_a_tag_chkpoint.cpp + id: I_kwDOEVxG285t0cg2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_chkpoint.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_theB_hint/d_a_tag_theB_hint.cpp + id: I_kwDOEVxG285t0chf + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_theB_hint.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_spring/d_a_tag_spring.cpp + id: I_kwDOEVxG285t0ch8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_spring.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_ajnot/d_a_tag_ajnot.cpp + id: I_kwDOEVxG285t0c_o + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_ajnot.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_allmato/d_a_tag_allmato.cpp + id: I_kwDOEVxG285t0dAL + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_allmato.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_push/d_a_tag_push.cpp + id: I_kwDOEVxG285t0dAw + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_push.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_event/d_a_tag_event.cpp + id: I_kwDOEVxG285t0dBY + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_event.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_spinner/d_a_tag_spinner.cpp + id: I_kwDOEVxG285t0dCD + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_spinner.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_shop_item/d_a_tag_shop_item.cpp + id: I_kwDOEVxG285t0dCt + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_shop_item.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_mhint/d_a_tag_mhint.cpp + id: I_kwDOEVxG285t0dDO + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_mhint.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_Lv6Gate/d_a_tag_Lv6Gate.cpp + id: I_kwDOEVxG285t0dDv + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_Lv6Gate.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_howl/d_a_tag_howl.cpp + id: I_kwDOEVxG285t0dEV + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_howl.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_wara_howl/d_a_tag_wara_howl.cpp + id: I_kwDOEVxG285t0dE6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_wara_howl.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_instruction/d_a_tag_instruction.cpp + id: I_kwDOEVxG285t0dFc + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_instruction.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_gra/d_a_tag_gra.cpp + id: I_kwDOEVxG285t0n89 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_gra.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_statue_evt/d_a_tag_statue_evt.cpp + id: I_kwDOEVxG285t0n9L + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_statue_evt.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_mwait/d_a_tag_mwait.cpp + id: I_kwDOEVxG285t0n9d + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_mwait.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_TWgate/d_a_tag_TWgate.cpp + id: I_kwDOEVxG285t0n9s + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_TWgate.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_arena/d_a_tag_arena.cpp + id: I_kwDOEVxG285t0n98 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_arena.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_pachi/d_a_tag_pachi.cpp + id: I_kwDOEVxG285t0n-N + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_pachi.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_lv2prchk/d_a_tag_lv2prchk.cpp + id: I_kwDOEVxG285t0n-f + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_lv2prchk.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_shop_camera/d_a_tag_shop_camera.cpp + id: I_kwDOEVxG285t0n-u + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_shop_camera.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_waterfall/d_a_tag_waterfall.cpp + id: I_kwDOEVxG285t0n_O + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_waterfall.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_bottle_item/d_a_tag_bottle_item.cpp + id: I_kwDOEVxG285t0n_h + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_bottle_item.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_escape/d_a_tag_escape.cpp + id: I_kwDOEVxG285t0n_3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_escape.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_mstop/d_a_tag_mstop.cpp + id: I_kwDOEVxG285t0oAM + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_mstop.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_schedule/d_a_tag_schedule.cpp + id: I_kwDOEVxG285t0oAi + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_schedule.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_smk_emt/d_a_tag_smk_emt.cpp + id: I_kwDOEVxG285t0oA0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_smk_emt.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_attack_item/d_a_tag_attack_item.cpp + id: I_kwDOEVxG285t0oBK + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_attack_item.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_poFire/d_a_tag_poFire.cpp + id: I_kwDOEVxG285t0oBc + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_poFire.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_attention/d_a_tag_attention.cpp + id: I_kwDOEVxG285t0oBx + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_attention.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_mmsg/d_a_tag_mmsg.cpp + id: I_kwDOEVxG285t0oCC + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_mmsg.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_myna_light/d_a_tag_myna_light.cpp + id: I_kwDOEVxG285t0oCU + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_myna_light.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_firewall/d_a_tag_firewall.cpp + id: I_kwDOEVxG285t0oPY + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_firewall.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_Lv7Gate/d_a_tag_Lv7Gate.cpp + id: I_kwDOEVxG285t0oPt + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_Lv7Gate.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_lv6CstaSw/d_a_tag_lv6CstaSw.cpp + id: I_kwDOEVxG285t0oQF + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_lv6CstaSw.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_chgrestart/d_a_tag_chgrestart.cpp + id: I_kwDOEVxG285t0oQV + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_chgrestart.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_guard/d_a_tag_guard.cpp + id: I_kwDOEVxG285t0oQk + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_guard.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_evtarea/d_a_tag_evtarea.cpp + id: I_kwDOEVxG285t0oQ1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_evtarea.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_camera/d_a_tag_camera.cpp + id: I_kwDOEVxG285t0oRL + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_camera.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_evt/d_a_tag_evt.cpp + id: I_kwDOEVxG285t0oRn + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_evt.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_mist/d_a_tag_mist.cpp + id: I_kwDOEVxG285t0oR6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_mist.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_lv5soup/d_a_tag_lv5soup.cpp + id: I_kwDOEVxG285t0oSO + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_lv5soup.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_setrestart/d_a_tag_setrestart.cpp + id: I_kwDOEVxG285t0oSZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_setrestart.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_sppath/d_a_tag_sppath.cpp + id: I_kwDOEVxG285t0oSt + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_sppath.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_qs/d_a_tag_qs.cpp + id: I_kwDOEVxG285t0oS6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_qs.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_stream/d_a_tag_stream.cpp + id: I_kwDOEVxG285t0oTP + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_stream.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_yami/d_a_tag_yami.cpp + id: I_kwDOEVxG285t0oTj + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_yami.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_Lv8Gate/d_a_tag_Lv8Gate.cpp + id: I_kwDOEVxG285t0oTz + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_Lv8Gate.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_kago_fall/d_a_tag_kago_fall.cpp + id: I_kwDOEVxG285t0oUK + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_kago_fall.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_rmbit_sw/d_a_tag_rmbit_sw.cpp + id: I_kwDOEVxG285t0oUd + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_rmbit_sw.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_river_back/d_a_tag_river_back.cpp + id: I_kwDOEVxG285t0oU2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_river_back.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_hjump/d_a_tag_hjump.cpp + id: I_kwDOEVxG285t0oVG + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_hjump.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_msg/d_a_tag_msg.cpp + id: I_kwDOEVxG285t0ojD + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_msg.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_watchge/d_a_tag_watchge.cpp + id: I_kwDOEVxG285t0ojW + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_watchge.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_assistance/d_a_tag_assistance.cpp + id: I_kwDOEVxG285t0ojm + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_assistance.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_lightball/d_a_tag_lightball.cpp + id: I_kwDOEVxG285t0oj2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_lightball.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_magne/d_a_tag_magne.cpp + id: I_kwDOEVxG285t0okC + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_magne.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_csw/d_a_tag_csw.cpp + id: I_kwDOEVxG285t0okW + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_csw.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_setBall/d_a_tag_setBall.cpp + id: I_kwDOEVxG285t0okm + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_setBall.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_evtmsg/d_a_tag_evtmsg.cpp + id: I_kwDOEVxG285t0ok3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_evtmsg.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_telop/d_a_tag_telop.cpp + id: I_kwDOEVxG285t0olL + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_telop.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_myna2/d_a_tag_myna2.cpp + id: I_kwDOEVxG285t0olc + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_myna2.cpp +- body: null + file_path: rel/d/a/tag/d_a_tag_ss_drink/d_a_tag_ss_drink.cpp + id: I_kwDOEVxG285t0olr + label_ids: + - LA_kwDOEVxG288AAAABWzdEaw + - LA_kwDOEVxG288AAAABWzdEow + title: d_a_tag_ss_drink.cpp +- body: null + file_path: libs/dolphin/card/CARDOpen.c + id: I_kwDOEVxG285t0omD + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDOpen.c +- body: null + file_path: libs/dolphin/card/CARDRead.c + id: I_kwDOEVxG285t0oma + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDRead.c +- body: null + file_path: libs/dolphin/card/CARDNet.c + id: I_kwDOEVxG285t0omk + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDNet.c +- body: null + file_path: libs/dolphin/card/CARDDir.c + id: I_kwDOEVxG285t0om4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDDir.c +- body: null + file_path: libs/dolphin/card/CARDMount.c + id: I_kwDOEVxG285t0onL + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDMount.c +- body: null + file_path: libs/dolphin/card/CARDWrite.c + id: I_kwDOEVxG285t0onb + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDWrite.c +- body: null + file_path: libs/dolphin/card/CARDBlock.c + id: I_kwDOEVxG285t0ono + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDBlock.c +- body: null + file_path: libs/dolphin/card/CARDCreate.c + id: I_kwDOEVxG285t0on2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDCreate.c +- body: null + file_path: libs/dolphin/card/CARDUnlock.c + id: I_kwDOEVxG285t0ooG + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDUnlock.c +- body: null + file_path: libs/dolphin/card/CARDStat.c + id: I_kwDOEVxG285t0pHl + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDStat.c +- body: null + file_path: libs/dolphin/card/CARDFormat.c + id: I_kwDOEVxG285t0pIL + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDFormat.c +- body: null + file_path: libs/dolphin/card/CARDRdwr.c + id: I_kwDOEVxG285t0pIr + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDRdwr.c +- body: null + file_path: libs/dolphin/card/CARDCheck.c + id: I_kwDOEVxG285t0pJP + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDCheck.c +- body: null + file_path: libs/dolphin/card/CARDBios.c + id: I_kwDOEVxG285t0pJz + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: CARDBios.c +- body: null + file_path: libs/dolphin/pad/Pad.c + id: I_kwDOEVxG285t0pKQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: Pad.c +- body: null + file_path: libs/dolphin/pad/Padclamp.c + id: I_kwDOEVxG285t0pKl + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: Padclamp.c +- body: null + file_path: libs/dolphin/gx/GXDraw.c + id: I_kwDOEVxG285t0pLT + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXDraw.c +- body: null + file_path: libs/dolphin/gx/GXPerf.c + id: I_kwDOEVxG285t0pLy + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXPerf.c +- body: null + file_path: libs/dolphin/gx/GXFrameBuf.c + id: I_kwDOEVxG285t0pMP + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXFrameBuf.c +- body: null + file_path: libs/dolphin/gx/GXTev.c + id: I_kwDOEVxG285t0pMv + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXTev.c +- body: null + file_path: libs/dolphin/gx/GXInit.c + id: I_kwDOEVxG285t0pNT + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXInit.c +- body: null + file_path: libs/dolphin/gx/GXTransform.c + id: I_kwDOEVxG285t0pN2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXTransform.c +- body: null + file_path: libs/dolphin/gx/GXAttr.c + id: I_kwDOEVxG285t0pOg + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXAttr.c +- body: null + file_path: libs/dolphin/gx/GXMisc.c + id: I_kwDOEVxG285t0pPB + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXMisc.c +- body: null + file_path: libs/dolphin/gx/GXDisplayList.c + id: I_kwDOEVxG285t0pPi + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXDisplayList.c +- body: null + file_path: libs/dolphin/gx/GXFifo.c + id: I_kwDOEVxG285t0pQH + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXFifo.c +- body: null + file_path: libs/dolphin/gx/GXTexture.c + id: I_kwDOEVxG285t0pQr + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXTexture.c +- body: null + file_path: libs/dolphin/gx/GXBump.c + id: I_kwDOEVxG285t0pRI + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXBump.c +- body: null + file_path: libs/dolphin/gx/GXGeometry.c + id: I_kwDOEVxG285t0pRr + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXGeometry.c +- body: null + file_path: libs/dolphin/gx/GXPixel.c + id: I_kwDOEVxG285t0pyb + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXPixel.c +- body: null + file_path: libs/dolphin/gx/GXLight.c + id: I_kwDOEVxG285t0pyq + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GXLight.c +- body: null + file_path: libs/dolphin/ai/ai.c + id: I_kwDOEVxG285t0py2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: ai.c +- body: null + file_path: libs/dolphin/gd/GDGeometry.c + id: I_kwDOEVxG285t0pzJ + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GDGeometry.c +- body: null + file_path: libs/dolphin/gd/GDBase.c + id: I_kwDOEVxG285t0pzX + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GDBase.c +- body: null + file_path: libs/dolphin/gf/GFTev.cpp + id: I_kwDOEVxG285t0pzq + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GFTev.cpp +- body: null + file_path: libs/dolphin/gf/GFLight.cpp + id: I_kwDOEVxG285t0pz7 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GFLight.cpp +- body: null + file_path: libs/dolphin/gf/GFGeometry.cpp + id: I_kwDOEVxG285t0p0K + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GFGeometry.cpp +- body: null + file_path: libs/dolphin/gf/GFPixel.cpp + id: I_kwDOEVxG285t0p0a + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: GFPixel.cpp +- body: null + file_path: libs/dolphin/db/db.c + id: I_kwDOEVxG285t0p0p + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: db.c +- body: null + file_path: libs/dolphin/si/SISamplingRate.c + id: I_kwDOEVxG285t0p02 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: SISamplingRate.c +- body: null + file_path: libs/dolphin/si/SIBios.c + id: I_kwDOEVxG285t0p1K + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: SIBios.c +- body: null + file_path: libs/dolphin/dsp/dsp_task.c + id: I_kwDOEVxG285t0p1Q + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dsp_task.c +- body: null + file_path: libs/dolphin/dsp/dsp.c + id: I_kwDOEVxG285t0p1e + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dsp.c +- body: null + file_path: libs/dolphin/dsp/dsp_debug.c + id: I_kwDOEVxG285t0p1x + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dsp_debug.c +- body: null + file_path: libs/dolphin/exi/EXIBios.c + id: I_kwDOEVxG285t0p2E + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: EXIBios.c +- body: null + file_path: libs/dolphin/exi/EXIUart.c + id: I_kwDOEVxG285t0p2V + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: EXIUart.c +- body: null + file_path: libs/dolphin/ar/ar.c + id: I_kwDOEVxG285t0p2j + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: ar.c +- body: null + file_path: libs/dolphin/ar/arq.c + id: I_kwDOEVxG285t0p2z + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: arq.c +- body: null + file_path: libs/dolphin/mtx/mtxvec.c + id: I_kwDOEVxG285t0p3F + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: mtxvec.c +- body: null + file_path: libs/dolphin/mtx/mtx.c + id: I_kwDOEVxG285t0qFq + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: mtx.c +- body: null + file_path: libs/dolphin/mtx/vec.c + id: I_kwDOEVxG285t0qF9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: vec.c +- body: null + file_path: libs/dolphin/mtx/quat.c + id: I_kwDOEVxG285t0qGN + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: quat.c +- body: null + file_path: libs/dolphin/mtx/mtx44.c + id: I_kwDOEVxG285t0qGg + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: mtx44.c +- body: null + file_path: libs/dolphin/base/PPCArch.c + id: I_kwDOEVxG285t0qGu + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: PPCArch.c +- body: null + file_path: libs/dolphin/os/OSMessage.c + id: I_kwDOEVxG285t0qGz + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSMessage.c +- body: null + file_path: libs/dolphin/os/OSSync.c + id: I_kwDOEVxG285t0qG_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSSync.c +- body: null + file_path: libs/dolphin/os/OSInterrupt.c + id: I_kwDOEVxG285t0qHO + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSInterrupt.c +- body: null + file_path: libs/dolphin/os/OSReboot.c + id: I_kwDOEVxG285t0qHg + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSReboot.c +- body: null + file_path: libs/dolphin/os/OSFont.c + id: I_kwDOEVxG285t0qHy + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSFont.c +- body: null + file_path: libs/dolphin/os/OSLink.c + id: I_kwDOEVxG285t0qIE + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSLink.c +- body: null + file_path: libs/dolphin/os/OSContext.c + id: I_kwDOEVxG285t0qIV + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSContext.c +- body: null + file_path: libs/dolphin/os/OSAudioSystem.c + id: I_kwDOEVxG285t0qIh + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSAudioSystem.c +- body: null + file_path: libs/dolphin/os/OSArena.c + id: I_kwDOEVxG285t0qIt + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSArena.c +- body: null + file_path: libs/dolphin/os/OSReset.c + id: I_kwDOEVxG285t0qI_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSReset.c +- body: null + file_path: libs/dolphin/os/OSAlloc.c + id: I_kwDOEVxG285t0qJQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSAlloc.c +- body: null + file_path: libs/dolphin/os/OSError.c + id: I_kwDOEVxG285t0qJg + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSError.c +- body: null + file_path: libs/dolphin/os/OSMutex.c + id: I_kwDOEVxG285t0qJ8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSMutex.c +- body: null + file_path: libs/dolphin/os/__ppc_eabi_init.c + id: I_kwDOEVxG285t0qKa + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: __ppc_eabi_init.c +- body: null + file_path: libs/dolphin/os/OSResetSW.c + id: I_kwDOEVxG285t0qKg + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSResetSW.c +- body: null + file_path: libs/dolphin/os/OSRtc.c + id: I_kwDOEVxG285t0qZD + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSRtc.c +- body: null + file_path: libs/dolphin/os/OSMemory.c + id: I_kwDOEVxG285t0qZU + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSMemory.c +- body: null + file_path: libs/dolphin/os/OSThread.c + id: I_kwDOEVxG285t0qZu + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSThread.c +- body: null + file_path: libs/dolphin/os/OSCache.c + id: I_kwDOEVxG285t0qaO + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSCache.c +- body: null + file_path: libs/dolphin/os/OSTime.c + id: I_kwDOEVxG285t0qan + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSTime.c +- body: null + file_path: libs/dolphin/os/OS.c + id: I_kwDOEVxG285t0qaz + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OS.c +- body: null + file_path: libs/dolphin/os/OSExec.c + id: I_kwDOEVxG285t0qbA + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSExec.c +- body: null + file_path: libs/dolphin/os/OSAlarm.c + id: I_kwDOEVxG285t0qbU + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: OSAlarm.c +- body: null + file_path: libs/dolphin/vi/vi.c + id: I_kwDOEVxG285t0qbf + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: vi.c +- body: null + file_path: libs/dolphin/dvd/fstload.c + id: I_kwDOEVxG285t0qbs + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: fstload.c +- body: null + file_path: libs/dolphin/dvd/dvd.c + id: I_kwDOEVxG285t0qb6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dvd.c +- body: null + file_path: libs/dolphin/dvd/dvdfs.c + id: I_kwDOEVxG285t0qcG + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dvdfs.c +- body: null + file_path: libs/dolphin/dvd/dvdFatal.c + id: I_kwDOEVxG285t0qcg + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dvdFatal.c +- body: null + file_path: libs/dolphin/dvd/dvdlow.c + id: I_kwDOEVxG285t0qcv + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dvdlow.c +- body: null + file_path: libs/dolphin/dvd/dvdqueue.c + id: I_kwDOEVxG285t0qc9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dvdqueue.c +- body: null + file_path: libs/dolphin/dvd/dvdidutils.c + id: I_kwDOEVxG285t0qdV + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dvdidutils.c +- body: null + file_path: libs/dolphin/dvd/dvderror.c + id: I_kwDOEVxG285t0qdf + label_ids: + - LA_kwDOEVxG288AAAABWzdEqg + title: dvderror.c +- body: null + file_path: src/c/c_damagereaction.cpp + id: I_kwDOEVxG285t0qdt + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: c_damagereaction.cpp +- body: null + file_path: src/d/d_path.cpp + id: I_kwDOEVxG285t0qd6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_path.cpp +- body: null + file_path: src/d/d_select_cursor.cpp + id: I_kwDOEVxG285t0qeH + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_select_cursor.cpp +- body: null + file_path: src/d/d_simple_model.cpp + id: I_kwDOEVxG285t0qz2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_simple_model.cpp +- body: null + file_path: src/d/d_kantera_icon_meter.cpp + id: I_kwDOEVxG285t0q0Q + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_kantera_icon_meter.cpp +- body: null + file_path: src/d/d_cam_param.cpp + id: I_kwDOEVxG285t0q0v + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_cam_param.cpp +- body: null + file_path: src/d/d_gameover.cpp + id: I_kwDOEVxG285t0q1J + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_gameover.cpp +- body: null + file_path: src/d/d_tresure.cpp + id: I_kwDOEVxG285t0q1u + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_tresure.cpp +- body: null + file_path: src/d/d_select_icon.cpp + id: I_kwDOEVxG285t0q2J + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_select_icon.cpp +- body: null + file_path: src/d/d_error_msg.cpp + id: I_kwDOEVxG285t0q2l + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_error_msg.cpp +- body: null + file_path: src/d/d_door_param2.cpp + id: I_kwDOEVxG285t0q3C + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_door_param2.cpp +- body: null + file_path: src/d/d_k_wmark.cpp + id: I_kwDOEVxG285t0q3d + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_k_wmark.cpp +- body: null + file_path: src/d/d_jnt_col.cpp + id: I_kwDOEVxG285t0q34 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_jnt_col.cpp +- body: null + file_path: src/d/d_vibration.cpp + id: I_kwDOEVxG285t0q4W + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_vibration.cpp +- body: null + file_path: src/d/d_kyeff.cpp + id: I_kwDOEVxG285t0yUs + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_kyeff.cpp +- body: null + file_path: src/d/d_scope.cpp + id: I_kwDOEVxG285t0yU6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_scope.cpp +- body: null + file_path: src/d/d_envse.cpp + id: I_kwDOEVxG285t0yVK + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_envse.cpp +- body: null + file_path: src/d/d_insect.cpp + id: I_kwDOEVxG285t0yVg + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_insect.cpp +- body: null + file_path: src/d/d_item_data.cpp + id: I_kwDOEVxG285t0yVx + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_item_data.cpp +- body: null + file_path: src/d/d_ev_camera.cpp + id: I_kwDOEVxG285t0yV- + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_ev_camera.cpp +- body: null + file_path: src/d/d_bright_check.cpp + id: I_kwDOEVxG285t0yWO + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bright_check.cpp +- body: null + file_path: src/d/d_camera.cpp + id: I_kwDOEVxG285t0yWh + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_camera.cpp +- body: null + file_path: src/d/d_demo.cpp + id: I_kwDOEVxG285t0yW0 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_demo.cpp +- body: null + file_path: src/d/d_vib_pattern.cpp + id: I_kwDOEVxG285t0yXF + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_vib_pattern.cpp +- body: null + file_path: src/d/d_bomb.cpp + id: I_kwDOEVxG285t0yXO + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bomb.cpp +- body: null + file_path: src/d/d_timer.cpp + id: I_kwDOEVxG285t0yXh + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_timer.cpp +- body: null + file_path: src/d/d_model.cpp + id: I_kwDOEVxG285t0yXv + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_model.cpp +- body: null + file_path: src/d/d_drawlist.cpp + id: I_kwDOEVxG285t0yX- + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_drawlist.cpp +- body: null + file_path: src/d/d_eye_hl.cpp + id: I_kwDOEVxG285t0yYP + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_eye_hl.cpp +- body: null + file_path: src/d/d_npc_lib.cpp + id: I_kwDOEVxG285t0yYg + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_npc_lib.cpp +- body: null + file_path: src/d/d_stage.cpp + id: I_kwDOEVxG285t0yYs + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_stage.cpp +- body: null + file_path: src/d/d_attention.cpp + id: I_kwDOEVxG285t0yY_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_attention.cpp +- body: null + file_path: src/d/d_item.cpp + id: I_kwDOEVxG285t0yZQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_item.cpp +- body: null + file_path: src/d/d_ky_thunder.cpp + id: I_kwDOEVxG285t0yZb + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_ky_thunder.cpp +- body: null + file_path: src/d/d_att_dist.cpp + id: I_kwDOEVxG285t0yq4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_att_dist.cpp +- body: null + file_path: src/d/d_spline_path.cpp + id: I_kwDOEVxG285t0yrH + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_spline_path.cpp +- body: null + file_path: src/d/d_k_wpillar.cpp + id: I_kwDOEVxG285t0yra + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_k_wpillar.cpp +- body: null + file_path: src/d/d_kyeff2.cpp + id: I_kwDOEVxG285t0yru + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_kyeff2.cpp +- body: null + file_path: src/d/d_lib.cpp + id: I_kwDOEVxG285t0ysF + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_lib.cpp +- body: null + file_path: src/d/d_resorce.cpp + id: I_kwDOEVxG285t0ysU + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_resorce.cpp +- body: null + file_path: src/d/d_name.cpp + id: I_kwDOEVxG285t0ysf + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_name.cpp +- body: null + file_path: src/d/msg/d_msg_out_font.cpp + id: I_kwDOEVxG285t0ysy + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_out_font.cpp +- body: null + file_path: src/d/msg/d_msg_string_base.cpp + id: I_kwDOEVxG285t0ytL + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_string_base.cpp +- body: null + file_path: src/d/msg/d_msg_object.cpp + id: I_kwDOEVxG285t0ytg + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_object.cpp +- body: null + file_path: src/d/msg/d_msg_class.cpp + id: I_kwDOEVxG285t0yt3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_class.cpp +- body: null + file_path: src/d/msg/d_msg_string.cpp + id: I_kwDOEVxG285t0yuM + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_string.cpp +- body: null + file_path: src/d/msg/d_msg_unit.cpp + id: I_kwDOEVxG285t0yub + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_unit.cpp +- body: null + file_path: src/d/msg/d_msg_flow.cpp + id: I_kwDOEVxG285t0yut + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_flow.cpp +- body: null + file_path: src/d/shop/d_shop_item_ctrl.cpp + id: I_kwDOEVxG285t0yvD + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_shop_item_ctrl.cpp +- body: null + file_path: src/d/shop/d_shop_camera.cpp + id: I_kwDOEVxG285t0yvX + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_shop_camera.cpp +- body: null + file_path: src/d/shop/d_shop_system.cpp + id: I_kwDOEVxG285t0yvn + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_shop_system.cpp +- body: null + file_path: src/d/com/d_com_inf_game.cpp + id: I_kwDOEVxG285t0yv2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_com_inf_game.cpp +- body: null + file_path: src/d/com/d_com_inf_actor.cpp + id: I_kwDOEVxG285t0ywH + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_com_inf_actor.cpp +- body: null + file_path: src/d/com/d_com_static.cpp + id: I_kwDOEVxG285t0ywZ + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_com_static.cpp +- body: null + file_path: src/d/pane/d_pane_class.cpp + id: I_kwDOEVxG285t0zA2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_pane_class.cpp +- body: null + file_path: src/d/pane/d_pane_class_alpha.cpp + id: I_kwDOEVxG285t0zBO + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_pane_class_alpha.cpp +- body: null + file_path: src/d/pane/d_pane_class_ex.cpp + id: I_kwDOEVxG285t0zBf + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_pane_class_ex.cpp +- body: null + file_path: src/d/ovlp/d_ovlp_fade3.cpp + id: I_kwDOEVxG285t0zBx + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_ovlp_fade3.cpp +- body: null + file_path: src/d/ovlp/d_ovlp_fade2.cpp + id: I_kwDOEVxG285t0zCE + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_ovlp_fade2.cpp +- body: null + file_path: src/d/ovlp/d_ovlp_fade.cpp + id: I_kwDOEVxG285t0zCb + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_ovlp_fade.cpp +- body: null + file_path: src/d/kankyo/d_kankyo.cpp + id: I_kwDOEVxG285t0zCo + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_kankyo.cpp +- body: null + file_path: src/d/kankyo/d_kankyo_rain.cpp + id: I_kwDOEVxG285t0zC3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_kankyo_rain.cpp +- body: null + file_path: src/d/kankyo/d_kankyo_data.cpp + id: I_kwDOEVxG285t0zDM + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_kankyo_data.cpp +- body: null + file_path: src/d/kankyo/d_kankyo_wether.cpp + id: I_kwDOEVxG285t0zDj + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_kankyo_wether.cpp +- body: null + file_path: src/d/meter/d_meter_haihai.cpp + id: I_kwDOEVxG285t0zEG + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter_haihai.cpp +- body: null + file_path: src/d/meter/d_meter_button.cpp + id: I_kwDOEVxG285t0zEY + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter_button.cpp +- body: null + file_path: src/d/meter/d_meter_map.cpp + id: I_kwDOEVxG285t0zEj + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter_map.cpp +- body: null + file_path: src/d/meter/d_meter2_info.cpp + id: I_kwDOEVxG285t0zEy + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter2_info.cpp +- body: null + file_path: src/d/meter/d_meter2.cpp + id: I_kwDOEVxG285t0zFL + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter2.cpp +- body: null + file_path: src/d/meter/d_meter2_draw.cpp + id: I_kwDOEVxG285t0zFf + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter2_draw.cpp +- body: null + file_path: src/d/meter/d_meter_HIO.cpp + id: I_kwDOEVxG285t0zF3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter_HIO.cpp +- body: null + file_path: src/d/meter/d_meter_hakusha.cpp + id: I_kwDOEVxG285t0zGU + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter_hakusha.cpp +- body: null + file_path: src/d/meter/d_meter_string.cpp + id: I_kwDOEVxG285t0zGj + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_meter_string.cpp +- body: null + file_path: src/d/file/d_file_sel_warning.cpp + id: I_kwDOEVxG285t0zG3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_file_sel_warning.cpp +- body: null + file_path: src/d/file/d_file_sel_info.cpp + id: I_kwDOEVxG285t0zWz + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_file_sel_info.cpp +- body: null + file_path: src/d/file/d_file_select.cpp + id: I_kwDOEVxG285t0zXI + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_file_select.cpp +- body: null + file_path: src/d/cc/d_cc_d.cpp + id: I_kwDOEVxG285t0zXh + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_cc_d.cpp +- body: null + file_path: src/d/cc/d_cc_mass_s.cpp + id: I_kwDOEVxG285t0zXz + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_cc_mass_s.cpp +- body: null + file_path: src/d/cc/d_cc_uty.cpp + id: I_kwDOEVxG285t0zX_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_cc_uty.cpp +- body: null + file_path: src/d/cc/d_cc_s.cpp + id: I_kwDOEVxG285t0zYR + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_cc_s.cpp +- body: null + file_path: src/d/cc/d_cc_d_nonmatching.cpp + id: I_kwDOEVxG285t0zYo + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_cc_d_nonmatching.cpp +- body: null + file_path: src/d/event/d_event.cpp + id: I_kwDOEVxG285t0zY9 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_event.cpp +- body: null + file_path: src/d/event/d_event_lib.cpp + id: I_kwDOEVxG285t0zZP + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_event_lib.cpp +- body: null + file_path: src/d/event/d_event_data.cpp + id: I_kwDOEVxG285t0zZg + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_event_data.cpp +- body: null + file_path: src/d/event/d_event_manager.cpp + id: I_kwDOEVxG285t0zZ5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_event_manager.cpp +- body: null + file_path: src/d/menu/d_menu_letter.cpp + id: I_kwDOEVxG285t0zaL + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_letter.cpp +- body: null + file_path: src/d/menu/d_menu_save.cpp + id: I_kwDOEVxG285t0zab + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_save.cpp +- body: null + file_path: src/d/menu/d_menu_option.cpp + id: I_kwDOEVxG285t0zay + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_option.cpp +- body: null + file_path: src/d/menu/d_menu_fmap2D.cpp + id: I_kwDOEVxG285t0zbF + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_fmap2D.cpp +- body: null + file_path: src/d/menu/d_menu_window_HIO.cpp + id: I_kwDOEVxG285t0zbT + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_window_HIO.cpp +- body: null + file_path: src/d/menu/d_menu_collect.cpp + id: I_kwDOEVxG285t0zbl + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_collect.cpp +- body: null + file_path: src/d/menu/d_menu_fmap_map.cpp + id: I_kwDOEVxG285t0zb5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_fmap_map.cpp +- body: null + file_path: src/d/menu/d_menu_window.cpp + id: I_kwDOEVxG285t0zcG + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_window.cpp +- body: null + file_path: src/d/menu/d_menu_item_explain.cpp + id: I_kwDOEVxG285t0zce + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_item_explain.cpp +- body: null + file_path: src/d/menu/d_menu_ring.cpp + id: I_kwDOEVxG285t0zst + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_ring.cpp +- body: null + file_path: src/d/menu/d_menu_dmap_map.cpp + id: I_kwDOEVxG285t0ztB + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_dmap_map.cpp +- body: null + file_path: src/d/menu/d_menu_fishing.cpp + id: I_kwDOEVxG285t0ztR + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_fishing.cpp +- body: null + file_path: src/d/menu/d_menu_fmap.cpp + id: I_kwDOEVxG285t0ztl + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_fmap.cpp +- body: null + file_path: src/d/menu/d_menu_map_common.cpp + id: I_kwDOEVxG285t0zt1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_map_common.cpp +- body: null + file_path: src/d/menu/d_menu_insect.cpp + id: I_kwDOEVxG285t0zt_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_insect.cpp +- body: null + file_path: src/d/menu/d_menu_skill.cpp + id: I_kwDOEVxG285t0zuU + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_skill.cpp +- body: null + file_path: src/d/menu/d_menu_calibration.cpp + id: I_kwDOEVxG285t0zum + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_calibration.cpp +- body: null + file_path: src/d/menu/d_menu_dmap.cpp + id: I_kwDOEVxG285t0zu2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_menu_dmap.cpp +- body: null + file_path: src/d/save/d_save_HIO.cpp + id: I_kwDOEVxG285t0zvH + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_save_HIO.cpp +- body: null + file_path: src/d/save/d_save.cpp + id: I_kwDOEVxG285t0zvP + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_save.cpp +- body: null + file_path: src/d/save/d_save_init.cpp + id: I_kwDOEVxG285t0zvm + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_save_init.cpp +- body: null + file_path: src/d/map/d_map_path.cpp + id: I_kwDOEVxG285t0zwC + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_map_path.cpp +- body: null + file_path: src/d/map/d_map_path_dmap.cpp + id: I_kwDOEVxG285t0zwT + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_map_path_dmap.cpp +- body: null + file_path: src/d/map/d_map_path_fmap.cpp + id: I_kwDOEVxG285t0zws + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_map_path_fmap.cpp +- body: null + file_path: src/d/map/d_map.cpp + id: I_kwDOEVxG285t0zxA + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_map.cpp +- body: null + file_path: src/d/bg/d_bg_s_roof_chk.cpp + id: I_kwDOEVxG285t0zxR + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_roof_chk.cpp +- body: null + file_path: src/d/bg/d_bg_w_sv.cpp + id: I_kwDOEVxG285t0zxi + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_w_sv.cpp +- body: null + file_path: src/d/bg/d_bg_s_wtr_chk.cpp + id: I_kwDOEVxG285t0zx5 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_wtr_chk.cpp +- body: null + file_path: src/d/bg/d_bg_s_acch.cpp + id: I_kwDOEVxG285t0zyL + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_acch.cpp +- body: null + file_path: src/d/bg/d_bg_w.cpp + id: I_kwDOEVxG285t00Cz + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_w.cpp +- body: null + file_path: src/d/bg/d_bg_s_movebg_actor.cpp + id: I_kwDOEVxG285t00DG + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_movebg_actor.cpp +- body: null + file_path: src/d/bg/d_bg_s_poly_pass_chk.cpp + id: I_kwDOEVxG285t00DW + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_poly_pass_chk.cpp +- body: null + file_path: src/d/bg/d_bg_w_base.cpp + id: I_kwDOEVxG285t00Do + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_w_base.cpp +- body: null + file_path: src/d/bg/d_bg_s_chk.cpp + id: I_kwDOEVxG285t00D6 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_chk.cpp +- body: null + file_path: src/d/bg/d_bg_pc.cpp + id: I_kwDOEVxG285t00EO + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_pc.cpp +- body: null + file_path: src/d/bg/d_bg_w_kcol.cpp + id: I_kwDOEVxG285t00Ej + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_w_kcol.cpp +- body: null + file_path: src/d/bg/d_bg_s.cpp + id: I_kwDOEVxG285t00Ez + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s.cpp +- body: null + file_path: src/d/bg/d_bg_s_lin_chk.cpp + id: I_kwDOEVxG285t00FH + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_lin_chk.cpp +- body: null + file_path: src/d/bg/d_bg_s_sph_chk.cpp + id: I_kwDOEVxG285t00Fc + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_sph_chk.cpp +- body: null + file_path: src/d/bg/d_bg_s_grp_pass_chk.cpp + id: I_kwDOEVxG285t00F4 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_grp_pass_chk.cpp +- body: null + file_path: src/d/bg/d_bg_s_gnd_chk.cpp + id: I_kwDOEVxG285t00GO + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_gnd_chk.cpp +- body: null + file_path: src/d/bg/d_bg_s_spl_grp_chk.cpp + id: I_kwDOEVxG285t00Ge + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_s_spl_grp_chk.cpp +- body: null + file_path: src/d/bg/d_bg_plc.cpp + id: I_kwDOEVxG285t00G1 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_bg_plc.cpp +- body: null + file_path: src/d/s/d_s_play.cpp + id: I_kwDOEVxG285t00HM + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_s_play.cpp +- body: null + file_path: src/d/s/d_s_menu.cpp + id: I_kwDOEVxG285t00Hc + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_s_menu.cpp +- body: null + file_path: src/d/s/d_s_logo.cpp + id: I_kwDOEVxG285t00Hr + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_s_logo.cpp +- body: null + file_path: src/d/s/d_s_title.cpp + id: I_kwDOEVxG285t00H_ + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_s_title.cpp +- body: null + file_path: src/d/s/d_s_name.cpp + id: I_kwDOEVxG285t00IT + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_s_name.cpp +- body: null + file_path: src/d/s/d_s_room.cpp + id: I_kwDOEVxG285t00Ie + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_s_room.cpp +- body: null + file_path: src/d/particle/d_particle_copoly.cpp + id: I_kwDOEVxG285t00bO + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_particle_copoly.cpp +- body: null + file_path: src/d/particle/d_particle.cpp + id: I_kwDOEVxG285t00be + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_particle.cpp +- body: null + file_path: src/d/particle/d_particle_name.cpp + id: I_kwDOEVxG285t00bz + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_particle_name.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_explain.cpp + id: I_kwDOEVxG285t00cD + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_explain.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_place.cpp + id: I_kwDOEVxG285t00cS + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_place.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_3select.cpp + id: I_kwDOEVxG285t00co + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_3select.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_tree.cpp + id: I_kwDOEVxG285t00c8 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_tree.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_talk.cpp + id: I_kwDOEVxG285t00dQ + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_talk.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_staff.cpp + id: I_kwDOEVxG285t00dk + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_staff.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_base.cpp + id: I_kwDOEVxG285t00d2 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_base.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_howl.cpp + id: I_kwDOEVxG285t00eG + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_howl.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_light.cpp + id: I_kwDOEVxG285t00eS + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_light.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_item.cpp + id: I_kwDOEVxG285t00en + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_item.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_boss.cpp + id: I_kwDOEVxG285t00e3 + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_boss.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_arrow.cpp + id: I_kwDOEVxG285t00fG + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_arrow.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_kanban.cpp + id: I_kwDOEVxG285t00fd + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_kanban.cpp +- body: null + file_path: src/msg/scrn/d_msg_scrn_jimaku.cpp + id: I_kwDOEVxG285t00fz + label_ids: + - LA_kwDOEVxG288AAAABWzdEwA + title: d_msg_scrn_jimaku.cpp +- body: null + file_path: src/f_ap/f_ap_game.cpp + id: I_kwDOEVxG285t00gB + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_ap_game.cpp +- body: null + file_path: src/f_op/f_op_scene_tag.cpp + id: I_kwDOEVxG285t00gY + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_scene_tag.cpp +- body: null + file_path: src/f_op/f_op_kankyo.cpp + id: I_kwDOEVxG285t00gn + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_kankyo.cpp +- body: null + file_path: src/f_op/f_op_scene_pause.cpp + id: I_kwDOEVxG285t00x4 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_scene_pause.cpp +- body: null + file_path: src/f_op/f_op_msg.cpp + id: I_kwDOEVxG285t00yS + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_msg.cpp +- body: null + file_path: src/f_op/f_op_overlap_mng.cpp + id: I_kwDOEVxG285t00yi + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_overlap_mng.cpp +- body: null + file_path: src/f_op/f_op_kankyo_mng.cpp + id: I_kwDOEVxG285t00y1 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_kankyo_mng.cpp +- body: null + file_path: src/f_op/f_op_camera.cpp + id: I_kwDOEVxG285t00zN + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_camera.cpp +- body: null + file_path: src/f_op/f_op_actor.cpp + id: I_kwDOEVxG285t00zi + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_actor.cpp +- body: null + file_path: src/f_op/f_op_overlap_req.cpp + id: I_kwDOEVxG285t00z4 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_overlap_req.cpp +- body: null + file_path: src/f_op/f_op_camera_mng.cpp + id: I_kwDOEVxG285t000P + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_camera_mng.cpp +- body: null + file_path: src/f_op/f_op_actor_mng.cpp + id: I_kwDOEVxG285t000n + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_actor_mng.cpp +- body: null + file_path: src/f_op/f_op_msg_mng.cpp + id: I_kwDOEVxG285t000- + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_msg_mng.cpp +- body: null + file_path: src/f_op/f_op_view.cpp + id: I_kwDOEVxG285t09oX + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_view.cpp +- body: null + file_path: src/f_op/f_op_scene.cpp + id: I_kwDOEVxG285t09oy + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_scene.cpp +- body: null + file_path: src/f_op/f_op_actor_iter.cpp + id: I_kwDOEVxG285t09pD + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_actor_iter.cpp +- body: null + file_path: src/f_op/f_op_scene_req.cpp + id: I_kwDOEVxG285t09pY + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_scene_req.cpp +- body: null + file_path: src/f_op/f_op_scene_iter.cpp + id: I_kwDOEVxG285t09px + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_scene_iter.cpp +- body: null + file_path: src/f_op/f_op_overlap.cpp + id: I_kwDOEVxG285t09qP + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_overlap.cpp +- body: null + file_path: src/f_op/f_op_scene_mng.cpp + id: I_kwDOEVxG285t09qm + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_scene_mng.cpp +- body: null + file_path: src/f_op/f_op_draw_tag.cpp + id: I_kwDOEVxG285t09q8 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_draw_tag.cpp +- body: null + file_path: src/f_op/f_op_actor_tag.cpp + id: I_kwDOEVxG285t09rm + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_actor_tag.cpp +- body: null + file_path: src/f_op/f_op_draw_iter.cpp + id: I_kwDOEVxG285t09sF + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_op_draw_iter.cpp +- body: null + file_path: src/f_pc/f_pc_pause.cpp + id: I_kwDOEVxG285t09sb + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_pause.cpp +- body: null + file_path: src/f_pc/f_pc_create_req.cpp + id: I_kwDOEVxG285t09s4 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_create_req.cpp +- body: null + file_path: src/f_pc/f_pc_line_iter.cpp + id: I_kwDOEVxG285t09tS + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_line_iter.cpp +- body: null + file_path: src/f_pc/f_pc_node_req.cpp + id: I_kwDOEVxG285t09ts + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_node_req.cpp +- body: null + file_path: src/f_pc/f_pc_node.cpp + id: I_kwDOEVxG285t09uB + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_node.cpp +- body: null + file_path: src/f_pc/f_pc_line.cpp + id: I_kwDOEVxG285t09uY + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_line.cpp +- body: null + file_path: src/f_pc/f_pc_method_tag.cpp + id: I_kwDOEVxG285t09ut + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_method_tag.cpp +- body: null + file_path: src/f_pc/f_pc_method.cpp + id: I_kwDOEVxG285t09vH + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_method.cpp +- body: null + file_path: src/f_pc/f_pc_priority.cpp + id: I_kwDOEVxG285t09vf + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_priority.cpp +- body: null + file_path: src/f_pc/f_pc_layer.cpp + id: I_kwDOEVxG285t09vw + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_layer.cpp +- body: null + file_path: src/f_pc/f_pc_draw_priority.cpp + id: I_kwDOEVxG285t0-ED + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_draw_priority.cpp +- body: null + file_path: src/f_pc/f_pc_delete_tag.cpp + id: I_kwDOEVxG285t0-Ee + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_delete_tag.cpp +- body: null + file_path: src/f_pc/f_pc_stdcreate_req.cpp + id: I_kwDOEVxG285t0-Ew + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_stdcreate_req.cpp +- body: null + file_path: src/f_pc/f_pc_deletor.cpp + id: I_kwDOEVxG285t0-FJ + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_deletor.cpp +- body: null + file_path: src/f_pc/f_pc_base.cpp + id: I_kwDOEVxG285t0-Fh + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_base.cpp +- body: null + file_path: src/f_pc/f_pc_create_tag.cpp + id: I_kwDOEVxG285t0-F5 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_create_tag.cpp +- body: null + file_path: src/f_pc/f_pc_profile.cpp + id: I_kwDOEVxG285t0-GN + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_profile.cpp +- body: null + file_path: src/f_pc/f_pc_leaf.cpp + id: I_kwDOEVxG285t0-Gk + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_leaf.cpp +- body: null + file_path: src/f_pc/f_pc_layer_tag.cpp + id: I_kwDOEVxG285t0-G1 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_layer_tag.cpp +- body: null + file_path: src/f_pc/f_pc_draw.cpp + id: I_kwDOEVxG285t0-HG + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_draw.cpp +- body: null + file_path: src/f_pc/f_pc_method_iter.cpp + id: I_kwDOEVxG285t0-Hu + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_method_iter.cpp +- body: null + file_path: src/f_pc/f_pc_executor.cpp + id: I_kwDOEVxG285t0-II + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_executor.cpp +- body: null + file_path: src/f_pc/f_pc_creator.cpp + id: I_kwDOEVxG285t0-Ii + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_creator.cpp +- body: null + file_path: src/f_pc/f_pc_layer_iter.cpp + id: I_kwDOEVxG285t0-I- + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_layer_iter.cpp +- body: null + file_path: src/f_pc/f_pc_searcher.cpp + id: I_kwDOEVxG285t0-Jb + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_searcher.cpp +- body: null + file_path: src/f_pc/f_pc_line_tag.cpp + id: I_kwDOEVxG285t0-J0 + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_line_tag.cpp +- body: null + file_path: src/f_pc/f_pc_load.cpp + id: I_kwDOEVxG285t0-KI + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_load.cpp +- body: null + file_path: src/f_pc/f_pc_manager.cpp + id: I_kwDOEVxG285t0-KY + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_manager.cpp +- body: null + file_path: src/f_pc/f_pc_fstcreate_req.cpp + id: I_kwDOEVxG285t0-Kz + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_fstcreate_req.cpp +- body: null + file_path: src/f_pc/f_pc_create_iter.cpp + id: I_kwDOEVxG285t0-LO + label_ids: + - LA_kwDOEVxG288AAAABWzdE0A + title: f_pc_create_iter.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DPrint.cpp + id: I_kwDOEVxG285t0-yL + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DPrint.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DPicture.cpp + id: I_kwDOEVxG285t0-y0 + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DPicture.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DWindow.cpp + id: I_kwDOEVxG285t0-zf + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DWindow.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DScreen.cpp + id: I_kwDOEVxG285t0-0L + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DScreen.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DMaterial.cpp + id: I_kwDOEVxG285t0-00 + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DMaterial.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DAnmLoader_nonmatching.cpp + id: I_kwDOEVxG285t0-1k + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DAnmLoader_nonmatching.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DTevs.cpp + id: I_kwDOEVxG285t0-2a + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DTevs.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DGrafContext.cpp + id: I_kwDOEVxG285t0-3N + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DGrafContext.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DManage.cpp + id: I_kwDOEVxG285t0-4j + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DManage.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DMatBlock.cpp + id: I_kwDOEVxG285t0-5F + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DMatBlock.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DAnmLoader.cpp + id: I_kwDOEVxG285t0-50 + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DAnmLoader.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DTextBoxEx.cpp + id: I_kwDOEVxG285t0-6Z + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DTextBoxEx.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DWindowEx.cpp + id: I_kwDOEVxG285t0-7Q + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DWindowEx.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DMaterialFactory.cpp + id: I_kwDOEVxG285t0-79 + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DMaterialFactory.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DAnimation.cpp + id: I_kwDOEVxG285t0-8k + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DAnimation.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DTextBox.cpp + id: I_kwDOEVxG285t0-9W + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DTextBox.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DOrthoGraph.cpp + id: I_kwDOEVxG285t0--D + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DOrthoGraph.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DPictureEx.cpp + id: I_kwDOEVxG285t0--6 + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DPictureEx.cpp +- body: null + file_path: libs/JSystem/J2DGraph/J2DPane.cpp + id: I_kwDOEVxG285t0-_w + label_ids: + - LA_kwDOEVxG288AAAABWzdF_w + - LA_kwDOEVxG288AAAABWzdGZw + title: J2DPane.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DShapeTable.cpp + id: I_kwDOEVxG285t0_AY + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DShapeTable.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DModelData.cpp + id: I_kwDOEVxG285t0_Y8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DModelData.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DMaterialAttach.cpp + id: I_kwDOEVxG285t0_Zc + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DMaterialAttach.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DMaterialAnm.cpp + id: I_kwDOEVxG285t0_Z0 + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DMaterialAnm.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DCluster.cpp + id: I_kwDOEVxG285t0_ab + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DCluster.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DAnimation.cpp + id: I_kwDOEVxG285t0_a- + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DAnimation.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DJointTree.cpp + id: I_kwDOEVxG285t0_ba + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DJointTree.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DMtxBuffer.cpp + id: I_kwDOEVxG285t0_b8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DMtxBuffer.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DModel.cpp + id: I_kwDOEVxG285t0_cU + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DModel.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DJoint.cpp + id: I_kwDOEVxG285t0_c2 + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DJoint.cpp +- body: null + file_path: libs/JSystem/J3DGraphAnimator/J3DSkinDeform.cpp + id: I_kwDOEVxG285t0_dM + label_ids: + - LA_kwDOEVxG288AAAABWzdGMA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DSkinDeform.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DShapeMtx.cpp + id: I_kwDOEVxG285t0_dz + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DShapeMtx.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DGD.cpp + id: I_kwDOEVxG285t0_eN + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DGD.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DVertex.cpp + id: I_kwDOEVxG285t0_eq + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DVertex.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DShape.cpp + id: I_kwDOEVxG285t0_fL + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DShape.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DPacket.cpp + id: I_kwDOEVxG285t0_fw + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DPacket.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DTevs.cpp + id: I_kwDOEVxG285t0_gL + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DTevs.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DTexture.cpp + id: I_kwDOEVxG285t0_gp + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DTexture.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DTransform.cpp + id: I_kwDOEVxG285t0_hF + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DTransform.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DMatBlock.cpp + id: I_kwDOEVxG285t0_he + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DMatBlock.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DMaterial.cpp + id: I_kwDOEVxG285t0_h- + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DMaterial.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DSys.cpp + id: I_kwDOEVxG285t0_3l + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DSys.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DDrawBuffer.cpp + id: I_kwDOEVxG285t0_4A + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DDrawBuffer.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DStruct.cpp + id: I_kwDOEVxG285t0_4c + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DStruct.cpp +- body: null + file_path: libs/JSystem/J3DGraphBase/J3DShapeDraw.cpp + id: I_kwDOEVxG285t0_47 + label_ids: + - LA_kwDOEVxG288AAAABWzdFUA + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DShapeDraw.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DShapeFactory.cpp + id: I_kwDOEVxG285t0_5Y + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DShapeFactory.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DAnmLoader.cpp + id: I_kwDOEVxG285t0_52 + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DAnmLoader.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DMaterialFactory.cpp + id: I_kwDOEVxG285t0_6P + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DMaterialFactory.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DMaterialFactory_v21.cpp + id: I_kwDOEVxG285t0_6x + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DMaterialFactory_v21.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DModelLoader.cpp + id: I_kwDOEVxG285t0_7L + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DModelLoader.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DClusterLoader.cpp + id: I_kwDOEVxG285t0_7s + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DClusterLoader.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DJointFactory.cpp + id: I_kwDOEVxG285t0_8N + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DJointFactory.cpp +- body: null + file_path: libs/JSystem/J3DGraphLoader/J3DModelLoaderCalcSize.cpp + id: I_kwDOEVxG285t0_8q + label_ids: + - LA_kwDOEVxG288AAAABWzdFaw + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DModelLoaderCalcSize.cpp +- body: null + file_path: libs/JSystem/J3DU/J3DUDL.cpp + id: I_kwDOEVxG285t0_9E + label_ids: + - LA_kwDOEVxG288AAAABWzdE7g + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DUDL.cpp +- body: null + file_path: libs/JSystem/J3DU/J3DUClipper.cpp + id: I_kwDOEVxG285t0_9c + label_ids: + - LA_kwDOEVxG288AAAABWzdE7g + - LA_kwDOEVxG288AAAABWzdGZw + title: J3DUClipper.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUClusterSound.cpp + id: I_kwDOEVxG285t0_94 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUClusterSound.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASDvdThread.cpp + id: I_kwDOEVxG285t0_-T + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASDvdThread.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASHeapCtrl.cpp + id: I_kwDOEVxG285t0_-2 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASHeapCtrl.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASBank.cpp + id: I_kwDOEVxG285t0__V + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASBank.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISoundInfo.cpp + id: I_kwDOEVxG285t0__z + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISoundInfo.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISeqMgr.cpp + id: I_kwDOEVxG285t1AAR + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISeqMgr.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASAudioThread.cpp + id: I_kwDOEVxG285t1AYe + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASAudioThread.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAIAudible.cpp + id: I_kwDOEVxG285t1AY3 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAIAudible.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUInitializer.cpp + id: I_kwDOEVxG285t1AZU + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUInitializer.cpp +- body: null + file_path: libs/JSystem/JAudio2/dspproc.cpp + id: I_kwDOEVxG285t1AZ3 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: dspproc.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISoundHandles.cpp + id: I_kwDOEVxG285t1AaP + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISoundHandles.cpp +- body: null + file_path: libs/JSystem/JAudio2/dsptask.cpp + id: I_kwDOEVxG285t1Aay + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: dsptask.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASProbe.cpp + id: I_kwDOEVxG285t1AbS + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASProbe.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAIAudience.cpp + id: I_kwDOEVxG285t1Ab_ + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAIAudience.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISe.cpp + id: I_kwDOEVxG285t1AcT + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISe.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISoundParams.cpp + id: I_kwDOEVxG285t1Ac2 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISoundParams.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASResArcLoader.cpp + id: I_kwDOEVxG285t1AdO + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASResArcLoader.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISoundChild.cpp + id: I_kwDOEVxG285t1Adn + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISoundChild.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASRegisterParam.cpp + id: I_kwDOEVxG285t1AeA + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASRegisterParam.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASBasicInst.cpp + id: I_kwDOEVxG285t1AeX + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASBasicInst.cpp +- body: null + file_path: libs/JSystem/JAudio2/osdsp.cpp + id: I_kwDOEVxG285t1Aez + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: osdsp.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUAudioMgr.cpp + id: I_kwDOEVxG285t1AfT + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUAudioMgr.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASBasicWaveBank.cpp + id: I_kwDOEVxG285t1Af0 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASBasicWaveBank.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASTaskThread.cpp + id: I_kwDOEVxG285t1AgZ + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASTaskThread.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASSeqReader.cpp + id: I_kwDOEVxG285t1AhA + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASSeqReader.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASCmdStack.cpp + id: I_kwDOEVxG285t1Ahm + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASCmdStack.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAIStreamMgr.cpp + id: I_kwDOEVxG285t1A2S + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAIStreamMgr.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUAudioArcLoader.cpp + id: I_kwDOEVxG285t1A2r + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUAudioArcLoader.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASDSPChannel.cpp + id: I_kwDOEVxG285t1A3N + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASDSPChannel.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASAudioReseter.cpp + id: I_kwDOEVxG285t1A3r + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASAudioReseter.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUSeqDataBlockMgr.cpp + id: I_kwDOEVxG285t1A3_ + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUSeqDataBlockMgr.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASTrack.cpp + id: I_kwDOEVxG285t1A4b + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASTrack.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASDrumSet.cpp + id: I_kwDOEVxG285t1A42 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASDrumSet.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAIStream.cpp + id: I_kwDOEVxG285t1A5U + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAIStream.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASVoiceBank.cpp + id: I_kwDOEVxG285t1A5u + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASVoiceBank.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASDriverIF.cpp + id: I_kwDOEVxG285t1A6N + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASDriverIF.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISoundStarter.cpp + id: I_kwDOEVxG285t1A6q + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISoundStarter.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASWSParser.cpp + id: I_kwDOEVxG285t1A6_ + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASWSParser.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASAiCtrl.cpp + id: I_kwDOEVxG285t1A7d + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASAiCtrl.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUSoundTable.cpp + id: I_kwDOEVxG285t1A76 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUSoundTable.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUStreamFileTable.cpp + id: I_kwDOEVxG285t1A8V + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUStreamFileTable.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASCallback.cpp + id: I_kwDOEVxG285t1A8w + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASCallback.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUSoundAnimator.cpp + id: I_kwDOEVxG285t1A9a + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUSoundAnimator.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUSectionHeap.cpp + id: I_kwDOEVxG285t1A9y + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUSectionHeap.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASSeqParser.cpp + id: I_kwDOEVxG285t1A-N + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASSeqParser.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISeMgr.cpp + id: I_kwDOEVxG285t1A-q + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISeMgr.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASReport.cpp + id: I_kwDOEVxG285t1BTg + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASReport.cpp +- body: null + file_path: libs/JSystem/JAudio2/osdsp_task.cpp + id: I_kwDOEVxG285t1BT- + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: osdsp_task.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISeq.cpp + id: I_kwDOEVxG285t1BUi + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISeq.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUSeqCollection.cpp + id: I_kwDOEVxG285t1BVM + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUSeqCollection.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUBankTable.cpp + id: I_kwDOEVxG285t1BVv + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUBankTable.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASLfo.cpp + id: I_kwDOEVxG285t1BWG + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASLfo.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASSeqCtrl.cpp + id: I_kwDOEVxG285t1BWW + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASSeqCtrl.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASBasicBank.cpp + id: I_kwDOEVxG285t1BWu + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASBasicBank.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASSimpleWaveBank.cpp + id: I_kwDOEVxG285t1BXJ + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASSimpleWaveBank.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASAramStream.cpp + id: I_kwDOEVxG285t1BXy + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASAramStream.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASChannel.cpp + id: I_kwDOEVxG285t1Li4 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASChannel.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISound.cpp + id: I_kwDOEVxG285t1LjZ + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISound.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASCalc.cpp + id: I_kwDOEVxG285t1Lj8 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASCalc.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAISeqDataMgr.cpp + id: I_kwDOEVxG285t1LkT + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAISeqDataMgr.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASTrackPort.cpp + id: I_kwDOEVxG285t1LlD + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASTrackPort.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASOscillator.cpp + id: I_kwDOEVxG285t1Ll3 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASOscillator.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASBNKParser.cpp + id: I_kwDOEVxG285t1Lmd + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASBNKParser.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAIStreamDataMgr.cpp + id: I_kwDOEVxG285t1LnM + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAIStreamDataMgr.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASWaveArcLoader.cpp + id: I_kwDOEVxG285t1LoG + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASWaveArcLoader.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASDSPInterface.cpp + id: I_kwDOEVxG285t1Log + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASDSPInterface.cpp +- body: null + file_path: libs/JSystem/JAudio2/JASSoundParams.cpp + id: I_kwDOEVxG285t1Lo7 + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JASSoundParams.cpp +- body: null + file_path: libs/JSystem/JAudio2/JAUAudioArcInterpreter.cpp + id: I_kwDOEVxG285t1LpR + label_ids: + - LA_kwDOEVxG288AAAABWzdFDQ + - LA_kwDOEVxG288AAAABWzdGZw + title: JAUAudioArcInterpreter.cpp +- body: null + file_path: libs/JSystem/JFramework/JFWSystem.cpp + id: I_kwDOEVxG285t1Lpz + label_ids: + - LA_kwDOEVxG288AAAABWzdF0A + - LA_kwDOEVxG288AAAABWzdGZw + title: JFWSystem.cpp +- body: null + file_path: libs/JSystem/JFramework/JFWDisplay.cpp + id: I_kwDOEVxG285t1Lqe + label_ids: + - LA_kwDOEVxG288AAAABWzdF0A + - LA_kwDOEVxG288AAAABWzdGZw + title: JFWDisplay.cpp +- body: null + file_path: libs/JSystem/JGadget/binary.cpp + id: I_kwDOEVxG285t1LrB + label_ids: + - LA_kwDOEVxG288AAAABWzdFTQ + - LA_kwDOEVxG288AAAABWzdGZw + title: binary.cpp +- body: null + file_path: libs/JSystem/JGadget/std-vector.cpp + id: I_kwDOEVxG285t1Lrq + label_ids: + - LA_kwDOEVxG288AAAABWzdFTQ + - LA_kwDOEVxG288AAAABWzdGZw + title: std-vector.cpp +- body: null + file_path: libs/JSystem/JGadget/linklist.cpp + id: I_kwDOEVxG285t1Lsh + label_ids: + - LA_kwDOEVxG288AAAABWzdFTQ + - LA_kwDOEVxG288AAAABWzdGZw + title: linklist.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRSolidHeap.cpp + id: I_kwDOEVxG285t1Ls7 + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRSolidHeap.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRAramArchive.cpp + id: I_kwDOEVxG285t1LtV + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRAramArchive.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRDvdArchive.cpp + id: I_kwDOEVxG285t1MD1 + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRDvdArchive.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRFileLoader.cpp + id: I_kwDOEVxG285t1MEb + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRFileLoader.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRFileCache.cpp + id: I_kwDOEVxG285t1ME- + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRFileCache.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRDecomp.cpp + id: I_kwDOEVxG285t1MFf + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRDecomp.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRAramBlock.cpp + id: I_kwDOEVxG285t1MF- + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRAramBlock.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRDvdRipper.cpp + id: I_kwDOEVxG285t1MGa + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRDvdRipper.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRAramHeap.cpp + id: I_kwDOEVxG285t1MG8 + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRAramHeap.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRCompArchive.cpp + id: I_kwDOEVxG285t1MHk + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRCompArchive.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRAram.cpp + id: I_kwDOEVxG285t1MIM + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRAram.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRArchivePri.cpp + id: I_kwDOEVxG285t1MIv + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRArchivePri.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRDvdFile.cpp + id: I_kwDOEVxG285t1MJU + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRDvdFile.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRDvdAramRipper.cpp + id: I_kwDOEVxG285t1MJ5 + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRDvdAramRipper.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRArchivePub.cpp + id: I_kwDOEVxG285t1MKe + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRArchivePub.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRAssertHeap.cpp + id: I_kwDOEVxG285t1MK8 + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRAssertHeap.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRExpHeap.cpp + id: I_kwDOEVxG285t1MLg + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRExpHeap.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRMemArchive.cpp + id: I_kwDOEVxG285t1MMD + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRMemArchive.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRFileFinder.cpp + id: I_kwDOEVxG285t1MMa + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRFileFinder.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRHeap.cpp + id: I_kwDOEVxG285t1MM3 + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRHeap.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRDisposer.cpp + id: I_kwDOEVxG285t1MN8 + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRDisposer.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRAramStream.cpp + id: I_kwDOEVxG285t1MOY + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRAramStream.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRFile.cpp + id: I_kwDOEVxG285t1Mjp + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRFile.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRThread.cpp + id: I_kwDOEVxG285t1Mj_ + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRThread.cpp +- body: null + file_path: libs/JSystem/JKernel/JKRAramPiece.cpp + id: I_kwDOEVxG285t1Mkg + label_ids: + - LA_kwDOEVxG288AAAABWzdFVA + - LA_kwDOEVxG288AAAABWzdGZw + title: JKRAramPiece.cpp +- body: null + file_path: libs/JSystem/JMath/random.cpp + id: I_kwDOEVxG285t1Mk0 + label_ids: + - LA_kwDOEVxG288AAAABWzdF4Q + - LA_kwDOEVxG288AAAABWzdGZw + title: random.cpp +- body: null + file_path: libs/JSystem/JMath/JMATrigonometric.cpp + id: I_kwDOEVxG285t1Mlc + label_ids: + - LA_kwDOEVxG288AAAABWzdF4Q + - LA_kwDOEVxG288AAAABWzdGZw + title: JMATrigonometric.cpp +- body: null + file_path: libs/JSystem/JMath/JMath.cpp + id: I_kwDOEVxG285t1Mlt + label_ids: + - LA_kwDOEVxG288AAAABWzdF4Q + - LA_kwDOEVxG288AAAABWzdGZw + title: JMath.cpp +- body: null + file_path: libs/JSystem/JMessage/processor.cpp + id: I_kwDOEVxG285t1MmR + label_ids: + - LA_kwDOEVxG288AAAABWzdFfg + - LA_kwDOEVxG288AAAABWzdGZw + title: processor.cpp +- body: null + file_path: libs/JSystem/JMessage/locale.cpp + id: I_kwDOEVxG285t1Mmv + label_ids: + - LA_kwDOEVxG288AAAABWzdFfg + - LA_kwDOEVxG288AAAABWzdGZw + title: locale.cpp +- body: null + file_path: libs/JSystem/JMessage/data.cpp + id: I_kwDOEVxG285t1MnY + label_ids: + - LA_kwDOEVxG288AAAABWzdFfg + - LA_kwDOEVxG288AAAABWzdGZw + title: data.cpp +- body: null + file_path: libs/JSystem/JMessage/resource.cpp + id: I_kwDOEVxG285t1Mn7 + label_ids: + - LA_kwDOEVxG288AAAABWzdFfg + - LA_kwDOEVxG288AAAABWzdGZw + title: resource.cpp +- body: null + file_path: libs/JSystem/JMessage/control.cpp + id: I_kwDOEVxG285t1MpA + label_ids: + - LA_kwDOEVxG288AAAABWzdFfg + - LA_kwDOEVxG288AAAABWzdGZw + title: control.cpp +- body: null + file_path: libs/JSystem/JParticle/JPABaseShape.cpp + id: I_kwDOEVxG285t1Mpd + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPABaseShape.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAMath.cpp + id: I_kwDOEVxG285t1MqB + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAMath.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAParticle.cpp + id: I_kwDOEVxG285t1Mqw + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAParticle.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAExtraShape.cpp + id: I_kwDOEVxG285t1MrQ + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAExtraShape.cpp +- body: null + file_path: libs/JSystem/JParticle/JPADynamicsBlock.cpp + id: I_kwDOEVxG285t1Mr2 + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPADynamicsBlock.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAExTexShape.cpp + id: I_kwDOEVxG285t1MsY + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAExTexShape.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAEmitter.cpp + id: I_kwDOEVxG285t1Ms7 + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAEmitter.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAEmitterManager.cpp + id: I_kwDOEVxG285t1Mtf + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAEmitterManager.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAChildShape.cpp + id: I_kwDOEVxG285t1Mt1 + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAChildShape.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAResourceManager.cpp + id: I_kwDOEVxG285t1NEE + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAResourceManager.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAKeyBlock.cpp + id: I_kwDOEVxG285t1NEm + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAKeyBlock.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAResource.cpp + id: I_kwDOEVxG285t1NFT + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAResource.cpp +- body: null + file_path: libs/JSystem/JParticle/JPATexture.cpp + id: I_kwDOEVxG285t1NFy + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPATexture.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAResourceLoader.cpp + id: I_kwDOEVxG285t1NGW + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAResourceLoader.cpp +- body: null + file_path: libs/JSystem/JParticle/JPAFieldBlock.cpp + id: I_kwDOEVxG285t1NG1 + label_ids: + - LA_kwDOEVxG288AAAABWzdFuw + - LA_kwDOEVxG288AAAABWzdGZw + title: JPAFieldBlock.cpp +- body: null + file_path: libs/JSystem/JStage/JSGLight.cpp + id: I_kwDOEVxG285t1NHc + label_ids: + - LA_kwDOEVxG288AAAABWzdGVg + - LA_kwDOEVxG288AAAABWzdGZw + title: JSGLight.cpp +- body: null + file_path: libs/JSystem/JStage/JSGObject.cpp + id: I_kwDOEVxG285t1NIL + label_ids: + - LA_kwDOEVxG288AAAABWzdGVg + - LA_kwDOEVxG288AAAABWzdGZw + title: JSGObject.cpp +- body: null + file_path: libs/JSystem/JStage/JSGAmbientLight.cpp + id: I_kwDOEVxG285t1NIu + label_ids: + - LA_kwDOEVxG288AAAABWzdGVg + - LA_kwDOEVxG288AAAABWzdGZw + title: JSGAmbientLight.cpp +- body: null + file_path: libs/JSystem/JStage/JSGSystem.cpp + id: I_kwDOEVxG285t1NJM + label_ids: + - LA_kwDOEVxG288AAAABWzdGVg + - LA_kwDOEVxG288AAAABWzdGZw + title: JSGSystem.cpp +- body: null + file_path: libs/JSystem/JStage/JSGCamera.cpp + id: I_kwDOEVxG285t1NJ0 + label_ids: + - LA_kwDOEVxG288AAAABWzdGVg + - LA_kwDOEVxG288AAAABWzdGZw + title: JSGCamera.cpp +- body: null + file_path: libs/JSystem/JStage/JSGFog.cpp + id: I_kwDOEVxG285t1NKW + label_ids: + - LA_kwDOEVxG288AAAABWzdGVg + - LA_kwDOEVxG288AAAABWzdGZw + title: JSGFog.cpp +- body: null + file_path: libs/JSystem/JStage/JSGActor.cpp + id: I_kwDOEVxG285t1NKx + label_ids: + - LA_kwDOEVxG288AAAABWzdGVg + - LA_kwDOEVxG288AAAABWzdGZw + title: JSGActor.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JAudio2/object-sound.cpp + id: I_kwDOEVxG285t1NLS + label_ids: + - LA_kwDOEVxG288AAAABWzdFZQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object-sound.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JAudio2/control.cpp + id: I_kwDOEVxG285t1NL0 + label_ids: + - LA_kwDOEVxG288AAAABWzdFZQ + - LA_kwDOEVxG288AAAABWzdGZw + title: control.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JStage/object-ambientlight.cpp + id: I_kwDOEVxG285t1NMN + label_ids: + - LA_kwDOEVxG288AAAABWzdFKQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object-ambientlight.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JStage/object.cpp + id: I_kwDOEVxG285t1NM_ + label_ids: + - LA_kwDOEVxG288AAAABWzdFKQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JStage/object-camera.cpp + id: I_kwDOEVxG285t1NNp + label_ids: + - LA_kwDOEVxG288AAAABWzdFKQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object-camera.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JStage/object-light.cpp + id: I_kwDOEVxG285t1NOG + label_ids: + - LA_kwDOEVxG288AAAABWzdFKQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object-light.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JStage/object-actor.cpp + id: I_kwDOEVxG285t1NOb + label_ids: + - LA_kwDOEVxG288AAAABWzdFKQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object-actor.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JStage/object-fog.cpp + id: I_kwDOEVxG285t1Nk3 + label_ids: + - LA_kwDOEVxG288AAAABWzdFKQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object-fog.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JStage/control.cpp + id: I_kwDOEVxG285t1NlY + label_ids: + - LA_kwDOEVxG288AAAABWzdFKQ + - LA_kwDOEVxG288AAAABWzdGZw + title: control.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JParticle/object-particle.cpp + id: I_kwDOEVxG285t1Nl2 + label_ids: + - LA_kwDOEVxG288AAAABWzdFdA + - LA_kwDOEVxG288AAAABWzdGZw + title: object-particle.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio_JParticle/control.cpp + id: I_kwDOEVxG285t1NmV + label_ids: + - LA_kwDOEVxG288AAAABWzdFdA + - LA_kwDOEVxG288AAAABWzdGZw + title: control.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/jstudio-math.cpp + id: I_kwDOEVxG285t1Nm0 + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: jstudio-math.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/ctb-data.cpp + id: I_kwDOEVxG285t1NnW + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: ctb-data.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/fvb-data-parse.cpp + id: I_kwDOEVxG285t1Nnx + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: fvb-data-parse.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/jstudio-control.cpp + id: I_kwDOEVxG285t1NoT + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: jstudio-control.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/fvb.cpp + id: I_kwDOEVxG285t1Nov + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: fvb.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/ctb.cpp + id: I_kwDOEVxG285t1NpP + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: ctb.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/functionvalue.cpp + id: I_kwDOEVxG285t1Np4 + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: functionvalue.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/jstudio-data.cpp + id: I_kwDOEVxG285t1NqT + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: jstudio-data.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/stb-data-parse.cpp + id: I_kwDOEVxG285t1Nqt + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: stb-data-parse.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/object-id.cpp + id: I_kwDOEVxG285t1NrW + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: object-id.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/jstudio-object.cpp + id: I_kwDOEVxG285t1Nr3 + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: jstudio-object.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/stb-data.cpp + id: I_kwDOEVxG285t1Nv4 + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: stb-data.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/functionvalue-inline.cpp + id: I_kwDOEVxG285t1NwT + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: functionvalue-inline.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/fvb-inline.cpp + id: I_kwDOEVxG285t1Nwz + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: fvb-inline.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/fvb-data.cpp + id: I_kwDOEVxG285t1Nxa + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: fvb-data.cpp +- body: null + file_path: libs/JSystem/JStudio/JStudio/stb.cpp + id: I_kwDOEVxG285t1Nx_ + label_ids: + - LA_kwDOEVxG288AAAABWzdFoQ + - LA_kwDOEVxG288AAAABWzdGZw + title: stb.cpp +- body: null + file_path: libs/JSystem/JSupport/JSUFileStream.cpp + id: I_kwDOEVxG285t1OJZ + label_ids: + - LA_kwDOEVxG288AAAABWzdFXA + - LA_kwDOEVxG288AAAABWzdGZw + title: JSUFileStream.cpp +- body: null + file_path: libs/JSystem/JSupport/JSUInputStream.cpp + id: I_kwDOEVxG285t1OJ2 + label_ids: + - LA_kwDOEVxG288AAAABWzdFXA + - LA_kwDOEVxG288AAAABWzdGZw + title: JSUInputStream.cpp +- body: null + file_path: libs/JSystem/JSupport/JSUMemoryStream.cpp + id: I_kwDOEVxG285t1OKk + label_ids: + - LA_kwDOEVxG288AAAABWzdFXA + - LA_kwDOEVxG288AAAABWzdGZw + title: JSUMemoryStream.cpp +- body: null + file_path: libs/JSystem/JSupport/JSUList.cpp + id: I_kwDOEVxG285t1OLP + label_ids: + - LA_kwDOEVxG288AAAABWzdFXA + - LA_kwDOEVxG288AAAABWzdGZw + title: JSUList.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTAssert.cpp + id: I_kwDOEVxG285t1OL0 + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTAssert.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTVideo.cpp + id: I_kwDOEVxG285t1OMM + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTVideo.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTTexture.cpp + id: I_kwDOEVxG285t1OMp + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTTexture.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTCacheFont.cpp + id: I_kwDOEVxG285t1ONO + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTCacheFont.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTFader.cpp + id: I_kwDOEVxG285t1ONv + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTFader.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTDbPrint.cpp + id: I_kwDOEVxG285t1OON + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTDbPrint.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTProcBar.cpp + id: I_kwDOEVxG285t1OOj + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTProcBar.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTNameTab.cpp + id: I_kwDOEVxG285t1OO- + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTNameTab.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTFont.cpp + id: I_kwDOEVxG285t1OPh + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTFont.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTFontData_Ascfont_fix12.cpp + id: I_kwDOEVxG285t1OQA + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTFontData_Ascfont_fix12.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTDirectFile.cpp + id: I_kwDOEVxG285t1OQX + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTDirectFile.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTResource.cpp + id: I_kwDOEVxG285t1ORG + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTResource.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTDirectPrint.cpp + id: I_kwDOEVxG285t1ORq + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTDirectPrint.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTConsole.cpp + id: I_kwDOEVxG285t1OSG + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTConsole.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTGraphFifo.cpp + id: I_kwDOEVxG285t1OSt + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTGraphFifo.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTResFont.cpp + id: I_kwDOEVxG285t1OTP + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTResFont.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTXfb.cpp + id: I_kwDOEVxG285t1OrG + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTXfb.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTException.cpp + id: I_kwDOEVxG285t1Orp + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTException.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTPalette.cpp + id: I_kwDOEVxG285t1OsJ + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTPalette.cpp +- body: null + file_path: libs/JSystem/JUtility/JUTGamePad.cpp + id: I_kwDOEVxG285t1Osj + label_ids: + - LA_kwDOEVxG288AAAABWzdGFw + - LA_kwDOEVxG288AAAABWzdGZw + title: JUTGamePad.cpp +- body: null + file_path: src/m_Do/m_Do_audio.cpp + id: I_kwDOEVxG285t1OtC + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_audio.cpp +- body: null + file_path: src/m_Do/m_Do_lib.cpp + id: I_kwDOEVxG285t1Otp + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_lib.cpp +- body: null + file_path: src/m_Do/m_Do_DVDError.cpp + id: I_kwDOEVxG285t1Ot8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_DVDError.cpp +- body: null + file_path: src/m_Do/m_Do_main.cpp + id: I_kwDOEVxG285t1OuU + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_main.cpp +- body: null + file_path: src/m_Do/m_Do_ext.cpp + id: I_kwDOEVxG285t1Ouv + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_ext.cpp +- body: null + file_path: src/m_Do/m_Do_dvd_thread.cpp + id: I_kwDOEVxG285t1Ova + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_dvd_thread.cpp +- body: null + file_path: src/m_Do/m_Do_MemCard.cpp + id: I_kwDOEVxG285t1Ovv + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_MemCard.cpp +- body: null + file_path: src/m_Do/m_Do_printf.cpp + id: I_kwDOEVxG285t1OwS + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_printf.cpp +- body: null + file_path: src/m_Do/m_Do_machine.cpp + id: I_kwDOEVxG285t1Owm + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_machine.cpp +- body: null + file_path: src/m_Do/m_Do_controller_pad.cpp + id: I_kwDOEVxG285t1Oxk + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_controller_pad.cpp +- body: null + file_path: src/m_Do/m_Do_graphic.cpp + id: I_kwDOEVxG285t1OyG + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_graphic.cpp +- body: null + file_path: src/m_Do/m_Do_mtx.cpp + id: I_kwDOEVxG285t1Oyn + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_mtx.cpp +- body: null + file_path: src/m_Do/m_Do_machine_exception.cpp + id: I_kwDOEVxG285t1OzA + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_machine_exception.cpp +- body: null + file_path: src/m_Do/m_Do_MemCardRWmng.cpp + id: I_kwDOEVxG285t1Ozd + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_MemCardRWmng.cpp +- body: null + file_path: src/m_Do/m_Do_Reset.cpp + id: I_kwDOEVxG285t1Oz2 + label_ids: + - LA_kwDOEVxG288AAAABWzdGaA + title: m_Do_Reset.cpp +- body: null + file_path: src/init.c + id: I_kwDOEVxG285t1O0V + label_ids: + - LA_kwDOEVxG288AAAABWzdGdg + title: init.c +- body: null + file_path: src/__start.c + id: I_kwDOEVxG285t1PLQ + label_ids: + - LA_kwDOEVxG288AAAABWzdGdg + title: __start.c +- body: null + file_path: src/DynamicLink.cpp + id: I_kwDOEVxG285t1PL5 + label_ids: + - LA_kwDOEVxG288AAAABWzdGdg + title: DynamicLink.cpp +- body: null + file_path: src/c/c_dylink.cpp + id: I_kwDOEVxG285t1PMd + label_ids: + - LA_kwDOEVxG288AAAABWzdGdg + title: c_dylink.cpp +- body: null + file_path: libs/odenotstub/odenotstub.cpp + id: I_kwDOEVxG285t1PMy + label_ids: + - LA_kwDOEVxG288AAAABWzdGdg + title: odenotstub.cpp +- body: null + file_path: libs/odemuexi2/Src/OdemuExi2Lib/DebuggerDriver.cpp + id: I_kwDOEVxG285t1PNO + label_ids: + - LA_kwDOEVxG288AAAABWzdGdg + title: DebuggerDriver.cpp +- body: null + file_path: libs/amcstubs/AmcExi2Stubs.c + id: I_kwDOEVxG285t1PNt + label_ids: + - LA_kwDOEVxG288AAAABWzdGdg + title: AmcExi2Stubs.c +- body: null + file_path: libs/MSL_C/PPC_EABI/Src/uart_console_io_gcn.c + id: I_kwDOEVxG285t1POO + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: uart_console_io_gcn.c +- body: null + file_path: libs/MSL_C/PPC_EABI/Src/critical_regions.gamecube.c + id: I_kwDOEVxG285t1POn + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: critical_regions.gamecube.c +- body: null + file_path: libs/MSL_C/PPC_EABI/Src/math_ppc.c + id: I_kwDOEVxG285t1PPE + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: math_ppc.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/ansi_files.c + id: I_kwDOEVxG285t1PPZ + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: ansi_files.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/char_io.c + id: I_kwDOEVxG285t1PP1 + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: char_io.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/ctype.c + id: I_kwDOEVxG285t1aaE + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: ctype.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/scanf.c + id: I_kwDOEVxG285t1aap + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: scanf.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/buffer_io.c + id: I_kwDOEVxG285t1abJ + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: buffer_io.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/wchar_io.c + id: I_kwDOEVxG285t1abr + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: wchar_io.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/signal.c + id: I_kwDOEVxG285t1acL + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: signal.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/string.c + id: I_kwDOEVxG285t1acm + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: string.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/strtoul.c + id: I_kwDOEVxG285t1adS + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: strtoul.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/printf.c + id: I_kwDOEVxG285t1adt + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: printf.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/direct_io.c + id: I_kwDOEVxG285t1aeP + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: direct_io.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/mem.c + id: I_kwDOEVxG285t1aev + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: mem.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/float.c + id: I_kwDOEVxG285t1afS + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: float.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/mem_funcs.c + id: I_kwDOEVxG285t1afy + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: mem_funcs.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/misc_io.c + id: I_kwDOEVxG285t1agT + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: misc_io.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/alloc.c + id: I_kwDOEVxG285t1agp + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: alloc.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/FILE_POS.c + id: I_kwDOEVxG285t1ahQ + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: FILE_POS.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/errno.c + id: I_kwDOEVxG285t1aht + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: errno.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/arith.c + id: I_kwDOEVxG285t1aiS + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: arith.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/mbstring.c + id: I_kwDOEVxG285t1aiw + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: mbstring.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/abort_exit.c + id: I_kwDOEVxG285t1ajQ + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: abort_exit.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/file_io.c + id: I_kwDOEVxG285t1a7X + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: file_io.c +- body: null + file_path: libs/MSL_C/MSL_Common/Src/extras.c + id: I_kwDOEVxG285t1a72 + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: extras.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_modf.c + id: I_kwDOEVxG285t1a8f + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_modf.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_copysign.c + id: I_kwDOEVxG285t1a84 + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_copysign.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_ceil.c + id: I_kwDOEVxG285t1a9S + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_ceil.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_acos.c + id: I_kwDOEVxG285t1a9p + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_acos.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/k_sin.c + id: I_kwDOEVxG285t1a-G + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: k_sin.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_rem_pio2.c + id: I_kwDOEVxG285t1a-x + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_rem_pio2.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/w_pow.c + id: I_kwDOEVxG285t1a_i + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: w_pow.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_fmod.c + id: I_kwDOEVxG285t1bAS + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_fmod.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/k_tan.c + id: I_kwDOEVxG285t1bAu + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: k_tan.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_floor.c + id: I_kwDOEVxG285t1bBT + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_floor.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_sin.c + id: I_kwDOEVxG285t1bBs + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_sin.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_atan2.c + id: I_kwDOEVxG285t1bCM + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_atan2.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_asin.c + id: I_kwDOEVxG285t1bCn + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_asin.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/k_cos.c + id: I_kwDOEVxG285t1bC- + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: k_cos.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/w_acos.c + id: I_kwDOEVxG285t1bDZ + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: w_acos.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/w_asin.c + id: I_kwDOEVxG285t1bDx + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: w_asin.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/w_exp.c + id: I_kwDOEVxG285t1bES + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: w_exp.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/w_atan2.c + id: I_kwDOEVxG285t1bE- + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: w_atan2.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_exp.c + id: I_kwDOEVxG285t1bfB + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_exp.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/w_sqrt.c + id: I_kwDOEVxG285t1bfo + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: w_sqrt.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_atan.c + id: I_kwDOEVxG285t1bgO + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_atan.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_cos.c + id: I_kwDOEVxG285t1bgu + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_cos.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_sqrt.c + id: I_kwDOEVxG285t1bhV + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_sqrt.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_tan.c + id: I_kwDOEVxG285t1bh4 + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_tan.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/w_fmod.c + id: I_kwDOEVxG285t1bia + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: w_fmod.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/e_pow.c + id: I_kwDOEVxG285t1bi3 + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: e_pow.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/k_rem_pio2.c + id: I_kwDOEVxG285t1bjX + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: k_rem_pio2.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_frexp.c + id: I_kwDOEVxG285t1bj0 + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_frexp.c +- body: null + file_path: libs/MSL_C/Math/Double_precision/s_ldexp.c + id: I_kwDOEVxG285t1bkO + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: s_ldexp.c +- body: null + file_path: libs/MSL_C/MSL_Common_Embedded/Src/ansi_fp.c + id: I_kwDOEVxG285t1bkr + label_ids: + - LA_kwDOEVxG288AAAABWzdGhg + title: ansi_fp.c +- body: null + file_path: libs/Runtime.PPCEABI.H/NMWException.cpp + id: I_kwDOEVxG285t1blO + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: NMWException.cpp +- body: null + file_path: libs/Runtime.PPCEABI.H/ptmf.c + id: I_kwDOEVxG285t1blz + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: ptmf.c +- body: null + file_path: libs/Runtime.PPCEABI.H/runtime.cpp + id: I_kwDOEVxG285t1bmG + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: runtime.cpp +- body: null + file_path: libs/Runtime.PPCEABI.H/__va_arg.c + id: I_kwDOEVxG285t1bmk + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: __va_arg.c +- body: null + file_path: libs/Runtime.PPCEABI.H/CPlusLibPPC.cpp + id: I_kwDOEVxG285t1bnp + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: CPlusLibPPC.cpp +- body: null + file_path: libs/Runtime.PPCEABI.H/Gecko_ExceptionPPC.cpp + id: I_kwDOEVxG285t1boK + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: Gecko_ExceptionPPC.cpp +- body: null + file_path: libs/Runtime.PPCEABI.H/__init_cpp_exceptions.cpp + id: I_kwDOEVxG285t1bo3 + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: __init_cpp_exceptions.cpp +- body: null + file_path: libs/Runtime.PPCEABI.H/GCN_Mem_Alloc.c + id: I_kwDOEVxG285t1bpg + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: GCN_Mem_Alloc.c +- body: null + file_path: libs/Runtime.PPCEABI.H/global_destructor_chain.cpp + id: I_kwDOEVxG285t1cHE + label_ids: + - LA_kwDOEVxG288AAAABWzdGjw + title: global_destructor_chain.cpp +- body: null + file_path: libs/SSystem/SComponent/c_tree.cpp + id: I_kwDOEVxG285t1cHi + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_tree.cpp +- body: null + file_path: libs/SSystem/SComponent/c_API.cpp + id: I_kwDOEVxG285t1cH9 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_API.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_lin.cpp + id: I_kwDOEVxG285t1cJN + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_lin.cpp +- body: null + file_path: libs/SSystem/SComponent/c_bg_s_shdw_draw.cpp + id: I_kwDOEVxG285t1cJ6 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_bg_s_shdw_draw.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_cir.cpp + id: I_kwDOEVxG285t1cKm + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_cir.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m2d.cpp + id: I_kwDOEVxG285t1cLU + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m2d.cpp +- body: null + file_path: libs/SSystem/SComponent/c_sxyz.cpp + id: I_kwDOEVxG285t1cL7 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_sxyz.cpp +- body: null + file_path: libs/SSystem/SComponent/c_tag_iter.cpp + id: I_kwDOEVxG285t1cMV + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_tag_iter.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_aab.cpp + id: I_kwDOEVxG285t1cMv + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_aab.cpp +- body: null + file_path: libs/SSystem/SComponent/c_request.cpp + id: I_kwDOEVxG285t1cNM + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_request.cpp +- body: null + file_path: libs/SSystem/SComponent/c_bg_w.cpp + id: I_kwDOEVxG285t1cNu + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_bg_w.cpp +- body: null + file_path: libs/SSystem/SComponent/c_API_controller_pad.cpp + id: I_kwDOEVxG285t1cOD + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_API_controller_pad.cpp +- body: null + file_path: libs/SSystem/SComponent/c_bg_s_poly_info.cpp + id: I_kwDOEVxG285t1cOj + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_bg_s_poly_info.cpp +- body: null + file_path: libs/SSystem/SComponent/c_bg_s_chk.cpp + id: I_kwDOEVxG285t1cPK + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_bg_s_chk.cpp +- body: null + file_path: libs/SSystem/SComponent/c_node_iter.cpp + id: I_kwDOEVxG285t1cP8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_node_iter.cpp +- body: null + file_path: libs/SSystem/SComponent/c_cc_d.cpp + id: I_kwDOEVxG285t1cQn + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_cc_d.cpp +- body: null + file_path: libs/SSystem/SComponent/c_tag.cpp + id: I_kwDOEVxG285t1cRH + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_tag.cpp +- body: null + file_path: libs/SSystem/SComponent/c_node.cpp + id: I_kwDOEVxG285t1cRi + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_node.cpp +- body: null + file_path: libs/SSystem/SComponent/c_list.cpp + id: I_kwDOEVxG285t1cR8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_list.cpp +- body: null + file_path: libs/SSystem/SComponent/c_bg_s_lin_chk.cpp + id: I_kwDOEVxG285t1cqc + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_bg_s_lin_chk.cpp +- body: null + file_path: libs/SSystem/SComponent/c_counter.cpp + id: I_kwDOEVxG285t1cqz + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_counter.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d.cpp + id: I_kwDOEVxG285t1crO + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_tri.cpp + id: I_kwDOEVxG285t1crw + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_tri.cpp +- body: null + file_path: libs/SSystem/SComponent/c_malloc.cpp + id: I_kwDOEVxG285t1csQ + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_malloc.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_cyl.cpp + id: I_kwDOEVxG285t1cs6 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_cyl.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_pla.cpp + id: I_kwDOEVxG285t1ctT + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_pla.cpp +- body: null + file_path: libs/SSystem/SComponent/c_list_iter.cpp + id: I_kwDOEVxG285t1ctv + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_list_iter.cpp +- body: null + file_path: libs/SSystem/SComponent/c_tree_iter.cpp + id: I_kwDOEVxG285t1cuC + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_tree_iter.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_cps.cpp + id: I_kwDOEVxG285t1cuj + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_cps.cpp +- body: null + file_path: libs/SSystem/SComponent/c_bg_s_gnd_chk.cpp + id: I_kwDOEVxG285t1cu2 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_bg_s_gnd_chk.cpp +- body: null + file_path: libs/SSystem/SComponent/c_math.cpp + id: I_kwDOEVxG285t1cvW + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_math.cpp +- body: null + file_path: libs/SSystem/SComponent/c_xyz.cpp + id: I_kwDOEVxG285t1cvu + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_xyz.cpp +- body: null + file_path: libs/SSystem/SComponent/c_m3d_g_sph.cpp + id: I_kwDOEVxG285t1cwM + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_m3d_g_sph.cpp +- body: null + file_path: libs/SSystem/SComponent/c_API_graphic.cpp + id: I_kwDOEVxG285t1cwo + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_API_graphic.cpp +- body: null + file_path: libs/SSystem/SComponent/c_lib.cpp + id: I_kwDOEVxG285t1cw- + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_lib.cpp +- body: null + file_path: libs/SSystem/SComponent/c_angle.cpp + id: I_kwDOEVxG285t1cxd + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_angle.cpp +- body: null + file_path: libs/SSystem/SComponent/c_cc_s.cpp + id: I_kwDOEVxG285t1cx8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_cc_s.cpp +- body: null + file_path: libs/SSystem/SComponent/c_phase.cpp + id: I_kwDOEVxG285t1cyZ + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: c_phase.cpp +- body: null + file_path: libs/SSystem/SStandard/s_basic.cpp + id: I_kwDOEVxG285t1cys + label_ids: + - LA_kwDOEVxG288AAAABWzdGlg + title: s_basic.cpp +- body: null + file_path: libs/Z2AudioLib/Z2AudioMgr.cpp + id: I_kwDOEVxG285t1dLn + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2AudioMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2AudioArcLoader.cpp + id: I_kwDOEVxG285t1dMJ + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2AudioArcLoader.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SeqMgr.cpp + id: I_kwDOEVxG285t1dMp + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SeqMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SceneMgr.cpp + id: I_kwDOEVxG285t1dNC + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SceneMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2EnvSeMgr.cpp + id: I_kwDOEVxG285t1dNi + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2EnvSeMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SoundInfo.cpp + id: I_kwDOEVxG285t1dN8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SoundInfo.cpp +- body: null + file_path: libs/Z2AudioLib/Z2LinkMgr.cpp + id: I_kwDOEVxG285t1dOZ + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2LinkMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2Audience.cpp + id: I_kwDOEVxG285t1dOy + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2Audience.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SoundMgr.cpp + id: I_kwDOEVxG285t1dPT + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SoundMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SoundHandles.cpp + id: I_kwDOEVxG285t1dP0 + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SoundHandles.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SoundObject.cpp + id: I_kwDOEVxG285t1dQW + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SoundObject.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SoundObjMgr.cpp + id: I_kwDOEVxG285t1dQ3 + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SoundObjMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2Creature.cpp + id: I_kwDOEVxG285t1dRe + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2Creature.cpp +- body: null + file_path: libs/Z2AudioLib/Z2WolfHowlMgr.cpp + id: I_kwDOEVxG285t1dR8 + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2WolfHowlMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SoundStarter.cpp + id: I_kwDOEVxG285t1dSm + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SoundStarter.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SpeechMgr2.cpp + id: I_kwDOEVxG285t1dTM + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SpeechMgr2.cpp +- body: null + file_path: libs/Z2AudioLib/Z2SeMgr.cpp + id: I_kwDOEVxG285t1dUG + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2SeMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2StatusMgr.cpp + id: I_kwDOEVxG285t1dUq + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2StatusMgr.cpp +- body: null + file_path: libs/Z2AudioLib/Z2Param.cpp + id: I_kwDOEVxG285t1dVL + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2Param.cpp +- body: null + file_path: libs/Z2AudioLib/Z2Calc.cpp + id: I_kwDOEVxG285t1dVx + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2Calc.cpp +- body: null + file_path: libs/Z2AudioLib/Z2FxLineMgr.cpp + id: I_kwDOEVxG285t1dv3 + label_ids: + - LA_kwDOEVxG288AAAABWzdGnQ + title: Z2FxLineMgr.cpp +labels: +- id: LA_kwDOEVxG288AAAABWzdD7g + name: TRK_MINNOW_DOLPHIN/EXI2_GDEV_GCN +- id: LA_kwDOEVxG288AAAABWzdD9A + name: TRK_MINNOW_DOLPHIN/MetroTRK +- id: LA_kwDOEVxG288AAAABWzdD_g + name: TRK_MINNOW_DOLPHIN/dolphin +- id: LA_kwDOEVxG288AAAABWzdECg + name: TRK_MINNOW_DOLPHIN/EXI2_DDH_GCN +- id: LA_kwDOEVxG288AAAABWzdEIw + name: TRK_MINNOW_DOLPHIN/utils +- id: LA_kwDOEVxG288AAAABWzdEMA + name: TRK_MINNOW_DOLPHIN/ppc +- id: LA_kwDOEVxG288AAAABWzdEPA + name: TRK_MINNOW_DOLPHIN +- id: LA_kwDOEVxG288AAAABWzdEQw + name: Actors/Object +- id: LA_kwDOEVxG288AAAABWzdEUQ + name: Actors/NPC +- id: LA_kwDOEVxG288AAAABWzdEaw + name: Actors/Tag +- id: LA_kwDOEVxG288AAAABWzdEdA + name: Actors/Boss +- id: LA_kwDOEVxG288AAAABWzdEgQ + name: Actors/Door +- id: LA_kwDOEVxG288AAAABWzdEiQ + name: Actors/Enemy +- id: LA_kwDOEVxG288AAAABWzdEkw + name: Actors/Kytag +- id: LA_kwDOEVxG288AAAABWzdEow + name: Actors +- id: LA_kwDOEVxG288AAAABWzdEqg + name: dolphin +- id: LA_kwDOEVxG288AAAABWzdEwA + name: dolzel +- id: LA_kwDOEVxG288AAAABWzdE0A + name: Framework +- id: LA_kwDOEVxG288AAAABWzdE7g + name: JSystem/J3DU +- id: LA_kwDOEVxG288AAAABWzdFDQ + name: JSystem/JAudio2 +- id: LA_kwDOEVxG288AAAABWzdFKQ + name: JSystem/JStudio_JStage +- id: LA_kwDOEVxG288AAAABWzdFTQ + name: JSystem/JGadget +- id: LA_kwDOEVxG288AAAABWzdFUA + name: JSystem/J3DGraphBase +- id: LA_kwDOEVxG288AAAABWzdFVA + name: JSystem/JKernel +- id: LA_kwDOEVxG288AAAABWzdFXA + name: JSystem/JSupport +- id: LA_kwDOEVxG288AAAABWzdFZQ + name: JSystem/JStudio_JAudio2 +- id: LA_kwDOEVxG288AAAABWzdFaw + name: JSystem/J3DGraphLoader +- id: LA_kwDOEVxG288AAAABWzdFdA + name: JSystem/JStudio_JParticle +- id: LA_kwDOEVxG288AAAABWzdFfg + name: JSystem/JMessage +- id: LA_kwDOEVxG288AAAABWzdFoQ + name: JSystem/JStudio +- id: LA_kwDOEVxG288AAAABWzdFuw + name: JSystem/JParticle +- id: LA_kwDOEVxG288AAAABWzdF0A + name: JSystem/JFramework +- id: LA_kwDOEVxG288AAAABWzdF4Q + name: JSystem/JMath +- id: LA_kwDOEVxG288AAAABWzdF_w + name: JSystem/J2DGraph +- id: LA_kwDOEVxG288AAAABWzdGFw + name: JSystem/JUtility +- id: LA_kwDOEVxG288AAAABWzdGMA + name: JSystem/J3DGraphAnimator +- id: LA_kwDOEVxG288AAAABWzdGVg + name: JSystem/JStage +- id: LA_kwDOEVxG288AAAABWzdGZw + name: JSystem +- id: LA_kwDOEVxG288AAAABWzdGaA + name: m_Do +- id: LA_kwDOEVxG288AAAABWzdGdg + name: Misc +- id: LA_kwDOEVxG288AAAABWzdGhg + name: MSL_C +- id: LA_kwDOEVxG288AAAABWzdGjw + name: Runtime.PPCEABI.H +- id: LA_kwDOEVxG288AAAABWzdGlg + name: SSystem +- id: LA_kwDOEVxG288AAAABWzdGnQ + name: Z2AudioLib +projects: +- id: PVT_kwDOAwlwhM4AT36n + items: + - issue_id: I_kwDOEVxG285tz9b- + item_id: PVTI_lADOAwlwhM4AT36nzgIctdM + - issue_id: I_kwDOEVxG285tz9cE + item_id: PVTI_lADOAwlwhM4AT36nzgIctdY + - issue_id: I_kwDOEVxG285tz9cR + item_id: PVTI_lADOAwlwhM4AT36nzgIctdc + - issue_id: I_kwDOEVxG285tz9cj + item_id: PVTI_lADOAwlwhM4AT36nzgIctdk + - issue_id: I_kwDOEVxG285tz9c3 + item_id: PVTI_lADOAwlwhM4AT36nzgIctdo + - issue_id: I_kwDOEVxG285tz9dD + item_id: PVTI_lADOAwlwhM4AT36nzgIctdw + - issue_id: I_kwDOEVxG285tz9dL + item_id: PVTI_lADOAwlwhM4AT36nzgIcteA + - issue_id: I_kwDOEVxG285tz9dY + item_id: PVTI_lADOAwlwhM4AT36nzgIcteM + - issue_id: I_kwDOEVxG285tz9de + item_id: PVTI_lADOAwlwhM4AT36nzgIcteY + - issue_id: I_kwDOEVxG285tz9dq + item_id: PVTI_lADOAwlwhM4AT36nzgIctes + - issue_id: I_kwDOEVxG285tz9d4 + item_id: PVTI_lADOAwlwhM4AT36nzgIcte4 + - issue_id: I_kwDOEVxG285tz9eB + item_id: PVTI_lADOAwlwhM4AT36nzgIcte8 + - issue_id: I_kwDOEVxG285tz9eO + item_id: PVTI_lADOAwlwhM4AT36nzgIctfM + - issue_id: I_kwDOEVxG285tz9eZ + item_id: PVTI_lADOAwlwhM4AT36nzgIctfU + - issue_id: I_kwDOEVxG285tz9ee + item_id: PVTI_lADOAwlwhM4AT36nzgIctfc + - issue_id: I_kwDOEVxG285tz9ep + item_id: PVTI_lADOAwlwhM4AT36nzgIctfk + - issue_id: I_kwDOEVxG285tz9e6 + item_id: PVTI_lADOAwlwhM4AT36nzgIctfs + - issue_id: I_kwDOEVxG285tz9fJ + item_id: PVTI_lADOAwlwhM4AT36nzgIctfw + - issue_id: I_kwDOEVxG285tz9fb + item_id: PVTI_lADOAwlwhM4AT36nzgIctf4 + - issue_id: I_kwDOEVxG285tz9fl + item_id: PVTI_lADOAwlwhM4AT36nzgIctgI + - issue_id: I_kwDOEVxG285tz9qg + item_id: PVTI_lADOAwlwhM4AT36nzgIctgM + - issue_id: I_kwDOEVxG285tz9qr + item_id: PVTI_lADOAwlwhM4AT36nzgIctgY + - issue_id: I_kwDOEVxG285tz9q4 + item_id: PVTI_lADOAwlwhM4AT36nzgIctgk + - issue_id: I_kwDOEVxG285tz9rF + item_id: PVTI_lADOAwlwhM4AT36nzgIctgw + - issue_id: I_kwDOEVxG285tz9rS + item_id: PVTI_lADOAwlwhM4AT36nzgIctg4 + - issue_id: I_kwDOEVxG285tz9rf + item_id: PVTI_lADOAwlwhM4AT36nzgIcthA + - issue_id: I_kwDOEVxG285tz9rt + item_id: PVTI_lADOAwlwhM4AT36nzgIcthM + - issue_id: I_kwDOEVxG285tz9r- + item_id: PVTI_lADOAwlwhM4AT36nzgIcthU + - issue_id: I_kwDOEVxG285tz9sL + item_id: PVTI_lADOAwlwhM4AT36nzgIcthk + number: 4 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT36nzgMsghc + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_TRK_MINNOW_DOLPHIN +- id: PVT_kwDOAwlwhM4AT36t + items: + - issue_id: I_kwDOEVxG285tz9sY + item_id: PVTI_lADOAwlwhM4AT36tzgIctiA + - issue_id: I_kwDOEVxG285tz9sg + item_id: PVTI_lADOAwlwhM4AT36tzgIctiM + - issue_id: I_kwDOEVxG285tz9st + item_id: PVTI_lADOAwlwhM4AT36tzgIctiU + - issue_id: I_kwDOEVxG285tz9s1 + item_id: PVTI_lADOAwlwhM4AT36tzgIctig + - issue_id: I_kwDOEVxG285tz9s9 + item_id: PVTI_lADOAwlwhM4AT36tzgIctio + - issue_id: I_kwDOEVxG285tz9tF + item_id: PVTI_lADOAwlwhM4AT36tzgIcti0 + - issue_id: I_kwDOEVxG285tz9tS + item_id: PVTI_lADOAwlwhM4AT36tzgIctjA + - issue_id: I_kwDOEVxG285tz9tY + item_id: PVTI_lADOAwlwhM4AT36tzgIctjU + - issue_id: I_kwDOEVxG285tz9to + item_id: PVTI_lADOAwlwhM4AT36tzgIctjg + - issue_id: I_kwDOEVxG285tz9t1 + item_id: PVTI_lADOAwlwhM4AT36tzgIctjo + - issue_id: I_kwDOEVxG285tz9uB + item_id: PVTI_lADOAwlwhM4AT36tzgIctj0 + - issue_id: I_kwDOEVxG285tz94q + item_id: PVTI_lADOAwlwhM4AT36tzgIctj8 + - issue_id: I_kwDOEVxG285tz942 + item_id: PVTI_lADOAwlwhM4AT36tzgIctkA + - issue_id: I_kwDOEVxG285tz95D + item_id: PVTI_lADOAwlwhM4AT36tzgIctkE + - issue_id: I_kwDOEVxG285tz95Q + item_id: PVTI_lADOAwlwhM4AT36tzgIctkU + - issue_id: I_kwDOEVxG285tz95b + item_id: PVTI_lADOAwlwhM4AT36tzgIctkY + - issue_id: I_kwDOEVxG285tz95l + item_id: PVTI_lADOAwlwhM4AT36tzgIctko + - issue_id: I_kwDOEVxG285tz95z + item_id: PVTI_lADOAwlwhM4AT36tzgIctkw + - issue_id: I_kwDOEVxG285tz96D + item_id: PVTI_lADOAwlwhM4AT36tzgIctk4 + - issue_id: I_kwDOEVxG285tz96O + item_id: PVTI_lADOAwlwhM4AT36tzgIctlE + - issue_id: I_kwDOEVxG285tz96X + item_id: PVTI_lADOAwlwhM4AT36tzgIctlM + - issue_id: I_kwDOEVxG285tz96h + item_id: PVTI_lADOAwlwhM4AT36tzgIctlg + - issue_id: I_kwDOEVxG285tz96v + item_id: PVTI_lADOAwlwhM4AT36tzgIctls + - issue_id: I_kwDOEVxG285tz965 + item_id: PVTI_lADOAwlwhM4AT36tzgIctl4 + - issue_id: I_kwDOEVxG285tz97D + item_id: PVTI_lADOAwlwhM4AT36tzgIctmA + - issue_id: I_kwDOEVxG285tz97S + item_id: PVTI_lADOAwlwhM4AT36tzgIctmQ + - issue_id: I_kwDOEVxG285tz97c + item_id: PVTI_lADOAwlwhM4AT36tzgIctmg + - issue_id: I_kwDOEVxG285tz97q + item_id: PVTI_lADOAwlwhM4AT36tzgIctmo + - issue_id: I_kwDOEVxG285tz97y + item_id: PVTI_lADOAwlwhM4AT36tzgIctmw + - issue_id: I_kwDOEVxG285tz979 + item_id: PVTI_lADOAwlwhM4AT36tzgIctnA + - issue_id: I_kwDOEVxG285tz98J + item_id: PVTI_lADOAwlwhM4AT36tzgIctnI + - issue_id: I_kwDOEVxG285tz-Gp + item_id: PVTI_lADOAwlwhM4AT36tzgIctnM + - issue_id: I_kwDOEVxG285tz-G1 + item_id: PVTI_lADOAwlwhM4AT36tzgIctnQ + - issue_id: I_kwDOEVxG285tz-HJ + item_id: PVTI_lADOAwlwhM4AT36tzgIctnc + - issue_id: I_kwDOEVxG285tz-HZ + item_id: PVTI_lADOAwlwhM4AT36tzgIctno + - issue_id: I_kwDOEVxG285tz-Hj + item_id: PVTI_lADOAwlwhM4AT36tzgIctnw + - issue_id: I_kwDOEVxG285tz-Ht + item_id: PVTI_lADOAwlwhM4AT36tzgIctn4 + - issue_id: I_kwDOEVxG285tz-H1 + item_id: PVTI_lADOAwlwhM4AT36tzgIctoA + - issue_id: I_kwDOEVxG285tz-H_ + item_id: PVTI_lADOAwlwhM4AT36tzgIctoI + - issue_id: I_kwDOEVxG285tz-IL + item_id: PVTI_lADOAwlwhM4AT36tzgIctoY + - issue_id: I_kwDOEVxG285tz-IV + item_id: PVTI_lADOAwlwhM4AT36tzgIctok + - issue_id: I_kwDOEVxG285tz-Ij + item_id: PVTI_lADOAwlwhM4AT36tzgIctoo + - issue_id: I_kwDOEVxG285tz-Iq + item_id: PVTI_lADOAwlwhM4AT36tzgIctpE + - issue_id: I_kwDOEVxG285tz-Ix + item_id: PVTI_lADOAwlwhM4AT36tzgIctpM + - issue_id: I_kwDOEVxG285tz-I4 + item_id: PVTI_lADOAwlwhM4AT36tzgIctpQ + - issue_id: I_kwDOEVxG285tz-JB + item_id: PVTI_lADOAwlwhM4AT36tzgIctpY + - issue_id: I_kwDOEVxG285tz-JJ + item_id: PVTI_lADOAwlwhM4AT36tzgIctpk + - issue_id: I_kwDOEVxG285tz-Jd + item_id: PVTI_lADOAwlwhM4AT36tzgIctpo + - issue_id: I_kwDOEVxG285tz-Jp + item_id: PVTI_lADOAwlwhM4AT36tzgIctp4 + - issue_id: I_kwDOEVxG285tz-J2 + item_id: PVTI_lADOAwlwhM4AT36tzgIctqE + - issue_id: I_kwDOEVxG285tz-KA + item_id: PVTI_lADOAwlwhM4AT36tzgIctqQ + - issue_id: I_kwDOEVxG285tz-W1 + item_id: PVTI_lADOAwlwhM4AT36tzgIctqY + - issue_id: I_kwDOEVxG285tz-XL + item_id: PVTI_lADOAwlwhM4AT36tzgIctqk + - issue_id: I_kwDOEVxG285tz-XY + item_id: PVTI_lADOAwlwhM4AT36tzgIctqs + - issue_id: I_kwDOEVxG285tz-Xk + item_id: PVTI_lADOAwlwhM4AT36tzgIctq0 + - issue_id: I_kwDOEVxG285tz-Xt + item_id: PVTI_lADOAwlwhM4AT36tzgIctrE + - issue_id: I_kwDOEVxG285tz-X9 + item_id: PVTI_lADOAwlwhM4AT36tzgIctrQ + - issue_id: I_kwDOEVxG285tz-YH + item_id: PVTI_lADOAwlwhM4AT36tzgIctrc + - issue_id: I_kwDOEVxG285tz-YL + item_id: PVTI_lADOAwlwhM4AT36tzgIctrs + - issue_id: I_kwDOEVxG285tz-YV + item_id: PVTI_lADOAwlwhM4AT36tzgIctr4 + - issue_id: I_kwDOEVxG285tz-Yb + item_id: PVTI_lADOAwlwhM4AT36tzgIctsM + - issue_id: I_kwDOEVxG285tz-Yl + item_id: PVTI_lADOAwlwhM4AT36tzgIctsY + - issue_id: I_kwDOEVxG285tz-Y2 + item_id: PVTI_lADOAwlwhM4AT36tzgIctsg + - issue_id: I_kwDOEVxG285tz-Y8 + item_id: PVTI_lADOAwlwhM4AT36tzgIctss + - issue_id: I_kwDOEVxG285tz-ZJ + item_id: PVTI_lADOAwlwhM4AT36tzgIctsw + - issue_id: I_kwDOEVxG285tz-ZU + item_id: PVTI_lADOAwlwhM4AT36tzgIcts8 + - issue_id: I_kwDOEVxG285tz-Zf + item_id: PVTI_lADOAwlwhM4AT36tzgIcttM + - issue_id: I_kwDOEVxG285tz-Zq + item_id: PVTI_lADOAwlwhM4AT36tzgIcttU + - issue_id: I_kwDOEVxG285tz-Z4 + item_id: PVTI_lADOAwlwhM4AT36tzgIcttc + - issue_id: I_kwDOEVxG285tz-aB + item_id: PVTI_lADOAwlwhM4AT36tzgIctto + - issue_id: I_kwDOEVxG285tz-aQ + item_id: PVTI_lADOAwlwhM4AT36tzgIctt0 + - issue_id: I_kwDOEVxG285tz-lS + item_id: PVTI_lADOAwlwhM4AT36tzgIctt8 + - issue_id: I_kwDOEVxG285tz-ld + item_id: PVTI_lADOAwlwhM4AT36tzgIctuE + - issue_id: I_kwDOEVxG285tz-lo + item_id: PVTI_lADOAwlwhM4AT36tzgIctuM + - issue_id: I_kwDOEVxG285tz-lx + item_id: PVTI_lADOAwlwhM4AT36tzgIctuY + - issue_id: I_kwDOEVxG285tz-mB + item_id: PVTI_lADOAwlwhM4AT36tzgIctuk + - issue_id: I_kwDOEVxG285tz-mL + item_id: PVTI_lADOAwlwhM4AT36tzgIctuo + - issue_id: I_kwDOEVxG285tz-mX + item_id: PVTI_lADOAwlwhM4AT36tzgIctu0 + - issue_id: I_kwDOEVxG285tz-mg + item_id: PVTI_lADOAwlwhM4AT36tzgIctu4 + - issue_id: I_kwDOEVxG285tz-mx + item_id: PVTI_lADOAwlwhM4AT36tzgIctvA + - issue_id: I_kwDOEVxG285tz-nA + item_id: PVTI_lADOAwlwhM4AT36tzgIctvQ + - issue_id: I_kwDOEVxG285tz-nM + item_id: PVTI_lADOAwlwhM4AT36tzgIctvc + - issue_id: I_kwDOEVxG285tz-nU + item_id: PVTI_lADOAwlwhM4AT36tzgIctvg + - issue_id: I_kwDOEVxG285tz-nf + item_id: PVTI_lADOAwlwhM4AT36tzgIctvo + - issue_id: I_kwDOEVxG285tz-np + item_id: PVTI_lADOAwlwhM4AT36tzgIctv0 + - issue_id: I_kwDOEVxG285tz-n1 + item_id: PVTI_lADOAwlwhM4AT36tzgIctv8 + - issue_id: I_kwDOEVxG285tz-oB + item_id: PVTI_lADOAwlwhM4AT36tzgIctwI + - issue_id: I_kwDOEVxG285tz-oG + item_id: PVTI_lADOAwlwhM4AT36tzgIctwQ + - issue_id: I_kwDOEVxG285tz-oP + item_id: PVTI_lADOAwlwhM4AT36tzgIctwU + - issue_id: I_kwDOEVxG285tz-oU + item_id: PVTI_lADOAwlwhM4AT36tzgIctwc + - issue_id: I_kwDOEVxG285tz-of + item_id: PVTI_lADOAwlwhM4AT36tzgIctwk + - issue_id: I_kwDOEVxG285tz-zX + item_id: PVTI_lADOAwlwhM4AT36tzgIctwo + - issue_id: I_kwDOEVxG285tz-zy + item_id: PVTI_lADOAwlwhM4AT36tzgIctw8 + - issue_id: I_kwDOEVxG285tz-0A + item_id: PVTI_lADOAwlwhM4AT36tzgIctxI + - issue_id: I_kwDOEVxG285tz-0F + item_id: PVTI_lADOAwlwhM4AT36tzgIctxU + - issue_id: I_kwDOEVxG285tz-0S + item_id: PVTI_lADOAwlwhM4AT36tzgIctxg + - issue_id: I_kwDOEVxG285tz-0e + item_id: PVTI_lADOAwlwhM4AT36tzgIctxk + - issue_id: I_kwDOEVxG285tz-0n + item_id: PVTI_lADOAwlwhM4AT36tzgIctxw + - issue_id: I_kwDOEVxG285tz-00 + item_id: PVTI_lADOAwlwhM4AT36tzgIctx4 + - issue_id: I_kwDOEVxG285tz-1A + item_id: PVTI_lADOAwlwhM4AT36tzgIctyA + - issue_id: I_kwDOEVxG285tz-1I + item_id: PVTI_lADOAwlwhM4AT36tzgIctyY + - issue_id: I_kwDOEVxG285tz-1m + item_id: PVTI_lADOAwlwhM4AT36tzgIctyc + - issue_id: I_kwDOEVxG285tz-1u + item_id: PVTI_lADOAwlwhM4AT36tzgIctyg + - issue_id: I_kwDOEVxG285tz-12 + item_id: PVTI_lADOAwlwhM4AT36tzgIctyo + - issue_id: I_kwDOEVxG285tz-2A + item_id: PVTI_lADOAwlwhM4AT36tzgIcty0 + - issue_id: I_kwDOEVxG285tz-2K + item_id: PVTI_lADOAwlwhM4AT36tzgIcty4 + - issue_id: I_kwDOEVxG285tz-2a + item_id: PVTI_lADOAwlwhM4AT36tzgIctzM + - issue_id: I_kwDOEVxG285tz-2l + item_id: PVTI_lADOAwlwhM4AT36tzgIctzU + - issue_id: I_kwDOEVxG285tz-2x + item_id: PVTI_lADOAwlwhM4AT36tzgIctzc + - issue_id: I_kwDOEVxG285tz-29 + item_id: PVTI_lADOAwlwhM4AT36tzgIctzk + - issue_id: I_kwDOEVxG285tz-3M + item_id: PVTI_lADOAwlwhM4AT36tzgIctzw + - issue_id: I_kwDOEVxG285tz_CY + item_id: PVTI_lADOAwlwhM4AT36tzgIctz8 + - issue_id: I_kwDOEVxG285tz_Cm + item_id: PVTI_lADOAwlwhM4AT36tzgIct0I + - issue_id: I_kwDOEVxG285tz_C5 + item_id: PVTI_lADOAwlwhM4AT36tzgIct0Y + - issue_id: I_kwDOEVxG285tz_DC + item_id: PVTI_lADOAwlwhM4AT36tzgIct00 + - issue_id: I_kwDOEVxG285tz_DO + item_id: PVTI_lADOAwlwhM4AT36tzgIct08 + - issue_id: I_kwDOEVxG285tz_Dd + item_id: PVTI_lADOAwlwhM4AT36tzgIct1M + - issue_id: I_kwDOEVxG285tz_Ds + item_id: PVTI_lADOAwlwhM4AT36tzgIct1Y + - issue_id: I_kwDOEVxG285tz_D4 + item_id: PVTI_lADOAwlwhM4AT36tzgIct1g + - issue_id: I_kwDOEVxG285tz_EE + item_id: PVTI_lADOAwlwhM4AT36tzgIct1s + - issue_id: I_kwDOEVxG285tz_ES + item_id: PVTI_lADOAwlwhM4AT36tzgIct10 + - issue_id: I_kwDOEVxG285t0ECu + item_id: PVTI_lADOAwlwhM4AT36tzgIct18 + - issue_id: I_kwDOEVxG285t0EC4 + item_id: PVTI_lADOAwlwhM4AT36tzgIct2M + - issue_id: I_kwDOEVxG285t0EDL + item_id: PVTI_lADOAwlwhM4AT36tzgIct2Q + - issue_id: I_kwDOEVxG285t0EDY + item_id: PVTI_lADOAwlwhM4AT36tzgIct2Y + - issue_id: I_kwDOEVxG285t0EDs + item_id: PVTI_lADOAwlwhM4AT36tzgIct2g + - issue_id: I_kwDOEVxG285t0ED7 + item_id: PVTI_lADOAwlwhM4AT36tzgIct2s + - issue_id: I_kwDOEVxG285t0EER + item_id: PVTI_lADOAwlwhM4AT36tzgIct20 + - issue_id: I_kwDOEVxG285t0EEk + item_id: PVTI_lADOAwlwhM4AT36tzgIct24 + - issue_id: I_kwDOEVxG285t0EE0 + item_id: PVTI_lADOAwlwhM4AT36tzgIct3A + - issue_id: I_kwDOEVxG285t0EFA + item_id: PVTI_lADOAwlwhM4AT36tzgIct3U + - issue_id: I_kwDOEVxG285t0EFO + item_id: PVTI_lADOAwlwhM4AT36tzgIct3c + - issue_id: I_kwDOEVxG285t0EFe + item_id: PVTI_lADOAwlwhM4AT36tzgIct3s + - issue_id: I_kwDOEVxG285t0EFq + item_id: PVTI_lADOAwlwhM4AT36tzgIct30 + - issue_id: I_kwDOEVxG285t0EF0 + item_id: PVTI_lADOAwlwhM4AT36tzgIct4A + - issue_id: I_kwDOEVxG285t0EGA + item_id: PVTI_lADOAwlwhM4AT36tzgIct4I + - issue_id: I_kwDOEVxG285t0EGJ + item_id: PVTI_lADOAwlwhM4AT36tzgIct4c + - issue_id: I_kwDOEVxG285t0EGV + item_id: PVTI_lADOAwlwhM4AT36tzgIct4o + - issue_id: I_kwDOEVxG285t0EGg + item_id: PVTI_lADOAwlwhM4AT36tzgIct44 + - issue_id: I_kwDOEVxG285t0EGy + item_id: PVTI_lADOAwlwhM4AT36tzgIct5I + - issue_id: I_kwDOEVxG285t0EHC + item_id: PVTI_lADOAwlwhM4AT36tzgIct5k + - issue_id: I_kwDOEVxG285t0ESL + item_id: PVTI_lADOAwlwhM4AT36tzgIct5s + - issue_id: I_kwDOEVxG285t0ESW + item_id: PVTI_lADOAwlwhM4AT36tzgIct54 + - issue_id: I_kwDOEVxG285t0ESk + item_id: PVTI_lADOAwlwhM4AT36tzgIct6A + - issue_id: I_kwDOEVxG285t0ES0 + item_id: PVTI_lADOAwlwhM4AT36tzgIct6I + - issue_id: I_kwDOEVxG285t0ES8 + item_id: PVTI_lADOAwlwhM4AT36tzgIct6M + - issue_id: I_kwDOEVxG285t0ETF + item_id: PVTI_lADOAwlwhM4AT36tzgIct6U + - issue_id: I_kwDOEVxG285t0ETY + item_id: PVTI_lADOAwlwhM4AT36tzgIct6c + - issue_id: I_kwDOEVxG285t0ETk + item_id: PVTI_lADOAwlwhM4AT36tzgIct6g + - issue_id: I_kwDOEVxG285t0ETx + item_id: PVTI_lADOAwlwhM4AT36tzgIct6o + - issue_id: I_kwDOEVxG285t0EUC + item_id: PVTI_lADOAwlwhM4AT36tzgIct64 + - issue_id: I_kwDOEVxG285t0EUN + item_id: PVTI_lADOAwlwhM4AT36tzgIct68 + - issue_id: I_kwDOEVxG285t0EUd + item_id: PVTI_lADOAwlwhM4AT36tzgIct7A + - issue_id: I_kwDOEVxG285t0EUw + item_id: PVTI_lADOAwlwhM4AT36tzgIct7M + - issue_id: I_kwDOEVxG285t0EU8 + item_id: PVTI_lADOAwlwhM4AT36tzgIct7g + - issue_id: I_kwDOEVxG285t0EVI + item_id: PVTI_lADOAwlwhM4AT36tzgIct7o + - issue_id: I_kwDOEVxG285t0EVP + item_id: PVTI_lADOAwlwhM4AT36tzgIct74 + - issue_id: I_kwDOEVxG285t0EVf + item_id: PVTI_lADOAwlwhM4AT36tzgIct8Q + - issue_id: I_kwDOEVxG285t0EVx + item_id: PVTI_lADOAwlwhM4AT36tzgIct8s + - issue_id: I_kwDOEVxG285t0EV9 + item_id: PVTI_lADOAwlwhM4AT36tzgIct88 + - issue_id: I_kwDOEVxG285t0EWJ + item_id: PVTI_lADOAwlwhM4AT36tzgIct9I + - issue_id: I_kwDOEVxG285t0Eg4 + item_id: PVTI_lADOAwlwhM4AT36tzgIct9Q + - issue_id: I_kwDOEVxG285t0Ehc + item_id: PVTI_lADOAwlwhM4AT36tzgIct9Y + - issue_id: I_kwDOEVxG285t0Eh1 + item_id: PVTI_lADOAwlwhM4AT36tzgIct9k + - issue_id: I_kwDOEVxG285t0EiL + item_id: PVTI_lADOAwlwhM4AT36tzgIct9o + - issue_id: I_kwDOEVxG285t0EiX + item_id: PVTI_lADOAwlwhM4AT36tzgIct98 + - issue_id: I_kwDOEVxG285t0Eil + item_id: PVTI_lADOAwlwhM4AT36tzgIct-Q + - issue_id: I_kwDOEVxG285t0Eiz + item_id: PVTI_lADOAwlwhM4AT36tzgIct-Y + - issue_id: I_kwDOEVxG285t0Ei5 + item_id: PVTI_lADOAwlwhM4AT36tzgIct-g + - issue_id: I_kwDOEVxG285t0EjF + item_id: PVTI_lADOAwlwhM4AT36tzgIct-k + - issue_id: I_kwDOEVxG285t0EjY + item_id: PVTI_lADOAwlwhM4AT36tzgIct-o + - issue_id: I_kwDOEVxG285t0Ejd + item_id: PVTI_lADOAwlwhM4AT36tzgIct-0 + - issue_id: I_kwDOEVxG285t0Ejx + item_id: PVTI_lADOAwlwhM4AT36tzgIct_A + - issue_id: I_kwDOEVxG285t0Ej9 + item_id: PVTI_lADOAwlwhM4AT36tzgIct_U + - issue_id: I_kwDOEVxG285t0EkI + item_id: PVTI_lADOAwlwhM4AT36tzgIct_Y + - issue_id: I_kwDOEVxG285t0EkT + item_id: PVTI_lADOAwlwhM4AT36tzgIct_k + - issue_id: I_kwDOEVxG285t0Ekb + item_id: PVTI_lADOAwlwhM4AT36tzgIct_0 + - issue_id: I_kwDOEVxG285t0Eko + item_id: PVTI_lADOAwlwhM4AT36tzgIcuAA + - issue_id: I_kwDOEVxG285t0Eky + item_id: PVTI_lADOAwlwhM4AT36tzgIcuAQ + - issue_id: I_kwDOEVxG285t0Ek_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuAc + - issue_id: I_kwDOEVxG285t0ElM + item_id: PVTI_lADOAwlwhM4AT36tzgIcuAw + - issue_id: I_kwDOEVxG285t0EvX + item_id: PVTI_lADOAwlwhM4AT36tzgIcuA0 + - issue_id: I_kwDOEVxG285t0Evl + item_id: PVTI_lADOAwlwhM4AT36tzgIcuA4 + - issue_id: I_kwDOEVxG285t0Evx + item_id: PVTI_lADOAwlwhM4AT36tzgIcuBI + - issue_id: I_kwDOEVxG285t0Ev9 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuBU + - issue_id: I_kwDOEVxG285t0EwN + item_id: PVTI_lADOAwlwhM4AT36tzgIcuBY + - issue_id: I_kwDOEVxG285t0EwV + item_id: PVTI_lADOAwlwhM4AT36tzgIcuBg + - issue_id: I_kwDOEVxG285t0Ewi + item_id: PVTI_lADOAwlwhM4AT36tzgIcuBk + - issue_id: I_kwDOEVxG285t0Ewv + item_id: PVTI_lADOAwlwhM4AT36tzgIcuB4 + - issue_id: I_kwDOEVxG285t0Ew- + item_id: PVTI_lADOAwlwhM4AT36tzgIcuB8 + - issue_id: I_kwDOEVxG285t0ExL + item_id: PVTI_lADOAwlwhM4AT36tzgIcuCQ + - issue_id: I_kwDOEVxG285t0ExW + item_id: PVTI_lADOAwlwhM4AT36tzgIcuCY + - issue_id: I_kwDOEVxG285t0Exk + item_id: PVTI_lADOAwlwhM4AT36tzgIcuCc + - issue_id: I_kwDOEVxG285t0Exy + item_id: PVTI_lADOAwlwhM4AT36tzgIcuCo + - issue_id: I_kwDOEVxG285t0Ex- + item_id: PVTI_lADOAwlwhM4AT36tzgIcuC0 + - issue_id: I_kwDOEVxG285t0EyQ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuDA + - issue_id: I_kwDOEVxG285t0Eyf + item_id: PVTI_lADOAwlwhM4AT36tzgIcuDI + - issue_id: I_kwDOEVxG285t0Ey0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuDQ + - issue_id: I_kwDOEVxG285t0EzC + item_id: PVTI_lADOAwlwhM4AT36tzgIcuDY + - issue_id: I_kwDOEVxG285t0EzJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuDo + - issue_id: I_kwDOEVxG285t0EzR + item_id: PVTI_lADOAwlwhM4AT36tzgIcuDw + - issue_id: I_kwDOEVxG285t0E9s + item_id: PVTI_lADOAwlwhM4AT36tzgIcuD8 + - issue_id: I_kwDOEVxG285t0E96 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuEE + - issue_id: I_kwDOEVxG285t0E-J + item_id: PVTI_lADOAwlwhM4AT36tzgIcuEc + - issue_id: I_kwDOEVxG285t0E-R + item_id: PVTI_lADOAwlwhM4AT36tzgIcuEk + - issue_id: I_kwDOEVxG285t0E-l + item_id: PVTI_lADOAwlwhM4AT36tzgIcuEw + - issue_id: I_kwDOEVxG285t0E-v + item_id: PVTI_lADOAwlwhM4AT36tzgIcuE8 + - issue_id: I_kwDOEVxG285t0E-_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuFI + - issue_id: I_kwDOEVxG285t0E_H + item_id: PVTI_lADOAwlwhM4AT36tzgIcuFc + - issue_id: I_kwDOEVxG285t0E_Z + item_id: PVTI_lADOAwlwhM4AT36tzgIcuFo + - issue_id: I_kwDOEVxG285t0E_h + item_id: PVTI_lADOAwlwhM4AT36tzgIcuF0 + - issue_id: I_kwDOEVxG285t0E_s + item_id: PVTI_lADOAwlwhM4AT36tzgIcuF4 + - issue_id: I_kwDOEVxG285t0E_- + item_id: PVTI_lADOAwlwhM4AT36tzgIcuGA + - issue_id: I_kwDOEVxG285t0FAM + item_id: PVTI_lADOAwlwhM4AT36tzgIcuGU + - issue_id: I_kwDOEVxG285t0FAU + item_id: PVTI_lADOAwlwhM4AT36tzgIcuGk + - issue_id: I_kwDOEVxG285t0FAk + item_id: PVTI_lADOAwlwhM4AT36tzgIcuGs + - issue_id: I_kwDOEVxG285t0FAs + item_id: PVTI_lADOAwlwhM4AT36tzgIcuGw + - issue_id: I_kwDOEVxG285t0FA0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuG0 + - issue_id: I_kwDOEVxG285t0FA_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuG8 + - issue_id: I_kwDOEVxG285t0FBP + item_id: PVTI_lADOAwlwhM4AT36tzgIcuHQ + - issue_id: I_kwDOEVxG285t0FBa + item_id: PVTI_lADOAwlwhM4AT36tzgIcuHk + - issue_id: I_kwDOEVxG285t0FNJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuH0 + - issue_id: I_kwDOEVxG285t0FNe + item_id: PVTI_lADOAwlwhM4AT36tzgIcuH8 + - issue_id: I_kwDOEVxG285t0FNs + item_id: PVTI_lADOAwlwhM4AT36tzgIcuIE + - issue_id: I_kwDOEVxG285t0FNx + item_id: PVTI_lADOAwlwhM4AT36tzgIcuIQ + - issue_id: I_kwDOEVxG285t0FN5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuIU + - issue_id: I_kwDOEVxG285t0FOG + item_id: PVTI_lADOAwlwhM4AT36tzgIcuIY + - issue_id: I_kwDOEVxG285t0FOY + item_id: PVTI_lADOAwlwhM4AT36tzgIcuIk + - issue_id: I_kwDOEVxG285t0FOj + item_id: PVTI_lADOAwlwhM4AT36tzgIcuIs + - issue_id: I_kwDOEVxG285t0FOu + item_id: PVTI_lADOAwlwhM4AT36tzgIcuI0 + - issue_id: I_kwDOEVxG285t0FO8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuI8 + - issue_id: I_kwDOEVxG285t0FPK + item_id: PVTI_lADOAwlwhM4AT36tzgIcuJQ + - issue_id: I_kwDOEVxG285t0FPc + item_id: PVTI_lADOAwlwhM4AT36tzgIcuJc + - issue_id: I_kwDOEVxG285t0FPp + item_id: PVTI_lADOAwlwhM4AT36tzgIcuJo + - issue_id: I_kwDOEVxG285t0FP5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuJ8 + - issue_id: I_kwDOEVxG285t0FQK + item_id: PVTI_lADOAwlwhM4AT36tzgIcuKE + - issue_id: I_kwDOEVxG285t0FQb + item_id: PVTI_lADOAwlwhM4AT36tzgIcuKI + - issue_id: I_kwDOEVxG285t0FQt + item_id: PVTI_lADOAwlwhM4AT36tzgIcuKY + - issue_id: I_kwDOEVxG285t0FRA + item_id: PVTI_lADOAwlwhM4AT36tzgIcuKk + - issue_id: I_kwDOEVxG285t0FRP + item_id: PVTI_lADOAwlwhM4AT36tzgIcuKw + - issue_id: I_kwDOEVxG285t0FRY + item_id: PVTI_lADOAwlwhM4AT36tzgIcuK0 + - issue_id: I_kwDOEVxG285t0Fb- + item_id: PVTI_lADOAwlwhM4AT36tzgIcuLE + - issue_id: I_kwDOEVxG285t0FcW + item_id: PVTI_lADOAwlwhM4AT36tzgIcuLM + - issue_id: I_kwDOEVxG285t0Fcg + item_id: PVTI_lADOAwlwhM4AT36tzgIcuLY + - issue_id: I_kwDOEVxG285t0Fcr + item_id: PVTI_lADOAwlwhM4AT36tzgIcuLg + - issue_id: I_kwDOEVxG285t0Fc0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuLk + - issue_id: I_kwDOEVxG285t0FdB + item_id: PVTI_lADOAwlwhM4AT36tzgIcuLs + - issue_id: I_kwDOEVxG285t0FdQ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuLw + - issue_id: I_kwDOEVxG285t0Fda + item_id: PVTI_lADOAwlwhM4AT36tzgIcuME + - issue_id: I_kwDOEVxG285t0Fds + item_id: PVTI_lADOAwlwhM4AT36tzgIcuMM + - issue_id: I_kwDOEVxG285t0Fd5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuMk + - issue_id: I_kwDOEVxG285t0FeG + item_id: PVTI_lADOAwlwhM4AT36tzgIcuMs + - issue_id: I_kwDOEVxG285t0FeS + item_id: PVTI_lADOAwlwhM4AT36tzgIcuM4 + - issue_id: I_kwDOEVxG285t0Fej + item_id: PVTI_lADOAwlwhM4AT36tzgIcuNA + - issue_id: I_kwDOEVxG285t0Feu + item_id: PVTI_lADOAwlwhM4AT36tzgIcuNI + - issue_id: I_kwDOEVxG285t0Fe- + item_id: PVTI_lADOAwlwhM4AT36tzgIcuNY + - issue_id: I_kwDOEVxG285t0FfF + item_id: PVTI_lADOAwlwhM4AT36tzgIcuNc + - issue_id: I_kwDOEVxG285t0FfR + item_id: PVTI_lADOAwlwhM4AT36tzgIcuNs + - issue_id: I_kwDOEVxG285t0Ffd + item_id: PVTI_lADOAwlwhM4AT36tzgIcuN4 + - issue_id: I_kwDOEVxG285t0Ffr + item_id: PVTI_lADOAwlwhM4AT36tzgIcuOA + - issue_id: I_kwDOEVxG285t0Ff2 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuOQ + - issue_id: I_kwDOEVxG285t0Fp6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuOo + - issue_id: I_kwDOEVxG285t0FqJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuO4 + - issue_id: I_kwDOEVxG285t0FqR + item_id: PVTI_lADOAwlwhM4AT36tzgIcuPE + - issue_id: I_kwDOEVxG285t0Fqf + item_id: PVTI_lADOAwlwhM4AT36tzgIcuPc + - issue_id: I_kwDOEVxG285t0Fqp + item_id: PVTI_lADOAwlwhM4AT36tzgIcuPo + - issue_id: I_kwDOEVxG285t0Fq0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuP0 + - issue_id: I_kwDOEVxG285t0FrA + item_id: PVTI_lADOAwlwhM4AT36tzgIcuP4 + - issue_id: I_kwDOEVxG285t0FrR + item_id: PVTI_lADOAwlwhM4AT36tzgIcuQA + - issue_id: I_kwDOEVxG285t0Frd + item_id: PVTI_lADOAwlwhM4AT36tzgIcuQI + - issue_id: I_kwDOEVxG285t0Frp + item_id: PVTI_lADOAwlwhM4AT36tzgIcuQU + - issue_id: I_kwDOEVxG285t0LEJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuQg + - issue_id: I_kwDOEVxG285t0LEd + item_id: PVTI_lADOAwlwhM4AT36tzgIcuQk + - issue_id: I_kwDOEVxG285t0LEt + item_id: PVTI_lADOAwlwhM4AT36tzgIcuQw + - issue_id: I_kwDOEVxG285t0LE3 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuQ0 + - issue_id: I_kwDOEVxG285t0LFA + item_id: PVTI_lADOAwlwhM4AT36tzgIcuRA + - issue_id: I_kwDOEVxG285t0LFX + item_id: PVTI_lADOAwlwhM4AT36tzgIcuRM + - issue_id: I_kwDOEVxG285t0LFq + item_id: PVTI_lADOAwlwhM4AT36tzgIcuRU + - issue_id: I_kwDOEVxG285t0LF5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuRg + - issue_id: I_kwDOEVxG285t0LGJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuR0 + - issue_id: I_kwDOEVxG285t0LGV + item_id: PVTI_lADOAwlwhM4AT36tzgIcuR4 + - issue_id: I_kwDOEVxG285t0LGi + item_id: PVTI_lADOAwlwhM4AT36tzgIcuSE + - issue_id: I_kwDOEVxG285t0LGy + item_id: PVTI_lADOAwlwhM4AT36tzgIcuSY + - issue_id: I_kwDOEVxG285t0LG- + item_id: PVTI_lADOAwlwhM4AT36tzgIcuSs + - issue_id: I_kwDOEVxG285t0LHO + item_id: PVTI_lADOAwlwhM4AT36tzgIcuS4 + - issue_id: I_kwDOEVxG285t0LHZ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuTI + - issue_id: I_kwDOEVxG285t0LHk + item_id: PVTI_lADOAwlwhM4AT36tzgIcuTU + - issue_id: I_kwDOEVxG285t0LHw + item_id: PVTI_lADOAwlwhM4AT36tzgIcuTY + - issue_id: I_kwDOEVxG285t0LH7 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuTk + - issue_id: I_kwDOEVxG285t0LIE + item_id: PVTI_lADOAwlwhM4AT36tzgIcuTw + - issue_id: I_kwDOEVxG285t0LIY + item_id: PVTI_lADOAwlwhM4AT36tzgIcuUA + - issue_id: I_kwDOEVxG285t0LTH + item_id: PVTI_lADOAwlwhM4AT36tzgIcuUI + - issue_id: I_kwDOEVxG285t0LTS + item_id: PVTI_lADOAwlwhM4AT36tzgIcuUM + - issue_id: I_kwDOEVxG285t0LTg + item_id: PVTI_lADOAwlwhM4AT36tzgIcuUY + - issue_id: I_kwDOEVxG285t0LT8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuUo + - issue_id: I_kwDOEVxG285t0LUI + item_id: PVTI_lADOAwlwhM4AT36tzgIcuUw + - issue_id: I_kwDOEVxG285t0LUT + item_id: PVTI_lADOAwlwhM4AT36tzgIcuU8 + - issue_id: I_kwDOEVxG285t0LUi + item_id: PVTI_lADOAwlwhM4AT36tzgIcuVA + - issue_id: I_kwDOEVxG285t0LUq + item_id: PVTI_lADOAwlwhM4AT36tzgIcuVI + - issue_id: I_kwDOEVxG285t0LU6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuVM + - issue_id: I_kwDOEVxG285t0LVF + item_id: PVTI_lADOAwlwhM4AT36tzgIcuVg + - issue_id: I_kwDOEVxG285t0LVW + item_id: PVTI_lADOAwlwhM4AT36tzgIcuVs + - issue_id: I_kwDOEVxG285t0LVm + item_id: PVTI_lADOAwlwhM4AT36tzgIcuV4 + - issue_id: I_kwDOEVxG285t0LVz + item_id: PVTI_lADOAwlwhM4AT36tzgIcuV8 + - issue_id: I_kwDOEVxG285t0LV- + item_id: PVTI_lADOAwlwhM4AT36tzgIcuWA + - issue_id: I_kwDOEVxG285t0LWN + item_id: PVTI_lADOAwlwhM4AT36tzgIcuWM + - issue_id: I_kwDOEVxG285t0LWd + item_id: PVTI_lADOAwlwhM4AT36tzgIcuWY + - issue_id: I_kwDOEVxG285t0LWw + item_id: PVTI_lADOAwlwhM4AT36tzgIcuWs + - issue_id: I_kwDOEVxG285t0LXD + item_id: PVTI_lADOAwlwhM4AT36tzgIcuXI + - issue_id: I_kwDOEVxG285t0LXU + item_id: PVTI_lADOAwlwhM4AT36tzgIcuXc + - issue_id: I_kwDOEVxG285t0LXf + item_id: PVTI_lADOAwlwhM4AT36tzgIcuXk + - issue_id: I_kwDOEVxG285t0Lhz + item_id: PVTI_lADOAwlwhM4AT36tzgIcuX0 + - issue_id: I_kwDOEVxG285t0Lh_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuYA + - issue_id: I_kwDOEVxG285t0LiL + item_id: PVTI_lADOAwlwhM4AT36tzgIcuYU + - issue_id: I_kwDOEVxG285t0Lie + item_id: PVTI_lADOAwlwhM4AT36tzgIcuYc + - issue_id: I_kwDOEVxG285t0Lit + item_id: PVTI_lADOAwlwhM4AT36tzgIcuYo + - issue_id: I_kwDOEVxG285t0Li3 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuY4 + - issue_id: I_kwDOEVxG285t0LjA + item_id: PVTI_lADOAwlwhM4AT36tzgIcuZE + - issue_id: I_kwDOEVxG285t0LjT + item_id: PVTI_lADOAwlwhM4AT36tzgIcuZI + - issue_id: I_kwDOEVxG285t0Ljb + item_id: PVTI_lADOAwlwhM4AT36tzgIcuZQ + - issue_id: I_kwDOEVxG285t0Lji + item_id: PVTI_lADOAwlwhM4AT36tzgIcuZY + - issue_id: I_kwDOEVxG285t0Lj0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuZc + - issue_id: I_kwDOEVxG285t0Lj8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuZ0 + - issue_id: I_kwDOEVxG285t0LkF + item_id: PVTI_lADOAwlwhM4AT36tzgIcuaU + - issue_id: I_kwDOEVxG285t0LkT + item_id: PVTI_lADOAwlwhM4AT36tzgIcuao + - issue_id: I_kwDOEVxG285t0Lkk + item_id: PVTI_lADOAwlwhM4AT36tzgIcubE + - issue_id: I_kwDOEVxG285t0Lku + item_id: PVTI_lADOAwlwhM4AT36tzgIcubc + - issue_id: I_kwDOEVxG285t0Lk4 + item_id: PVTI_lADOAwlwhM4AT36tzgIcub0 + - issue_id: I_kwDOEVxG285t0LlG + item_id: PVTI_lADOAwlwhM4AT36tzgIcucU + - issue_id: I_kwDOEVxG285t0LlT + item_id: PVTI_lADOAwlwhM4AT36tzgIcucc + - issue_id: I_kwDOEVxG285t0Llc + item_id: PVTI_lADOAwlwhM4AT36tzgIcuco + - issue_id: I_kwDOEVxG285t0LvY + item_id: PVTI_lADOAwlwhM4AT36tzgIcucw + - issue_id: I_kwDOEVxG285t0Lvl + item_id: PVTI_lADOAwlwhM4AT36tzgIcuc0 + - issue_id: I_kwDOEVxG285t0Lv0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcudM + - issue_id: I_kwDOEVxG285t0LwB + item_id: PVTI_lADOAwlwhM4AT36tzgIcudU + - issue_id: I_kwDOEVxG285t0LwS + item_id: PVTI_lADOAwlwhM4AT36tzgIcudg + - issue_id: I_kwDOEVxG285t0Lwi + item_id: PVTI_lADOAwlwhM4AT36tzgIcudk + - issue_id: I_kwDOEVxG285t0Lww + item_id: PVTI_lADOAwlwhM4AT36tzgIcudo + - issue_id: I_kwDOEVxG285t0LxA + item_id: PVTI_lADOAwlwhM4AT36tzgIcudw + - issue_id: I_kwDOEVxG285t0LxS + item_id: PVTI_lADOAwlwhM4AT36tzgIcud0 + - issue_id: I_kwDOEVxG285t0Lxg + item_id: PVTI_lADOAwlwhM4AT36tzgIcud4 + - issue_id: I_kwDOEVxG285t0Lxr + item_id: PVTI_lADOAwlwhM4AT36tzgIcueQ + - issue_id: I_kwDOEVxG285t0Lx0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuew + - issue_id: I_kwDOEVxG285t0Lx8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcufE + - issue_id: I_kwDOEVxG285t0LyL + item_id: PVTI_lADOAwlwhM4AT36tzgIcufg + - issue_id: I_kwDOEVxG285t0Lyd + item_id: PVTI_lADOAwlwhM4AT36tzgIcuf8 + - issue_id: I_kwDOEVxG285t0Lyk + item_id: PVTI_lADOAwlwhM4AT36tzgIcugQ + - issue_id: I_kwDOEVxG285t0Lyp + item_id: PVTI_lADOAwlwhM4AT36tzgIcugg + - issue_id: I_kwDOEVxG285t0Lyy + item_id: PVTI_lADOAwlwhM4AT36tzgIcugw + - issue_id: I_kwDOEVxG285t0LzB + item_id: PVTI_lADOAwlwhM4AT36tzgIcug8 + - issue_id: I_kwDOEVxG285t0LzN + item_id: PVTI_lADOAwlwhM4AT36tzgIcuhI + - issue_id: I_kwDOEVxG285t0MCU + item_id: PVTI_lADOAwlwhM4AT36tzgIcuhU + - issue_id: I_kwDOEVxG285t0MCm + item_id: PVTI_lADOAwlwhM4AT36tzgIcuh0 + - issue_id: I_kwDOEVxG285t0MC_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuiQ + - issue_id: I_kwDOEVxG285t0MDP + item_id: PVTI_lADOAwlwhM4AT36tzgIcui0 + - issue_id: I_kwDOEVxG285t0MDh + item_id: PVTI_lADOAwlwhM4AT36tzgIcujU + - issue_id: I_kwDOEVxG285t0MD0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuj0 + - issue_id: I_kwDOEVxG285t0MEB + item_id: PVTI_lADOAwlwhM4AT36tzgIcukY + - issue_id: I_kwDOEVxG285t0MEU + item_id: PVTI_lADOAwlwhM4AT36tzgIcukk + - issue_id: I_kwDOEVxG285t0MEe + item_id: PVTI_lADOAwlwhM4AT36tzgIcuks + - issue_id: I_kwDOEVxG285t0MEq + item_id: PVTI_lADOAwlwhM4AT36tzgIcuk0 + - issue_id: I_kwDOEVxG285t0ME4 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuk4 + - issue_id: I_kwDOEVxG285t0MFG + item_id: PVTI_lADOAwlwhM4AT36tzgIcuk8 + - issue_id: I_kwDOEVxG285t0MFV + item_id: PVTI_lADOAwlwhM4AT36tzgIculE + - issue_id: I_kwDOEVxG285t0MFe + item_id: PVTI_lADOAwlwhM4AT36tzgIculQ + - issue_id: I_kwDOEVxG285t0MFs + item_id: PVTI_lADOAwlwhM4AT36tzgIculk + - issue_id: I_kwDOEVxG285t0MF6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcul4 + - issue_id: I_kwDOEVxG285t0MGN + item_id: PVTI_lADOAwlwhM4AT36tzgIcumQ + - issue_id: I_kwDOEVxG285t0MGc + item_id: PVTI_lADOAwlwhM4AT36tzgIcums + - issue_id: I_kwDOEVxG285t0MGt + item_id: PVTI_lADOAwlwhM4AT36tzgIcunE + - issue_id: I_kwDOEVxG285t0MG7 + item_id: PVTI_lADOAwlwhM4AT36tzgIcunY + - issue_id: I_kwDOEVxG285t0MS9 + item_id: PVTI_lADOAwlwhM4AT36tzgIcunw + - issue_id: I_kwDOEVxG285t0MTE + item_id: PVTI_lADOAwlwhM4AT36tzgIcun4 + - issue_id: I_kwDOEVxG285t0MTS + item_id: PVTI_lADOAwlwhM4AT36tzgIcuoE + - issue_id: I_kwDOEVxG285t0MTZ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuoM + - issue_id: I_kwDOEVxG285t0MTm + item_id: PVTI_lADOAwlwhM4AT36tzgIcuog + - issue_id: I_kwDOEVxG285t0MTz + item_id: PVTI_lADOAwlwhM4AT36tzgIcuoo + - issue_id: I_kwDOEVxG285t0MT_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuo8 + - issue_id: I_kwDOEVxG285t0MUS + item_id: PVTI_lADOAwlwhM4AT36tzgIcupU + - issue_id: I_kwDOEVxG285t0MUe + item_id: PVTI_lADOAwlwhM4AT36tzgIcups + - issue_id: I_kwDOEVxG285t0MUu + item_id: PVTI_lADOAwlwhM4AT36tzgIcuqE + - issue_id: I_kwDOEVxG285t0MU5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuqk + - issue_id: I_kwDOEVxG285t0MVK + item_id: PVTI_lADOAwlwhM4AT36tzgIcurE + - issue_id: I_kwDOEVxG285t0MVV + item_id: PVTI_lADOAwlwhM4AT36tzgIcurM + - issue_id: I_kwDOEVxG285t0MVf + item_id: PVTI_lADOAwlwhM4AT36tzgIcurU + - issue_id: I_kwDOEVxG285t0MV1 + item_id: PVTI_lADOAwlwhM4AT36tzgIcurc + - issue_id: I_kwDOEVxG285t0MV9 + item_id: PVTI_lADOAwlwhM4AT36tzgIcurs + - issue_id: I_kwDOEVxG285t0MWN + item_id: PVTI_lADOAwlwhM4AT36tzgIcur0 + - issue_id: I_kwDOEVxG285t0MWX + item_id: PVTI_lADOAwlwhM4AT36tzgIcur8 + - issue_id: I_kwDOEVxG285t0MWf + item_id: PVTI_lADOAwlwhM4AT36tzgIcusY + - issue_id: I_kwDOEVxG285t0MWo + item_id: PVTI_lADOAwlwhM4AT36tzgIcusw + - issue_id: I_kwDOEVxG285t0Mhv + item_id: PVTI_lADOAwlwhM4AT36tzgIcutE + - issue_id: I_kwDOEVxG285t0MiA + item_id: PVTI_lADOAwlwhM4AT36tzgIcutU + - issue_id: I_kwDOEVxG285t0MiX + item_id: PVTI_lADOAwlwhM4AT36tzgIcuts + - issue_id: I_kwDOEVxG285t0Mim + item_id: PVTI_lADOAwlwhM4AT36tzgIcut8 + - issue_id: I_kwDOEVxG285t0Mix + item_id: PVTI_lADOAwlwhM4AT36tzgIcuuY + - issue_id: I_kwDOEVxG285t0Mi5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuus + - issue_id: I_kwDOEVxG285t0MjM + item_id: PVTI_lADOAwlwhM4AT36tzgIcuu4 + - issue_id: I_kwDOEVxG285t0MjW + item_id: PVTI_lADOAwlwhM4AT36tzgIcuvU + - issue_id: I_kwDOEVxG285t0Mjl + item_id: PVTI_lADOAwlwhM4AT36tzgIcuvc + - issue_id: I_kwDOEVxG285t0Mjy + item_id: PVTI_lADOAwlwhM4AT36tzgIcuvk + - issue_id: I_kwDOEVxG285t0Mj9 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuwI + - issue_id: I_kwDOEVxG285t0MkD + item_id: PVTI_lADOAwlwhM4AT36tzgIcuwc + - issue_id: I_kwDOEVxG285t0MkS + item_id: PVTI_lADOAwlwhM4AT36tzgIcuw0 + - issue_id: I_kwDOEVxG285t0Mkh + item_id: PVTI_lADOAwlwhM4AT36tzgIcuxI + - issue_id: I_kwDOEVxG285t0Mkv + item_id: PVTI_lADOAwlwhM4AT36tzgIcuxg + - issue_id: I_kwDOEVxG285t0Mk3 + item_id: PVTI_lADOAwlwhM4AT36tzgIcux0 + - issue_id: I_kwDOEVxG285t0MlI + item_id: PVTI_lADOAwlwhM4AT36tzgIcuyI + - issue_id: I_kwDOEVxG285t0MlS + item_id: PVTI_lADOAwlwhM4AT36tzgIcuyQ + - issue_id: I_kwDOEVxG285t0Mlg + item_id: PVTI_lADOAwlwhM4AT36tzgIcuyY + - issue_id: I_kwDOEVxG285t0Mls + item_id: PVTI_lADOAwlwhM4AT36tzgIcuyw + - issue_id: I_kwDOEVxG285t0MwJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuy8 + - issue_id: I_kwDOEVxG285t0MwX + item_id: PVTI_lADOAwlwhM4AT36tzgIcuzA + - issue_id: I_kwDOEVxG285t0Mwg + item_id: PVTI_lADOAwlwhM4AT36tzgIcuzQ + - issue_id: I_kwDOEVxG285t0Mwt + item_id: PVTI_lADOAwlwhM4AT36tzgIcuzc + - issue_id: I_kwDOEVxG285t0Mw8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcuzg + - issue_id: I_kwDOEVxG285t0MxE + item_id: PVTI_lADOAwlwhM4AT36tzgIcuzo + - issue_id: I_kwDOEVxG285t0MxQ + item_id: PVTI_lADOAwlwhM4AT36tzgIcuzs + - issue_id: I_kwDOEVxG285t0Mxc + item_id: PVTI_lADOAwlwhM4AT36tzgIcu0A + - issue_id: I_kwDOEVxG285t0Mxq + item_id: PVTI_lADOAwlwhM4AT36tzgIcu0c + - issue_id: I_kwDOEVxG285t0Mx4 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu04 + - issue_id: I_kwDOEVxG285t0RyZ + item_id: PVTI_lADOAwlwhM4AT36tzgIcu1Q + - issue_id: I_kwDOEVxG285t0Ryn + item_id: PVTI_lADOAwlwhM4AT36tzgIcu1g + - issue_id: I_kwDOEVxG285t0Ry0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu14 + - issue_id: I_kwDOEVxG285t0RzC + item_id: PVTI_lADOAwlwhM4AT36tzgIcu2Y + - issue_id: I_kwDOEVxG285t0RzV + item_id: PVTI_lADOAwlwhM4AT36tzgIcu20 + - issue_id: I_kwDOEVxG285t0Rzj + item_id: PVTI_lADOAwlwhM4AT36tzgIcu3A + - issue_id: I_kwDOEVxG285t0Rzx + item_id: PVTI_lADOAwlwhM4AT36tzgIcu3I + - issue_id: I_kwDOEVxG285t0R0B + item_id: PVTI_lADOAwlwhM4AT36tzgIcu3U + - issue_id: I_kwDOEVxG285t0R0S + item_id: PVTI_lADOAwlwhM4AT36tzgIcu3c + - issue_id: I_kwDOEVxG285t0R0g + item_id: PVTI_lADOAwlwhM4AT36tzgIcu3k + - issue_id: I_kwDOEVxG285t0R00 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu3w + - issue_id: I_kwDOEVxG285t0R1F + item_id: PVTI_lADOAwlwhM4AT36tzgIcu4I + - issue_id: I_kwDOEVxG285t0R1S + item_id: PVTI_lADOAwlwhM4AT36tzgIcu4g + - issue_id: I_kwDOEVxG285t0R1i + item_id: PVTI_lADOAwlwhM4AT36tzgIcu48 + - issue_id: I_kwDOEVxG285t0R14 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu5M + - issue_id: I_kwDOEVxG285t0R2A + item_id: PVTI_lADOAwlwhM4AT36tzgIcu5g + - issue_id: I_kwDOEVxG285t0R2P + item_id: PVTI_lADOAwlwhM4AT36tzgIcu50 + - issue_id: I_kwDOEVxG285t0R2X + item_id: PVTI_lADOAwlwhM4AT36tzgIcu6I + - issue_id: I_kwDOEVxG285t0R2r + item_id: PVTI_lADOAwlwhM4AT36tzgIcu6Q + - issue_id: I_kwDOEVxG285t0R29 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu6c + - issue_id: I_kwDOEVxG285t0SBu + item_id: PVTI_lADOAwlwhM4AT36tzgIcu6s + - issue_id: I_kwDOEVxG285t0SB7 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu60 + - issue_id: I_kwDOEVxG285t0SCK + item_id: PVTI_lADOAwlwhM4AT36tzgIcu68 + - issue_id: I_kwDOEVxG285t0SCa + item_id: PVTI_lADOAwlwhM4AT36tzgIcu7E + - issue_id: I_kwDOEVxG285t0SCp + item_id: PVTI_lADOAwlwhM4AT36tzgIcu7U + - issue_id: I_kwDOEVxG285t0SC0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu70 + - issue_id: I_kwDOEVxG285t0SDF + item_id: PVTI_lADOAwlwhM4AT36tzgIcu8Q + - issue_id: I_kwDOEVxG285t0SDQ + item_id: PVTI_lADOAwlwhM4AT36tzgIcu8k + - issue_id: I_kwDOEVxG285t0SDc + item_id: PVTI_lADOAwlwhM4AT36tzgIcu9I + - issue_id: I_kwDOEVxG285t0SDl + item_id: PVTI_lADOAwlwhM4AT36tzgIcu9c + - issue_id: I_kwDOEVxG285t0SDy + item_id: PVTI_lADOAwlwhM4AT36tzgIcu9s + - issue_id: I_kwDOEVxG285t0SEC + item_id: PVTI_lADOAwlwhM4AT36tzgIcu9w + - issue_id: I_kwDOEVxG285t0SEX + item_id: PVTI_lADOAwlwhM4AT36tzgIcu98 + - issue_id: I_kwDOEVxG285t0SEm + item_id: PVTI_lADOAwlwhM4AT36tzgIcu-A + - issue_id: I_kwDOEVxG285t0SE5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu-M + - issue_id: I_kwDOEVxG285t0SFG + item_id: PVTI_lADOAwlwhM4AT36tzgIcu-c + - issue_id: I_kwDOEVxG285t0SFR + item_id: PVTI_lADOAwlwhM4AT36tzgIcu-0 + - issue_id: I_kwDOEVxG285t0SFd + item_id: PVTI_lADOAwlwhM4AT36tzgIcu_I + - issue_id: I_kwDOEVxG285t0SFn + item_id: PVTI_lADOAwlwhM4AT36tzgIcu_o + - issue_id: I_kwDOEVxG285t0SF5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcu_4 + - issue_id: I_kwDOEVxG285t0SW9 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvAU + - issue_id: I_kwDOEVxG285t0SXN + item_id: PVTI_lADOAwlwhM4AT36tzgIcvA4 + - issue_id: I_kwDOEVxG285t0SXY + item_id: PVTI_lADOAwlwhM4AT36tzgIcvBA + - issue_id: I_kwDOEVxG285t0SXo + item_id: PVTI_lADOAwlwhM4AT36tzgIcvBI + - issue_id: I_kwDOEVxG285t0SXx + item_id: PVTI_lADOAwlwhM4AT36tzgIcvBY + - issue_id: I_kwDOEVxG285t0SYA + item_id: PVTI_lADOAwlwhM4AT36tzgIcvBo + - issue_id: I_kwDOEVxG285t0SYP + item_id: PVTI_lADOAwlwhM4AT36tzgIcvB4 + - issue_id: I_kwDOEVxG285t0SYg + item_id: PVTI_lADOAwlwhM4AT36tzgIcvCM + - issue_id: I_kwDOEVxG285t0SYy + item_id: PVTI_lADOAwlwhM4AT36tzgIcvCo + - issue_id: I_kwDOEVxG285t0SZA + item_id: PVTI_lADOAwlwhM4AT36tzgIcvDI + - issue_id: I_kwDOEVxG285t0SZO + item_id: PVTI_lADOAwlwhM4AT36tzgIcvDk + - issue_id: I_kwDOEVxG285t0SZd + item_id: PVTI_lADOAwlwhM4AT36tzgIcvEE + - issue_id: I_kwDOEVxG285t0SZq + item_id: PVTI_lADOAwlwhM4AT36tzgIcvEc + - issue_id: I_kwDOEVxG285t0SZ4 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvEs + - issue_id: I_kwDOEVxG285t0SaG + item_id: PVTI_lADOAwlwhM4AT36tzgIcvE0 + - issue_id: I_kwDOEVxG285t0SaR + item_id: PVTI_lADOAwlwhM4AT36tzgIcvE8 + - issue_id: I_kwDOEVxG285t0Sag + item_id: PVTI_lADOAwlwhM4AT36tzgIcvFE + - issue_id: I_kwDOEVxG285t0Sao + item_id: PVTI_lADOAwlwhM4AT36tzgIcvFU + - issue_id: I_kwDOEVxG285t0Say + item_id: PVTI_lADOAwlwhM4AT36tzgIcvFY + - issue_id: I_kwDOEVxG285t0SbA + item_id: PVTI_lADOAwlwhM4AT36tzgIcvFo + - issue_id: I_kwDOEVxG285t0SmR + item_id: PVTI_lADOAwlwhM4AT36tzgIcvF4 + - issue_id: I_kwDOEVxG285t0Smn + item_id: PVTI_lADOAwlwhM4AT36tzgIcvGU + - issue_id: I_kwDOEVxG285t0SnA + item_id: PVTI_lADOAwlwhM4AT36tzgIcvGs + - issue_id: I_kwDOEVxG285t0SnI + item_id: PVTI_lADOAwlwhM4AT36tzgIcvHA + - issue_id: I_kwDOEVxG285t0Snf + item_id: PVTI_lADOAwlwhM4AT36tzgIcvHk + - issue_id: I_kwDOEVxG285t0Sny + item_id: PVTI_lADOAwlwhM4AT36tzgIcvH8 + - issue_id: I_kwDOEVxG285t0SoB + item_id: PVTI_lADOAwlwhM4AT36tzgIcvIQ + - issue_id: I_kwDOEVxG285t0SoL + item_id: PVTI_lADOAwlwhM4AT36tzgIcvIk + - issue_id: I_kwDOEVxG285t0SoX + item_id: PVTI_lADOAwlwhM4AT36tzgIcvIw + - issue_id: I_kwDOEVxG285t0Son + item_id: PVTI_lADOAwlwhM4AT36tzgIcvI4 + - issue_id: I_kwDOEVxG285t0Soy + item_id: PVTI_lADOAwlwhM4AT36tzgIcvJA + - issue_id: I_kwDOEVxG285t0SpA + item_id: PVTI_lADOAwlwhM4AT36tzgIcvJc + - issue_id: I_kwDOEVxG285t0SpW + item_id: PVTI_lADOAwlwhM4AT36tzgIcvJ4 + - issue_id: I_kwDOEVxG285t0Sph + item_id: PVTI_lADOAwlwhM4AT36tzgIcvKY + - issue_id: I_kwDOEVxG285t0Spw + item_id: PVTI_lADOAwlwhM4AT36tzgIcvK8 + - issue_id: I_kwDOEVxG285t0Sp6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvLY + - issue_id: I_kwDOEVxG285t0SqF + item_id: PVTI_lADOAwlwhM4AT36tzgIcvL4 + - issue_id: I_kwDOEVxG285t0SqT + item_id: PVTI_lADOAwlwhM4AT36tzgIcvMQ + - issue_id: I_kwDOEVxG285t0Sqe + item_id: PVTI_lADOAwlwhM4AT36tzgIcvMc + - issue_id: I_kwDOEVxG285t0Sqt + item_id: PVTI_lADOAwlwhM4AT36tzgIcvMs + - issue_id: I_kwDOEVxG285t0S2E + item_id: PVTI_lADOAwlwhM4AT36tzgIcvM8 + - issue_id: I_kwDOEVxG285t0S2R + item_id: PVTI_lADOAwlwhM4AT36tzgIcvNI + - issue_id: I_kwDOEVxG285t0S2f + item_id: PVTI_lADOAwlwhM4AT36tzgIcvNU + - issue_id: I_kwDOEVxG285t0S2t + item_id: PVTI_lADOAwlwhM4AT36tzgIcvNs + - issue_id: I_kwDOEVxG285t0S22 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvOM + - issue_id: I_kwDOEVxG285t0S3A + item_id: PVTI_lADOAwlwhM4AT36tzgIcvOs + - issue_id: I_kwDOEVxG285t0S3U + item_id: PVTI_lADOAwlwhM4AT36tzgIcvPQ + - issue_id: I_kwDOEVxG285t0S3k + item_id: PVTI_lADOAwlwhM4AT36tzgIcvPw + - issue_id: I_kwDOEVxG285t0S33 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvQE + - issue_id: I_kwDOEVxG285t0S4F + item_id: PVTI_lADOAwlwhM4AT36tzgIcvQQ + - issue_id: I_kwDOEVxG285t0S4Z + item_id: PVTI_lADOAwlwhM4AT36tzgIcvQk + - issue_id: I_kwDOEVxG285t0S4n + item_id: PVTI_lADOAwlwhM4AT36tzgIcvQw + - issue_id: I_kwDOEVxG285t0S4v + item_id: PVTI_lADOAwlwhM4AT36tzgIcvQ0 + - issue_id: I_kwDOEVxG285t0S44 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvQ4 + - issue_id: I_kwDOEVxG285t0S5E + item_id: PVTI_lADOAwlwhM4AT36tzgIcvRE + - issue_id: I_kwDOEVxG285t0S5a + item_id: PVTI_lADOAwlwhM4AT36tzgIcvRc + - issue_id: I_kwDOEVxG285t0S5t + item_id: PVTI_lADOAwlwhM4AT36tzgIcvRw + - issue_id: I_kwDOEVxG285t0S56 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvSQ + - issue_id: I_kwDOEVxG285t0S6P + item_id: PVTI_lADOAwlwhM4AT36tzgIcvSs + - issue_id: I_kwDOEVxG285t0S6h + item_id: PVTI_lADOAwlwhM4AT36tzgIcvTI + - issue_id: I_kwDOEVxG285t0TFh + item_id: PVTI_lADOAwlwhM4AT36tzgIcvTk + - issue_id: I_kwDOEVxG285t0TFx + item_id: PVTI_lADOAwlwhM4AT36tzgIcvTw + - issue_id: I_kwDOEVxG285t0TF8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvT8 + - issue_id: I_kwDOEVxG285t0TGN + item_id: PVTI_lADOAwlwhM4AT36tzgIcvUE + - issue_id: I_kwDOEVxG285t0TGX + item_id: PVTI_lADOAwlwhM4AT36tzgIcvUY + - issue_id: I_kwDOEVxG285t0TGj + item_id: PVTI_lADOAwlwhM4AT36tzgIcvUs + - issue_id: I_kwDOEVxG285t0TGr + item_id: PVTI_lADOAwlwhM4AT36tzgIcvVI + - issue_id: I_kwDOEVxG285t0TG4 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvVo + - issue_id: I_kwDOEVxG285t0THI + item_id: PVTI_lADOAwlwhM4AT36tzgIcvWE + - issue_id: I_kwDOEVxG285t0THW + item_id: PVTI_lADOAwlwhM4AT36tzgIcvWU + - issue_id: I_kwDOEVxG285t0THh + item_id: PVTI_lADOAwlwhM4AT36tzgIcvWo + - issue_id: I_kwDOEVxG285t0THp + item_id: PVTI_lADOAwlwhM4AT36tzgIcvWs + - issue_id: I_kwDOEVxG285t0THx + item_id: PVTI_lADOAwlwhM4AT36tzgIcvWw + - issue_id: I_kwDOEVxG285t0TIA + item_id: PVTI_lADOAwlwhM4AT36tzgIcvW0 + - issue_id: I_kwDOEVxG285t0TIO + item_id: PVTI_lADOAwlwhM4AT36tzgIcvW8 + - issue_id: I_kwDOEVxG285t0TIh + item_id: PVTI_lADOAwlwhM4AT36tzgIcvXI + - issue_id: I_kwDOEVxG285t0TIy + item_id: PVTI_lADOAwlwhM4AT36tzgIcvXU + - issue_id: I_kwDOEVxG285t0TI9 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvYA + - issue_id: I_kwDOEVxG285t0TJN + item_id: PVTI_lADOAwlwhM4AT36tzgIcvYU + - issue_id: I_kwDOEVxG285t0TJf + item_id: PVTI_lADOAwlwhM4AT36tzgIcvYw + - issue_id: I_kwDOEVxG285t0TUW + item_id: PVTI_lADOAwlwhM4AT36tzgIcvZI + - issue_id: I_kwDOEVxG285t0TUj + item_id: PVTI_lADOAwlwhM4AT36tzgIcvZg + - issue_id: I_kwDOEVxG285t0TUz + item_id: PVTI_lADOAwlwhM4AT36tzgIcvZ8 + - issue_id: I_kwDOEVxG285t0TU8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvaQ + - issue_id: I_kwDOEVxG285t0TVK + item_id: PVTI_lADOAwlwhM4AT36tzgIcvac + - issue_id: I_kwDOEVxG285t0TVX + item_id: PVTI_lADOAwlwhM4AT36tzgIcvas + - issue_id: I_kwDOEVxG285t0TVn + item_id: PVTI_lADOAwlwhM4AT36tzgIcvbA + - issue_id: I_kwDOEVxG285t0TV1 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvbc + - issue_id: I_kwDOEVxG285t0TWH + item_id: PVTI_lADOAwlwhM4AT36tzgIcvb0 + - issue_id: I_kwDOEVxG285t0TWS + item_id: PVTI_lADOAwlwhM4AT36tzgIcvcU + - issue_id: I_kwDOEVxG285t0TWg + item_id: PVTI_lADOAwlwhM4AT36tzgIcvc8 + - issue_id: I_kwDOEVxG285t0TWo + item_id: PVTI_lADOAwlwhM4AT36tzgIcvdQ + - issue_id: I_kwDOEVxG285t0TW1 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvdo + - issue_id: I_kwDOEVxG285t0TXB + item_id: PVTI_lADOAwlwhM4AT36tzgIcvd8 + - issue_id: I_kwDOEVxG285t0TXP + item_id: PVTI_lADOAwlwhM4AT36tzgIcveE + - issue_id: I_kwDOEVxG285t0TXf + item_id: PVTI_lADOAwlwhM4AT36tzgIcveQ + - issue_id: I_kwDOEVxG285t0TXt + item_id: PVTI_lADOAwlwhM4AT36tzgIcveU + - issue_id: I_kwDOEVxG285t0TX_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcvek + - issue_id: I_kwDOEVxG285t0TYM + item_id: PVTI_lADOAwlwhM4AT36tzgIcve8 + - issue_id: I_kwDOEVxG285t0TYZ + item_id: PVTI_lADOAwlwhM4AT36tzgIcvfg + - issue_id: I_kwDOEVxG285t0Tjd + item_id: PVTI_lADOAwlwhM4AT36tzgIcvfw + - issue_id: I_kwDOEVxG285t0Tjw + item_id: PVTI_lADOAwlwhM4AT36tzgIcvgU + - issue_id: I_kwDOEVxG285t0Tj8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvgw + - issue_id: I_kwDOEVxG285t0TkN + item_id: PVTI_lADOAwlwhM4AT36tzgIcvhI + - issue_id: I_kwDOEVxG285t0TkX + item_id: PVTI_lADOAwlwhM4AT36tzgIcvhQ + - issue_id: I_kwDOEVxG285t0Tkj + item_id: PVTI_lADOAwlwhM4AT36tzgIcvhk + - issue_id: I_kwDOEVxG285t0Tk6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvh0 + - issue_id: I_kwDOEVxG285t0TlJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcvh8 + - issue_id: I_kwDOEVxG285t0TlR + item_id: PVTI_lADOAwlwhM4AT36tzgIcviI + - issue_id: I_kwDOEVxG285t0Tld + item_id: PVTI_lADOAwlwhM4AT36tzgIcvik + - issue_id: I_kwDOEVxG285t0aDM + item_id: PVTI_lADOAwlwhM4AT36tzgIcvi8 + - issue_id: I_kwDOEVxG285t0aDb + item_id: PVTI_lADOAwlwhM4AT36tzgIcvjM + - issue_id: I_kwDOEVxG285t0aDo + item_id: PVTI_lADOAwlwhM4AT36tzgIcvjY + - issue_id: I_kwDOEVxG285t0aD4 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvjk + - issue_id: I_kwDOEVxG285t0aEE + item_id: PVTI_lADOAwlwhM4AT36tzgIcvjs + - issue_id: I_kwDOEVxG285t0aEW + item_id: PVTI_lADOAwlwhM4AT36tzgIcvj8 + - issue_id: I_kwDOEVxG285t0aEl + item_id: PVTI_lADOAwlwhM4AT36tzgIcvkI + - issue_id: I_kwDOEVxG285t0aEy + item_id: PVTI_lADOAwlwhM4AT36tzgIcvkk + - issue_id: I_kwDOEVxG285t0aFA + item_id: PVTI_lADOAwlwhM4AT36tzgIcvk4 + - issue_id: I_kwDOEVxG285t0aFa + item_id: PVTI_lADOAwlwhM4AT36tzgIcvlA + - issue_id: I_kwDOEVxG285t0aFn + item_id: PVTI_lADOAwlwhM4AT36tzgIcvlE + - issue_id: I_kwDOEVxG285t0aFy + item_id: PVTI_lADOAwlwhM4AT36tzgIcvlI + - issue_id: I_kwDOEVxG285t0aF8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvlY + - issue_id: I_kwDOEVxG285t0aGL + item_id: PVTI_lADOAwlwhM4AT36tzgIcvlc + - issue_id: I_kwDOEVxG285t0aGf + item_id: PVTI_lADOAwlwhM4AT36tzgIcvlo + - issue_id: I_kwDOEVxG285t0aGr + item_id: PVTI_lADOAwlwhM4AT36tzgIcvl0 + - issue_id: I_kwDOEVxG285t0aG7 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvmA + - issue_id: I_kwDOEVxG285t0aHN + item_id: PVTI_lADOAwlwhM4AT36tzgIcvmI + - issue_id: I_kwDOEVxG285t0aHc + item_id: PVTI_lADOAwlwhM4AT36tzgIcvmQ + - issue_id: I_kwDOEVxG285t0aT0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvmY + - issue_id: I_kwDOEVxG285t0aT_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcvmc + - issue_id: I_kwDOEVxG285t0aUR + item_id: PVTI_lADOAwlwhM4AT36tzgIcvmg + - issue_id: I_kwDOEVxG285t0aUm + item_id: PVTI_lADOAwlwhM4AT36tzgIcvms + - issue_id: I_kwDOEVxG285t0aU2 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvm0 + - issue_id: I_kwDOEVxG285t0aVH + item_id: PVTI_lADOAwlwhM4AT36tzgIcvm4 + - issue_id: I_kwDOEVxG285t0aVY + item_id: PVTI_lADOAwlwhM4AT36tzgIcvm8 + - issue_id: I_kwDOEVxG285t0aVn + item_id: PVTI_lADOAwlwhM4AT36tzgIcvnI + - issue_id: I_kwDOEVxG285t0aVw + item_id: PVTI_lADOAwlwhM4AT36tzgIcvnM + - issue_id: I_kwDOEVxG285t0aV7 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvnU + - issue_id: I_kwDOEVxG285t0aWL + item_id: PVTI_lADOAwlwhM4AT36tzgIcvnw + - issue_id: I_kwDOEVxG285t0aWX + item_id: PVTI_lADOAwlwhM4AT36tzgIcvn4 + - issue_id: I_kwDOEVxG285t0aWo + item_id: PVTI_lADOAwlwhM4AT36tzgIcvoM + - issue_id: I_kwDOEVxG285t0aWw + item_id: PVTI_lADOAwlwhM4AT36tzgIcvoU + - issue_id: I_kwDOEVxG285t0aXC + item_id: PVTI_lADOAwlwhM4AT36tzgIcvoc + - issue_id: I_kwDOEVxG285t0aXR + item_id: PVTI_lADOAwlwhM4AT36tzgIcvoo + - issue_id: I_kwDOEVxG285t0aXh + item_id: PVTI_lADOAwlwhM4AT36tzgIcvow + - issue_id: I_kwDOEVxG285t0aXy + item_id: PVTI_lADOAwlwhM4AT36tzgIcvo4 + - issue_id: I_kwDOEVxG285t0aYC + item_id: PVTI_lADOAwlwhM4AT36tzgIcvpI + - issue_id: I_kwDOEVxG285t0aYO + item_id: PVTI_lADOAwlwhM4AT36tzgIcvpQ + - issue_id: I_kwDOEVxG285t0akk + item_id: PVTI_lADOAwlwhM4AT36tzgIcvpg + - issue_id: I_kwDOEVxG285t0aky + item_id: PVTI_lADOAwlwhM4AT36tzgIcvpo + - issue_id: I_kwDOEVxG285t0ak_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcvpw + - issue_id: I_kwDOEVxG285t0alK + item_id: PVTI_lADOAwlwhM4AT36tzgIcvp4 + - issue_id: I_kwDOEVxG285t0alV + item_id: PVTI_lADOAwlwhM4AT36tzgIcvqQ + - issue_id: I_kwDOEVxG285t0ali + item_id: PVTI_lADOAwlwhM4AT36tzgIcvqY + - issue_id: I_kwDOEVxG285t0aly + item_id: PVTI_lADOAwlwhM4AT36tzgIcvqg + - issue_id: I_kwDOEVxG285t0al9 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvqo + - issue_id: I_kwDOEVxG285t0amM + item_id: PVTI_lADOAwlwhM4AT36tzgIcvq0 + - issue_id: I_kwDOEVxG285t0amb + item_id: PVTI_lADOAwlwhM4AT36tzgIcvrA + - issue_id: I_kwDOEVxG285t0aml + item_id: PVTI_lADOAwlwhM4AT36tzgIcvrI + - issue_id: I_kwDOEVxG285t0amz + item_id: PVTI_lADOAwlwhM4AT36tzgIcvrQ + - issue_id: I_kwDOEVxG285t0am- + item_id: PVTI_lADOAwlwhM4AT36tzgIcvrg + - issue_id: I_kwDOEVxG285t0anH + item_id: PVTI_lADOAwlwhM4AT36tzgIcvro + - issue_id: I_kwDOEVxG285t0anW + item_id: PVTI_lADOAwlwhM4AT36tzgIcvrw + - issue_id: I_kwDOEVxG285t0anl + item_id: PVTI_lADOAwlwhM4AT36tzgIcvr0 + - issue_id: I_kwDOEVxG285t0ant + item_id: PVTI_lADOAwlwhM4AT36tzgIcvsE + - issue_id: I_kwDOEVxG285t0an8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvsM + - issue_id: I_kwDOEVxG285t0aoJ + item_id: PVTI_lADOAwlwhM4AT36tzgIcvsY + - issue_id: I_kwDOEVxG285t0aoe + item_id: PVTI_lADOAwlwhM4AT36tzgIcvsg + - issue_id: I_kwDOEVxG285t0a1u + item_id: PVTI_lADOAwlwhM4AT36tzgIcvtA + - issue_id: I_kwDOEVxG285t0a11 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvtg + - issue_id: I_kwDOEVxG285t0a2F + item_id: PVTI_lADOAwlwhM4AT36tzgIcvt8 + - issue_id: I_kwDOEVxG285t0a2Z + item_id: PVTI_lADOAwlwhM4AT36tzgIcvug + - issue_id: I_kwDOEVxG285t0a2p + item_id: PVTI_lADOAwlwhM4AT36tzgIcvvE + - issue_id: I_kwDOEVxG285t0a21 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvvc + - issue_id: I_kwDOEVxG285t0a3B + item_id: PVTI_lADOAwlwhM4AT36tzgIcvvo + - issue_id: I_kwDOEVxG285t0a3T + item_id: PVTI_lADOAwlwhM4AT36tzgIcvvw + - issue_id: I_kwDOEVxG285t0a3m + item_id: PVTI_lADOAwlwhM4AT36tzgIcvv8 + - issue_id: I_kwDOEVxG285t0a35 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvwM + - issue_id: I_kwDOEVxG285t0a4I + item_id: PVTI_lADOAwlwhM4AT36tzgIcvwQ + - issue_id: I_kwDOEVxG285t0a4c + item_id: PVTI_lADOAwlwhM4AT36tzgIcvwU + - issue_id: I_kwDOEVxG285t0a4r + item_id: PVTI_lADOAwlwhM4AT36tzgIcvwg + - issue_id: I_kwDOEVxG285t0a45 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvw0 + - issue_id: I_kwDOEVxG285t0a5K + item_id: PVTI_lADOAwlwhM4AT36tzgIcvxE + - issue_id: I_kwDOEVxG285t0a5Y + item_id: PVTI_lADOAwlwhM4AT36tzgIcvxI + - issue_id: I_kwDOEVxG285t0a5o + item_id: PVTI_lADOAwlwhM4AT36tzgIcvxs + - issue_id: I_kwDOEVxG285t0a56 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvyM + - issue_id: I_kwDOEVxG285t0a6I + item_id: PVTI_lADOAwlwhM4AT36tzgIcvyY + - issue_id: I_kwDOEVxG285t0a6b + item_id: PVTI_lADOAwlwhM4AT36tzgIcvyc + - issue_id: I_kwDOEVxG285t0bG_ + item_id: PVTI_lADOAwlwhM4AT36tzgIcvys + - issue_id: I_kwDOEVxG285t0bHS + item_id: PVTI_lADOAwlwhM4AT36tzgIcvzA + - issue_id: I_kwDOEVxG285t0bHc + item_id: PVTI_lADOAwlwhM4AT36tzgIcvzM + - issue_id: I_kwDOEVxG285t0bHq + item_id: PVTI_lADOAwlwhM4AT36tzgIcvzQ + - issue_id: I_kwDOEVxG285t0bH5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcvzc + - issue_id: I_kwDOEVxG285t0bID + item_id: PVTI_lADOAwlwhM4AT36tzgIcvzg + - issue_id: I_kwDOEVxG285t0bIV + item_id: PVTI_lADOAwlwhM4AT36tzgIcvzk + - issue_id: I_kwDOEVxG285t0bIm + item_id: PVTI_lADOAwlwhM4AT36tzgIcvzw + - issue_id: I_kwDOEVxG285t0bJA + item_id: PVTI_lADOAwlwhM4AT36tzgIcv0I + - issue_id: I_kwDOEVxG285t0bJS + item_id: PVTI_lADOAwlwhM4AT36tzgIcv0Y + - issue_id: I_kwDOEVxG285t0bJj + item_id: PVTI_lADOAwlwhM4AT36tzgIcv0o + - issue_id: I_kwDOEVxG285t0bJ0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv04 + - issue_id: I_kwDOEVxG285t0bKH + item_id: PVTI_lADOAwlwhM4AT36tzgIcv1E + - issue_id: I_kwDOEVxG285t0bKa + item_id: PVTI_lADOAwlwhM4AT36tzgIcv1U + - issue_id: I_kwDOEVxG285t0bKm + item_id: PVTI_lADOAwlwhM4AT36tzgIcv1c + - issue_id: I_kwDOEVxG285t0bK6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv1k + - issue_id: I_kwDOEVxG285t0bLb + item_id: PVTI_lADOAwlwhM4AT36tzgIcv1s + - issue_id: I_kwDOEVxG285t0bL6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv10 + - issue_id: I_kwDOEVxG285t0bMh + item_id: PVTI_lADOAwlwhM4AT36tzgIcv2A + - issue_id: I_kwDOEVxG285t0bNI + item_id: PVTI_lADOAwlwhM4AT36tzgIcv2U + - issue_id: I_kwDOEVxG285t0bqb + item_id: PVTI_lADOAwlwhM4AT36tzgIcv2k + - issue_id: I_kwDOEVxG285t0brB + item_id: PVTI_lADOAwlwhM4AT36tzgIcv24 + - issue_id: I_kwDOEVxG285t0brg + item_id: PVTI_lADOAwlwhM4AT36tzgIcv3I + - issue_id: I_kwDOEVxG285t0bsA + item_id: PVTI_lADOAwlwhM4AT36tzgIcv3U + - issue_id: I_kwDOEVxG285t0bsi + item_id: PVTI_lADOAwlwhM4AT36tzgIcv3g + - issue_id: I_kwDOEVxG285t0btF + item_id: PVTI_lADOAwlwhM4AT36tzgIcv3w + - issue_id: I_kwDOEVxG285t0bts + item_id: PVTI_lADOAwlwhM4AT36tzgIcv38 + - issue_id: I_kwDOEVxG285t0buQ + item_id: PVTI_lADOAwlwhM4AT36tzgIcv4E + - issue_id: I_kwDOEVxG285t0buz + item_id: PVTI_lADOAwlwhM4AT36tzgIcv4U + - issue_id: I_kwDOEVxG285t0bvb + item_id: PVTI_lADOAwlwhM4AT36tzgIcv4g + - issue_id: I_kwDOEVxG285t0bwB + item_id: PVTI_lADOAwlwhM4AT36tzgIcv48 + - issue_id: I_kwDOEVxG285t0bwl + item_id: PVTI_lADOAwlwhM4AT36tzgIcv5I + - issue_id: I_kwDOEVxG285t0bxG + item_id: PVTI_lADOAwlwhM4AT36tzgIcv5M + - issue_id: I_kwDOEVxG285t0bxr + item_id: PVTI_lADOAwlwhM4AT36tzgIcv5Y + - issue_id: I_kwDOEVxG285t0byU + item_id: PVTI_lADOAwlwhM4AT36tzgIcv5g + - issue_id: I_kwDOEVxG285t0by5 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv5o + - issue_id: I_kwDOEVxG285t0bzc + item_id: PVTI_lADOAwlwhM4AT36tzgIcv50 + - issue_id: I_kwDOEVxG285t0b0D + item_id: PVTI_lADOAwlwhM4AT36tzgIcv6E + - issue_id: I_kwDOEVxG285t0b0f + item_id: PVTI_lADOAwlwhM4AT36tzgIcv6Y + - issue_id: I_kwDOEVxG285t0b1C + item_id: PVTI_lADOAwlwhM4AT36tzgIcv6c + - issue_id: I_kwDOEVxG285t0cVZ + item_id: PVTI_lADOAwlwhM4AT36tzgIcv6w + - issue_id: I_kwDOEVxG285t0cWN + item_id: PVTI_lADOAwlwhM4AT36tzgIcv68 + - issue_id: I_kwDOEVxG285t0cXM + item_id: PVTI_lADOAwlwhM4AT36tzgIcv7E + - issue_id: I_kwDOEVxG285t0cYB + item_id: PVTI_lADOAwlwhM4AT36tzgIcv7Q + - issue_id: I_kwDOEVxG285t0cYt + item_id: PVTI_lADOAwlwhM4AT36tzgIcv7c + - issue_id: I_kwDOEVxG285t0cZh + item_id: PVTI_lADOAwlwhM4AT36tzgIcv7o + - issue_id: I_kwDOEVxG285t0cab + item_id: PVTI_lADOAwlwhM4AT36tzgIcv70 + - issue_id: I_kwDOEVxG285t0cbN + item_id: PVTI_lADOAwlwhM4AT36tzgIcv78 + - issue_id: I_kwDOEVxG285t0cb1 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv8M + - issue_id: I_kwDOEVxG285t0ccU + item_id: PVTI_lADOAwlwhM4AT36tzgIcv8Y + - issue_id: I_kwDOEVxG285t0cc0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv8g + - issue_id: I_kwDOEVxG285t0cdT + item_id: PVTI_lADOAwlwhM4AT36tzgIcv8w + - issue_id: I_kwDOEVxG285t0ceE + item_id: PVTI_lADOAwlwhM4AT36tzgIcv88 + - issue_id: I_kwDOEVxG285t0cei + item_id: PVTI_lADOAwlwhM4AT36tzgIcv9E + - issue_id: I_kwDOEVxG285t0cfI + item_id: PVTI_lADOAwlwhM4AT36tzgIcv9Q + - issue_id: I_kwDOEVxG285t0cft + item_id: PVTI_lADOAwlwhM4AT36tzgIcv9Y + - issue_id: I_kwDOEVxG285t0cgS + item_id: PVTI_lADOAwlwhM4AT36tzgIcv9c + - issue_id: I_kwDOEVxG285t0cg2 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv9k + - issue_id: I_kwDOEVxG285t0chf + item_id: PVTI_lADOAwlwhM4AT36tzgIcv9s + - issue_id: I_kwDOEVxG285t0ch8 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv94 + - issue_id: I_kwDOEVxG285t0c_o + item_id: PVTI_lADOAwlwhM4AT36tzgIcv-A + - issue_id: I_kwDOEVxG285t0dAL + item_id: PVTI_lADOAwlwhM4AT36tzgIcv-M + - issue_id: I_kwDOEVxG285t0dAw + item_id: PVTI_lADOAwlwhM4AT36tzgIcv-c + - issue_id: I_kwDOEVxG285t0dBY + item_id: PVTI_lADOAwlwhM4AT36tzgIcv-g + - issue_id: I_kwDOEVxG285t0dCD + item_id: PVTI_lADOAwlwhM4AT36tzgIcv-k + - issue_id: I_kwDOEVxG285t0dCt + item_id: PVTI_lADOAwlwhM4AT36tzgIcv-w + - issue_id: I_kwDOEVxG285t0dDO + item_id: PVTI_lADOAwlwhM4AT36tzgIcv-4 + - issue_id: I_kwDOEVxG285t0dDv + item_id: PVTI_lADOAwlwhM4AT36tzgIcv_E + - issue_id: I_kwDOEVxG285t0dEV + item_id: PVTI_lADOAwlwhM4AT36tzgIcv_U + - issue_id: I_kwDOEVxG285t0dE6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv_k + - issue_id: I_kwDOEVxG285t0dFc + item_id: PVTI_lADOAwlwhM4AT36tzgIcv_w + - issue_id: I_kwDOEVxG285t0n89 + item_id: PVTI_lADOAwlwhM4AT36tzgIcv_8 + - issue_id: I_kwDOEVxG285t0n9L + item_id: PVTI_lADOAwlwhM4AT36tzgIcwAE + - issue_id: I_kwDOEVxG285t0n9d + item_id: PVTI_lADOAwlwhM4AT36tzgIcwAQ + - issue_id: I_kwDOEVxG285t0n9s + item_id: PVTI_lADOAwlwhM4AT36tzgIcwAc + - issue_id: I_kwDOEVxG285t0n98 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwAk + - issue_id: I_kwDOEVxG285t0n-N + item_id: PVTI_lADOAwlwhM4AT36tzgIcwAs + - issue_id: I_kwDOEVxG285t0n-f + item_id: PVTI_lADOAwlwhM4AT36tzgIcwA8 + - issue_id: I_kwDOEVxG285t0n-u + item_id: PVTI_lADOAwlwhM4AT36tzgIcwBI + - issue_id: I_kwDOEVxG285t0n_O + item_id: PVTI_lADOAwlwhM4AT36tzgIcwBY + - issue_id: I_kwDOEVxG285t0n_h + item_id: PVTI_lADOAwlwhM4AT36tzgIcwBk + - issue_id: I_kwDOEVxG285t0n_3 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwBs + - issue_id: I_kwDOEVxG285t0oAM + item_id: PVTI_lADOAwlwhM4AT36tzgIcwB0 + - issue_id: I_kwDOEVxG285t0oAi + item_id: PVTI_lADOAwlwhM4AT36tzgIcwCI + - issue_id: I_kwDOEVxG285t0oA0 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwCc + - issue_id: I_kwDOEVxG285t0oBK + item_id: PVTI_lADOAwlwhM4AT36tzgIcwCw + - issue_id: I_kwDOEVxG285t0oBc + item_id: PVTI_lADOAwlwhM4AT36tzgIcwC4 + - issue_id: I_kwDOEVxG285t0oBx + item_id: PVTI_lADOAwlwhM4AT36tzgIcwDE + - issue_id: I_kwDOEVxG285t0oCC + item_id: PVTI_lADOAwlwhM4AT36tzgIcwDM + - issue_id: I_kwDOEVxG285t0oCU + item_id: PVTI_lADOAwlwhM4AT36tzgIcwDk + - issue_id: I_kwDOEVxG285t0oPY + item_id: PVTI_lADOAwlwhM4AT36tzgIcwDw + - issue_id: I_kwDOEVxG285t0oPt + item_id: PVTI_lADOAwlwhM4AT36tzgIcwD4 + - issue_id: I_kwDOEVxG285t0oQF + item_id: PVTI_lADOAwlwhM4AT36tzgIcwEI + - issue_id: I_kwDOEVxG285t0oQV + item_id: PVTI_lADOAwlwhM4AT36tzgIcwEM + - issue_id: I_kwDOEVxG285t0oQk + item_id: PVTI_lADOAwlwhM4AT36tzgIcwEc + - issue_id: I_kwDOEVxG285t0oQ1 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwEo + - issue_id: I_kwDOEVxG285t0oRL + item_id: PVTI_lADOAwlwhM4AT36tzgIcwE0 + - issue_id: I_kwDOEVxG285t0oRn + item_id: PVTI_lADOAwlwhM4AT36tzgIcwFA + - issue_id: I_kwDOEVxG285t0oR6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwFI + - issue_id: I_kwDOEVxG285t0oSO + item_id: PVTI_lADOAwlwhM4AT36tzgIcwFM + - issue_id: I_kwDOEVxG285t0oSZ + item_id: PVTI_lADOAwlwhM4AT36tzgIcwFc + - issue_id: I_kwDOEVxG285t0oSt + item_id: PVTI_lADOAwlwhM4AT36tzgIcwFs + - issue_id: I_kwDOEVxG285t0oS6 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwF0 + - issue_id: I_kwDOEVxG285t0oTP + item_id: PVTI_lADOAwlwhM4AT36tzgIcwGA + - issue_id: I_kwDOEVxG285t0oTj + item_id: PVTI_lADOAwlwhM4AT36tzgIcwGI + - issue_id: I_kwDOEVxG285t0oTz + item_id: PVTI_lADOAwlwhM4AT36tzgIcwGU + - issue_id: I_kwDOEVxG285t0oUK + item_id: PVTI_lADOAwlwhM4AT36tzgIcwGk + - issue_id: I_kwDOEVxG285t0oUd + item_id: PVTI_lADOAwlwhM4AT36tzgIcwGw + - issue_id: I_kwDOEVxG285t0oU2 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwG0 + - issue_id: I_kwDOEVxG285t0oVG + item_id: PVTI_lADOAwlwhM4AT36tzgIcwG8 + - issue_id: I_kwDOEVxG285t0ojD + item_id: PVTI_lADOAwlwhM4AT36tzgIcwHM + - issue_id: I_kwDOEVxG285t0ojW + item_id: PVTI_lADOAwlwhM4AT36tzgIcwHQ + - issue_id: I_kwDOEVxG285t0ojm + item_id: PVTI_lADOAwlwhM4AT36tzgIcwHk + - issue_id: I_kwDOEVxG285t0oj2 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwHo + - issue_id: I_kwDOEVxG285t0okC + item_id: PVTI_lADOAwlwhM4AT36tzgIcwHs + - issue_id: I_kwDOEVxG285t0okW + item_id: PVTI_lADOAwlwhM4AT36tzgIcwII + - issue_id: I_kwDOEVxG285t0okm + item_id: PVTI_lADOAwlwhM4AT36tzgIcwIQ + - issue_id: I_kwDOEVxG285t0ok3 + item_id: PVTI_lADOAwlwhM4AT36tzgIcwIU + - issue_id: I_kwDOEVxG285t0olL + item_id: PVTI_lADOAwlwhM4AT36tzgIcwIY + - issue_id: I_kwDOEVxG285t0olc + item_id: PVTI_lADOAwlwhM4AT36tzgIcwIk + - issue_id: I_kwDOEVxG285t0olr + item_id: PVTI_lADOAwlwhM4AT36tzgIcwIo + number: 5 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT36tzgMsglk + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_Actors +- id: PVT_kwDOAwlwhM4AT38z + items: + - issue_id: I_kwDOEVxG285t0omD + item_id: PVTI_lADOAwlwhM4AT38zzgIcwJE + - issue_id: I_kwDOEVxG285t0oma + item_id: PVTI_lADOAwlwhM4AT38zzgIcwJY + - issue_id: I_kwDOEVxG285t0omk + item_id: PVTI_lADOAwlwhM4AT38zzgIcwJk + - issue_id: I_kwDOEVxG285t0om4 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwJ0 + - issue_id: I_kwDOEVxG285t0onL + item_id: PVTI_lADOAwlwhM4AT38zzgIcwJ4 + - issue_id: I_kwDOEVxG285t0onb + item_id: PVTI_lADOAwlwhM4AT38zzgIcwKE + - issue_id: I_kwDOEVxG285t0ono + item_id: PVTI_lADOAwlwhM4AT38zzgIcwKQ + - issue_id: I_kwDOEVxG285t0on2 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwKk + - issue_id: I_kwDOEVxG285t0ooG + item_id: PVTI_lADOAwlwhM4AT38zzgIcwKw + - issue_id: I_kwDOEVxG285t0pHl + item_id: PVTI_lADOAwlwhM4AT38zzgIcwK4 + - issue_id: I_kwDOEVxG285t0pIL + item_id: PVTI_lADOAwlwhM4AT38zzgIcwLE + - issue_id: I_kwDOEVxG285t0pIr + item_id: PVTI_lADOAwlwhM4AT38zzgIcwLI + - issue_id: I_kwDOEVxG285t0pJP + item_id: PVTI_lADOAwlwhM4AT38zzgIcwLY + - issue_id: I_kwDOEVxG285t0pJz + item_id: PVTI_lADOAwlwhM4AT38zzgIcwLk + - issue_id: I_kwDOEVxG285t0pKQ + item_id: PVTI_lADOAwlwhM4AT38zzgIcwLo + - issue_id: I_kwDOEVxG285t0pKl + item_id: PVTI_lADOAwlwhM4AT38zzgIcwMA + - issue_id: I_kwDOEVxG285t0pLT + item_id: PVTI_lADOAwlwhM4AT38zzgIcwME + - issue_id: I_kwDOEVxG285t0pLy + item_id: PVTI_lADOAwlwhM4AT38zzgIcwMM + - issue_id: I_kwDOEVxG285t0pMP + item_id: PVTI_lADOAwlwhM4AT38zzgIcwMU + - issue_id: I_kwDOEVxG285t0pMv + item_id: PVTI_lADOAwlwhM4AT38zzgIcwMk + - issue_id: I_kwDOEVxG285t0pNT + item_id: PVTI_lADOAwlwhM4AT38zzgIcwMo + - issue_id: I_kwDOEVxG285t0pN2 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwM8 + - issue_id: I_kwDOEVxG285t0pOg + item_id: PVTI_lADOAwlwhM4AT38zzgIcwNI + - issue_id: I_kwDOEVxG285t0pPB + item_id: PVTI_lADOAwlwhM4AT38zzgIcwNY + - issue_id: I_kwDOEVxG285t0pPi + item_id: PVTI_lADOAwlwhM4AT38zzgIcwNc + - issue_id: I_kwDOEVxG285t0pQH + item_id: PVTI_lADOAwlwhM4AT38zzgIcwNk + - issue_id: I_kwDOEVxG285t0pQr + item_id: PVTI_lADOAwlwhM4AT38zzgIcwN0 + - issue_id: I_kwDOEVxG285t0pRI + item_id: PVTI_lADOAwlwhM4AT38zzgIcwOA + - issue_id: I_kwDOEVxG285t0pRr + item_id: PVTI_lADOAwlwhM4AT38zzgIcwOc + - issue_id: I_kwDOEVxG285t0pyb + item_id: PVTI_lADOAwlwhM4AT38zzgIcwOo + - issue_id: I_kwDOEVxG285t0pyq + item_id: PVTI_lADOAwlwhM4AT38zzgIcwO8 + - issue_id: I_kwDOEVxG285t0py2 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwPE + - issue_id: I_kwDOEVxG285t0pzJ + item_id: PVTI_lADOAwlwhM4AT38zzgIcwPQ + - issue_id: I_kwDOEVxG285t0pzX + item_id: PVTI_lADOAwlwhM4AT38zzgIcwPc + - issue_id: I_kwDOEVxG285t0pzq + item_id: PVTI_lADOAwlwhM4AT38zzgIcwPk + - issue_id: I_kwDOEVxG285t0pz7 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwPw + - issue_id: I_kwDOEVxG285t0p0K + item_id: PVTI_lADOAwlwhM4AT38zzgIcwP8 + - issue_id: I_kwDOEVxG285t0p0a + item_id: PVTI_lADOAwlwhM4AT38zzgIcwQE + - issue_id: I_kwDOEVxG285t0p0p + item_id: PVTI_lADOAwlwhM4AT38zzgIcwQM + - issue_id: I_kwDOEVxG285t0p02 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwQU + - issue_id: I_kwDOEVxG285t0p1K + item_id: PVTI_lADOAwlwhM4AT38zzgIcwQc + - issue_id: I_kwDOEVxG285t0p1Q + item_id: PVTI_lADOAwlwhM4AT38zzgIcwQk + - issue_id: I_kwDOEVxG285t0p1e + item_id: PVTI_lADOAwlwhM4AT38zzgIcwQ0 + - issue_id: I_kwDOEVxG285t0p1x + item_id: PVTI_lADOAwlwhM4AT38zzgIcwQ4 + - issue_id: I_kwDOEVxG285t0p2E + item_id: PVTI_lADOAwlwhM4AT38zzgIcwRE + - issue_id: I_kwDOEVxG285t0p2V + item_id: PVTI_lADOAwlwhM4AT38zzgIcwRY + - issue_id: I_kwDOEVxG285t0p2j + item_id: PVTI_lADOAwlwhM4AT38zzgIcwRk + - issue_id: I_kwDOEVxG285t0p2z + item_id: PVTI_lADOAwlwhM4AT38zzgIcwR0 + - issue_id: I_kwDOEVxG285t0p3F + item_id: PVTI_lADOAwlwhM4AT38zzgIcwR8 + - issue_id: I_kwDOEVxG285t0qFq + item_id: PVTI_lADOAwlwhM4AT38zzgIcwSA + - issue_id: I_kwDOEVxG285t0qF9 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwSI + - issue_id: I_kwDOEVxG285t0qGN + item_id: PVTI_lADOAwlwhM4AT38zzgIcwSM + - issue_id: I_kwDOEVxG285t0qGg + item_id: PVTI_lADOAwlwhM4AT38zzgIcwSU + - issue_id: I_kwDOEVxG285t0qGu + item_id: PVTI_lADOAwlwhM4AT38zzgIcwSY + - issue_id: I_kwDOEVxG285t0qGz + item_id: PVTI_lADOAwlwhM4AT38zzgIcwSk + - issue_id: I_kwDOEVxG285t0qG_ + item_id: PVTI_lADOAwlwhM4AT38zzgIcwSo + - issue_id: I_kwDOEVxG285t0qHO + item_id: PVTI_lADOAwlwhM4AT38zzgIcwS0 + - issue_id: I_kwDOEVxG285t0qHg + item_id: PVTI_lADOAwlwhM4AT38zzgIcwS8 + - issue_id: I_kwDOEVxG285t0qHy + item_id: PVTI_lADOAwlwhM4AT38zzgIcwTU + - issue_id: I_kwDOEVxG285t0qIE + item_id: PVTI_lADOAwlwhM4AT38zzgIcwTg + - issue_id: I_kwDOEVxG285t0qIV + item_id: PVTI_lADOAwlwhM4AT38zzgIcwTk + - issue_id: I_kwDOEVxG285t0qIh + item_id: PVTI_lADOAwlwhM4AT38zzgIcwTo + - issue_id: I_kwDOEVxG285t0qIt + item_id: PVTI_lADOAwlwhM4AT38zzgIcwTs + - issue_id: I_kwDOEVxG285t0qI_ + item_id: PVTI_lADOAwlwhM4AT38zzgIcwUI + - issue_id: I_kwDOEVxG285t0qJQ + item_id: PVTI_lADOAwlwhM4AT38zzgIcwUY + - issue_id: I_kwDOEVxG285t0qJg + item_id: PVTI_lADOAwlwhM4AT38zzgIcwUo + - issue_id: I_kwDOEVxG285t0qJ8 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwU0 + - issue_id: I_kwDOEVxG285t0qKa + item_id: PVTI_lADOAwlwhM4AT38zzgIcwVE + - issue_id: I_kwDOEVxG285t0qKg + item_id: PVTI_lADOAwlwhM4AT38zzgIcwVU + - issue_id: I_kwDOEVxG285t0qZD + item_id: PVTI_lADOAwlwhM4AT38zzgIcwVk + - issue_id: I_kwDOEVxG285t0qZU + item_id: PVTI_lADOAwlwhM4AT38zzgIcwVs + - issue_id: I_kwDOEVxG285t0qZu + item_id: PVTI_lADOAwlwhM4AT38zzgIcwVw + - issue_id: I_kwDOEVxG285t0qaO + item_id: PVTI_lADOAwlwhM4AT38zzgIcwV8 + - issue_id: I_kwDOEVxG285t0qan + item_id: PVTI_lADOAwlwhM4AT38zzgIcwWQ + - issue_id: I_kwDOEVxG285t0qaz + item_id: PVTI_lADOAwlwhM4AT38zzgIcwWU + - issue_id: I_kwDOEVxG285t0qbA + item_id: PVTI_lADOAwlwhM4AT38zzgIcwWc + - issue_id: I_kwDOEVxG285t0qbU + item_id: PVTI_lADOAwlwhM4AT38zzgIcwWo + - issue_id: I_kwDOEVxG285t0qbf + item_id: PVTI_lADOAwlwhM4AT38zzgIcwW0 + - issue_id: I_kwDOEVxG285t0qbs + item_id: PVTI_lADOAwlwhM4AT38zzgIcwXA + - issue_id: I_kwDOEVxG285t0qb6 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwXQ + - issue_id: I_kwDOEVxG285t0qcG + item_id: PVTI_lADOAwlwhM4AT38zzgIcwXg + - issue_id: I_kwDOEVxG285t0qcg + item_id: PVTI_lADOAwlwhM4AT38zzgIcwXs + - issue_id: I_kwDOEVxG285t0qcv + item_id: PVTI_lADOAwlwhM4AT38zzgIcwYE + - issue_id: I_kwDOEVxG285t0qc9 + item_id: PVTI_lADOAwlwhM4AT38zzgIcwYc + - issue_id: I_kwDOEVxG285t0qdV + item_id: PVTI_lADOAwlwhM4AT38zzgIcwYo + - issue_id: I_kwDOEVxG285t0qdf + item_id: PVTI_lADOAwlwhM4AT38zzgIcwY4 + number: 6 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT38zzgMsh8U + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_dolphin +- id: PVT_kwDOAwlwhM4AT39K + items: + - issue_id: I_kwDOEVxG285t0qdt + item_id: PVTI_lADOAwlwhM4AT39KzgIcwZk + - issue_id: I_kwDOEVxG285t0qd6 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwZ0 + - issue_id: I_kwDOEVxG285t0qeH + item_id: PVTI_lADOAwlwhM4AT39KzgIcwZ8 + - issue_id: I_kwDOEVxG285t0qz2 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwaM + - issue_id: I_kwDOEVxG285t0q0Q + item_id: PVTI_lADOAwlwhM4AT39KzgIcwaU + - issue_id: I_kwDOEVxG285t0q0v + item_id: PVTI_lADOAwlwhM4AT39KzgIcwac + - issue_id: I_kwDOEVxG285t0q1J + item_id: PVTI_lADOAwlwhM4AT39KzgIcwao + - issue_id: I_kwDOEVxG285t0q1u + item_id: PVTI_lADOAwlwhM4AT39KzgIcwa0 + - issue_id: I_kwDOEVxG285t0q2J + item_id: PVTI_lADOAwlwhM4AT39KzgIcwa4 + - issue_id: I_kwDOEVxG285t0q2l + item_id: PVTI_lADOAwlwhM4AT39KzgIcwa8 + - issue_id: I_kwDOEVxG285t0q3C + item_id: PVTI_lADOAwlwhM4AT39KzgIcwbU + - issue_id: I_kwDOEVxG285t0q3d + item_id: PVTI_lADOAwlwhM4AT39KzgIcwbg + - issue_id: I_kwDOEVxG285t0q34 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwbo + - issue_id: I_kwDOEVxG285t0q4W + item_id: PVTI_lADOAwlwhM4AT39KzgIcwb0 + - issue_id: I_kwDOEVxG285t0yUs + item_id: PVTI_lADOAwlwhM4AT39KzgIcwb4 + - issue_id: I_kwDOEVxG285t0yU6 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwcA + - issue_id: I_kwDOEVxG285t0yVK + item_id: PVTI_lADOAwlwhM4AT39KzgIcwcM + - issue_id: I_kwDOEVxG285t0yVg + item_id: PVTI_lADOAwlwhM4AT39KzgIcwcU + - issue_id: I_kwDOEVxG285t0yVx + item_id: PVTI_lADOAwlwhM4AT39KzgIcwcc + - issue_id: I_kwDOEVxG285t0yV- + item_id: PVTI_lADOAwlwhM4AT39KzgIcwck + - issue_id: I_kwDOEVxG285t0yWO + item_id: PVTI_lADOAwlwhM4AT39KzgIcwc0 + - issue_id: I_kwDOEVxG285t0yWh + item_id: PVTI_lADOAwlwhM4AT39KzgIcwc4 + - issue_id: I_kwDOEVxG285t0yW0 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwdA + - issue_id: I_kwDOEVxG285t0yXF + item_id: PVTI_lADOAwlwhM4AT39KzgIcwdQ + - issue_id: I_kwDOEVxG285t0yXO + item_id: PVTI_lADOAwlwhM4AT39KzgIcwdc + - issue_id: I_kwDOEVxG285t0yXh + item_id: PVTI_lADOAwlwhM4AT39KzgIcwdw + - issue_id: I_kwDOEVxG285t0yXv + item_id: PVTI_lADOAwlwhM4AT39KzgIcwd8 + - issue_id: I_kwDOEVxG285t0yX- + item_id: PVTI_lADOAwlwhM4AT39KzgIcweE + - issue_id: I_kwDOEVxG285t0yYP + item_id: PVTI_lADOAwlwhM4AT39KzgIcweY + - issue_id: I_kwDOEVxG285t0yYg + item_id: PVTI_lADOAwlwhM4AT39KzgIcwec + - issue_id: I_kwDOEVxG285t0yYs + item_id: PVTI_lADOAwlwhM4AT39KzgIcwek + - issue_id: I_kwDOEVxG285t0yY_ + item_id: PVTI_lADOAwlwhM4AT39KzgIcwe0 + - issue_id: I_kwDOEVxG285t0yZQ + item_id: PVTI_lADOAwlwhM4AT39KzgIcwe4 + - issue_id: I_kwDOEVxG285t0yZb + item_id: PVTI_lADOAwlwhM4AT39KzgIcwfE + - issue_id: I_kwDOEVxG285t0yq4 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwfQ + - issue_id: I_kwDOEVxG285t0yrH + item_id: PVTI_lADOAwlwhM4AT39KzgIcwfY + - issue_id: I_kwDOEVxG285t0yra + item_id: PVTI_lADOAwlwhM4AT39KzgIcwfg + - issue_id: I_kwDOEVxG285t0yru + item_id: PVTI_lADOAwlwhM4AT39KzgIcwfo + - issue_id: I_kwDOEVxG285t0ysF + item_id: PVTI_lADOAwlwhM4AT39KzgIcwf0 + - issue_id: I_kwDOEVxG285t0ysU + item_id: PVTI_lADOAwlwhM4AT39KzgIcwf4 + - issue_id: I_kwDOEVxG285t0ysf + item_id: PVTI_lADOAwlwhM4AT39KzgIcwf8 + - issue_id: I_kwDOEVxG285t0ysy + item_id: PVTI_lADOAwlwhM4AT39KzgIcwgE + - issue_id: I_kwDOEVxG285t0ytL + item_id: PVTI_lADOAwlwhM4AT39KzgIcwgI + - issue_id: I_kwDOEVxG285t0ytg + item_id: PVTI_lADOAwlwhM4AT39KzgIcwgU + - issue_id: I_kwDOEVxG285t0yt3 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwgc + - issue_id: I_kwDOEVxG285t0yuM + item_id: PVTI_lADOAwlwhM4AT39KzgIcwgs + - issue_id: I_kwDOEVxG285t0yub + item_id: PVTI_lADOAwlwhM4AT39KzgIcwg4 + - issue_id: I_kwDOEVxG285t0yut + item_id: PVTI_lADOAwlwhM4AT39KzgIcwhE + - issue_id: I_kwDOEVxG285t0yvD + item_id: PVTI_lADOAwlwhM4AT39KzgIcwhQ + - issue_id: I_kwDOEVxG285t0yvX + item_id: PVTI_lADOAwlwhM4AT39KzgIcwhc + - issue_id: I_kwDOEVxG285t0yvn + item_id: PVTI_lADOAwlwhM4AT39KzgIcwho + - issue_id: I_kwDOEVxG285t0yv2 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwh4 + - issue_id: I_kwDOEVxG285t0ywH + item_id: PVTI_lADOAwlwhM4AT39KzgIcwiE + - issue_id: I_kwDOEVxG285t0ywZ + item_id: PVTI_lADOAwlwhM4AT39KzgIcwig + - issue_id: I_kwDOEVxG285t0zA2 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwi8 + - issue_id: I_kwDOEVxG285t0zBO + item_id: PVTI_lADOAwlwhM4AT39KzgIcwjM + - issue_id: I_kwDOEVxG285t0zBf + item_id: PVTI_lADOAwlwhM4AT39KzgIcwjg + - issue_id: I_kwDOEVxG285t0zBx + item_id: PVTI_lADOAwlwhM4AT39KzgIcwjk + - issue_id: I_kwDOEVxG285t0zCE + item_id: PVTI_lADOAwlwhM4AT39KzgIcwjs + - issue_id: I_kwDOEVxG285t0zCb + item_id: PVTI_lADOAwlwhM4AT39KzgIcwjw + - issue_id: I_kwDOEVxG285t0zCo + item_id: PVTI_lADOAwlwhM4AT39KzgIcwj0 + - issue_id: I_kwDOEVxG285t0zC3 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwj8 + - issue_id: I_kwDOEVxG285t0zDM + item_id: PVTI_lADOAwlwhM4AT39KzgIcwkI + - issue_id: I_kwDOEVxG285t0zDj + item_id: PVTI_lADOAwlwhM4AT39KzgIcwkU + - issue_id: I_kwDOEVxG285t0zEG + item_id: PVTI_lADOAwlwhM4AT39KzgIcwko + - issue_id: I_kwDOEVxG285t0zEY + item_id: PVTI_lADOAwlwhM4AT39KzgIcwk4 + - issue_id: I_kwDOEVxG285t0zEj + item_id: PVTI_lADOAwlwhM4AT39KzgIcwlc + - issue_id: I_kwDOEVxG285t0zEy + item_id: PVTI_lADOAwlwhM4AT39KzgIcwlk + - issue_id: I_kwDOEVxG285t0zFL + item_id: PVTI_lADOAwlwhM4AT39KzgIcwmA + - issue_id: I_kwDOEVxG285t0zFf + item_id: PVTI_lADOAwlwhM4AT39KzgIcwmU + - issue_id: I_kwDOEVxG285t0zF3 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwmY + - issue_id: I_kwDOEVxG285t0zGU + item_id: PVTI_lADOAwlwhM4AT39KzgIcwmc + - issue_id: I_kwDOEVxG285t0zGj + item_id: PVTI_lADOAwlwhM4AT39KzgIcwmo + - issue_id: I_kwDOEVxG285t0zG3 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwm0 + - issue_id: I_kwDOEVxG285t0zWz + item_id: PVTI_lADOAwlwhM4AT39KzgIcwnA + - issue_id: I_kwDOEVxG285t0zXI + item_id: PVTI_lADOAwlwhM4AT39KzgIcwnE + - issue_id: I_kwDOEVxG285t0zXh + item_id: PVTI_lADOAwlwhM4AT39KzgIcwnQ + - issue_id: I_kwDOEVxG285t0zXz + item_id: PVTI_lADOAwlwhM4AT39KzgIcwnU + - issue_id: I_kwDOEVxG285t0zX_ + item_id: PVTI_lADOAwlwhM4AT39KzgIcwnc + - issue_id: I_kwDOEVxG285t0zYR + item_id: PVTI_lADOAwlwhM4AT39KzgIcwnk + - issue_id: I_kwDOEVxG285t0zYo + item_id: PVTI_lADOAwlwhM4AT39KzgIcwns + - issue_id: I_kwDOEVxG285t0zY9 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwnw + - issue_id: I_kwDOEVxG285t0zZP + item_id: PVTI_lADOAwlwhM4AT39KzgIcwn8 + - issue_id: I_kwDOEVxG285t0zZg + item_id: PVTI_lADOAwlwhM4AT39KzgIcwoY + - issue_id: I_kwDOEVxG285t0zZ5 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwoo + - issue_id: I_kwDOEVxG285t0zaL + item_id: PVTI_lADOAwlwhM4AT39KzgIcwow + - issue_id: I_kwDOEVxG285t0zab + item_id: PVTI_lADOAwlwhM4AT39KzgIcwo4 + - issue_id: I_kwDOEVxG285t0zay + item_id: PVTI_lADOAwlwhM4AT39KzgIcwpA + - issue_id: I_kwDOEVxG285t0zbF + item_id: PVTI_lADOAwlwhM4AT39KzgIcwpU + - issue_id: I_kwDOEVxG285t0zbT + item_id: PVTI_lADOAwlwhM4AT39KzgIcwpg + - issue_id: I_kwDOEVxG285t0zbl + item_id: PVTI_lADOAwlwhM4AT39KzgIcwps + - issue_id: I_kwDOEVxG285t0zb5 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwpw + - issue_id: I_kwDOEVxG285t0zcG + item_id: PVTI_lADOAwlwhM4AT39KzgIcwp4 + - issue_id: I_kwDOEVxG285t0zce + item_id: PVTI_lADOAwlwhM4AT39KzgIcwp8 + - issue_id: I_kwDOEVxG285t0zst + item_id: PVTI_lADOAwlwhM4AT39KzgIcwqA + - issue_id: I_kwDOEVxG285t0ztB + item_id: PVTI_lADOAwlwhM4AT39KzgIcwqQ + - issue_id: I_kwDOEVxG285t0ztR + item_id: PVTI_lADOAwlwhM4AT39KzgIcwqY + - issue_id: I_kwDOEVxG285t0ztl + item_id: PVTI_lADOAwlwhM4AT39KzgIcwqo + - issue_id: I_kwDOEVxG285t0zt1 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwqs + - issue_id: I_kwDOEVxG285t0zt_ + item_id: PVTI_lADOAwlwhM4AT39KzgIcwqw + - issue_id: I_kwDOEVxG285t0zuU + item_id: PVTI_lADOAwlwhM4AT39KzgIcwrM + - issue_id: I_kwDOEVxG285t0zum + item_id: PVTI_lADOAwlwhM4AT39KzgIcwrc + - issue_id: I_kwDOEVxG285t0zu2 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwrs + - issue_id: I_kwDOEVxG285t0zvH + item_id: PVTI_lADOAwlwhM4AT39KzgIcwr8 + - issue_id: I_kwDOEVxG285t0zvP + item_id: PVTI_lADOAwlwhM4AT39KzgIcwsE + - issue_id: I_kwDOEVxG285t0zvm + item_id: PVTI_lADOAwlwhM4AT39KzgIcwsI + - issue_id: I_kwDOEVxG285t0zwC + item_id: PVTI_lADOAwlwhM4AT39KzgIcwsU + - issue_id: I_kwDOEVxG285t0zwT + item_id: PVTI_lADOAwlwhM4AT39KzgIcwsc + - issue_id: I_kwDOEVxG285t0zws + item_id: PVTI_lADOAwlwhM4AT39KzgIcwso + - issue_id: I_kwDOEVxG285t0zxA + item_id: PVTI_lADOAwlwhM4AT39KzgIcws0 + - issue_id: I_kwDOEVxG285t0zxR + item_id: PVTI_lADOAwlwhM4AT39KzgIcws8 + - issue_id: I_kwDOEVxG285t0zxi + item_id: PVTI_lADOAwlwhM4AT39KzgIcwtQ + - issue_id: I_kwDOEVxG285t0zx5 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwtY + - issue_id: I_kwDOEVxG285t0zyL + item_id: PVTI_lADOAwlwhM4AT39KzgIcwtg + - issue_id: I_kwDOEVxG285t00Cz + item_id: PVTI_lADOAwlwhM4AT39KzgIcwto + - issue_id: I_kwDOEVxG285t00DG + item_id: PVTI_lADOAwlwhM4AT39KzgIcwts + - issue_id: I_kwDOEVxG285t00DW + item_id: PVTI_lADOAwlwhM4AT39KzgIcwt0 + - issue_id: I_kwDOEVxG285t00Do + item_id: PVTI_lADOAwlwhM4AT39KzgIcwt4 + - issue_id: I_kwDOEVxG285t00D6 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwuE + - issue_id: I_kwDOEVxG285t00EO + item_id: PVTI_lADOAwlwhM4AT39KzgIcwuU + - issue_id: I_kwDOEVxG285t00Ej + item_id: PVTI_lADOAwlwhM4AT39KzgIcwuY + - issue_id: I_kwDOEVxG285t00Ez + item_id: PVTI_lADOAwlwhM4AT39KzgIcwuk + - issue_id: I_kwDOEVxG285t00FH + item_id: PVTI_lADOAwlwhM4AT39KzgIcwu0 + - issue_id: I_kwDOEVxG285t00Fc + item_id: PVTI_lADOAwlwhM4AT39KzgIcwvA + - issue_id: I_kwDOEVxG285t00F4 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwvQ + - issue_id: I_kwDOEVxG285t00GO + item_id: PVTI_lADOAwlwhM4AT39KzgIcwvg + - issue_id: I_kwDOEVxG285t00Ge + item_id: PVTI_lADOAwlwhM4AT39KzgIcwvs + - issue_id: I_kwDOEVxG285t00G1 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwwA + - issue_id: I_kwDOEVxG285t00HM + item_id: PVTI_lADOAwlwhM4AT39KzgIcwwM + - issue_id: I_kwDOEVxG285t00Hc + item_id: PVTI_lADOAwlwhM4AT39KzgIcwwY + - issue_id: I_kwDOEVxG285t00Hr + item_id: PVTI_lADOAwlwhM4AT39KzgIcwwo + - issue_id: I_kwDOEVxG285t00H_ + item_id: PVTI_lADOAwlwhM4AT39KzgIcwww + - issue_id: I_kwDOEVxG285t00IT + item_id: PVTI_lADOAwlwhM4AT39KzgIcwxA + - issue_id: I_kwDOEVxG285t00Ie + item_id: PVTI_lADOAwlwhM4AT39KzgIcwxQ + - issue_id: I_kwDOEVxG285t00bO + item_id: PVTI_lADOAwlwhM4AT39KzgIcwxU + - issue_id: I_kwDOEVxG285t00be + item_id: PVTI_lADOAwlwhM4AT39KzgIcwxg + - issue_id: I_kwDOEVxG285t00bz + item_id: PVTI_lADOAwlwhM4AT39KzgIcwxo + - issue_id: I_kwDOEVxG285t00cD + item_id: PVTI_lADOAwlwhM4AT39KzgIcwxw + - issue_id: I_kwDOEVxG285t00cS + item_id: PVTI_lADOAwlwhM4AT39KzgIcwx8 + - issue_id: I_kwDOEVxG285t00co + item_id: PVTI_lADOAwlwhM4AT39KzgIcwyM + - issue_id: I_kwDOEVxG285t00c8 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwyU + - issue_id: I_kwDOEVxG285t00dQ + item_id: PVTI_lADOAwlwhM4AT39KzgIcwyc + - issue_id: I_kwDOEVxG285t00dk + item_id: PVTI_lADOAwlwhM4AT39KzgIcwyo + - issue_id: I_kwDOEVxG285t00d2 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwyw + - issue_id: I_kwDOEVxG285t00eG + item_id: PVTI_lADOAwlwhM4AT39KzgIcwy4 + - issue_id: I_kwDOEVxG285t00eS + item_id: PVTI_lADOAwlwhM4AT39KzgIcwzI + - issue_id: I_kwDOEVxG285t00en + item_id: PVTI_lADOAwlwhM4AT39KzgIcwzM + - issue_id: I_kwDOEVxG285t00e3 + item_id: PVTI_lADOAwlwhM4AT39KzgIcwzQ + - issue_id: I_kwDOEVxG285t00fG + item_id: PVTI_lADOAwlwhM4AT39KzgIcwzY + - issue_id: I_kwDOEVxG285t00fd + item_id: PVTI_lADOAwlwhM4AT39KzgIcwzk + - issue_id: I_kwDOEVxG285t00fz + item_id: PVTI_lADOAwlwhM4AT39KzgIcwzs + number: 7 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT39KzgMsiLE + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_dolzel +- id: PVT_kwDOAwlwhM4AT39l + items: + - issue_id: I_kwDOEVxG285t00gB + item_id: PVTI_lADOAwlwhM4AT39lzgIcw0g + - issue_id: I_kwDOEVxG285t00gY + item_id: PVTI_lADOAwlwhM4AT39lzgIcw0w + - issue_id: I_kwDOEVxG285t00gn + item_id: PVTI_lADOAwlwhM4AT39lzgIcw00 + - issue_id: I_kwDOEVxG285t00x4 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw1E + - issue_id: I_kwDOEVxG285t00yS + item_id: PVTI_lADOAwlwhM4AT39lzgIcw1M + - issue_id: I_kwDOEVxG285t00yi + item_id: PVTI_lADOAwlwhM4AT39lzgIcw1Q + - issue_id: I_kwDOEVxG285t00y1 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw1Y + - issue_id: I_kwDOEVxG285t00zN + item_id: PVTI_lADOAwlwhM4AT39lzgIcw1k + - issue_id: I_kwDOEVxG285t00zi + item_id: PVTI_lADOAwlwhM4AT39lzgIcw18 + - issue_id: I_kwDOEVxG285t00z4 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw2A + - issue_id: I_kwDOEVxG285t000P + item_id: PVTI_lADOAwlwhM4AT39lzgIcw2E + - issue_id: I_kwDOEVxG285t000n + item_id: PVTI_lADOAwlwhM4AT39lzgIcw2I + - issue_id: I_kwDOEVxG285t000- + item_id: PVTI_lADOAwlwhM4AT39lzgIcw2Y + - issue_id: I_kwDOEVxG285t09oX + item_id: PVTI_lADOAwlwhM4AT39lzgIcw2k + - issue_id: I_kwDOEVxG285t09oy + item_id: PVTI_lADOAwlwhM4AT39lzgIcw2s + - issue_id: I_kwDOEVxG285t09pD + item_id: PVTI_lADOAwlwhM4AT39lzgIcw2w + - issue_id: I_kwDOEVxG285t09pY + item_id: PVTI_lADOAwlwhM4AT39lzgIcw24 + - issue_id: I_kwDOEVxG285t09px + item_id: PVTI_lADOAwlwhM4AT39lzgIcw3I + - issue_id: I_kwDOEVxG285t09qP + item_id: PVTI_lADOAwlwhM4AT39lzgIcw3Q + - issue_id: I_kwDOEVxG285t09qm + item_id: PVTI_lADOAwlwhM4AT39lzgIcw3Y + - issue_id: I_kwDOEVxG285t09q8 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw3g + - issue_id: I_kwDOEVxG285t09rm + item_id: PVTI_lADOAwlwhM4AT39lzgIcw3w + - issue_id: I_kwDOEVxG285t09sF + item_id: PVTI_lADOAwlwhM4AT39lzgIcw4A + - issue_id: I_kwDOEVxG285t09sb + item_id: PVTI_lADOAwlwhM4AT39lzgIcw4I + - issue_id: I_kwDOEVxG285t09s4 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw4Q + - issue_id: I_kwDOEVxG285t09tS + item_id: PVTI_lADOAwlwhM4AT39lzgIcw4c + - issue_id: I_kwDOEVxG285t09ts + item_id: PVTI_lADOAwlwhM4AT39lzgIcw4o + - issue_id: I_kwDOEVxG285t09uB + item_id: PVTI_lADOAwlwhM4AT39lzgIcw44 + - issue_id: I_kwDOEVxG285t09uY + item_id: PVTI_lADOAwlwhM4AT39lzgIcw5E + - issue_id: I_kwDOEVxG285t09ut + item_id: PVTI_lADOAwlwhM4AT39lzgIcw5Q + - issue_id: I_kwDOEVxG285t09vH + item_id: PVTI_lADOAwlwhM4AT39lzgIcw5c + - issue_id: I_kwDOEVxG285t09vf + item_id: PVTI_lADOAwlwhM4AT39lzgIcw5k + - issue_id: I_kwDOEVxG285t09vw + item_id: PVTI_lADOAwlwhM4AT39lzgIcw5o + - issue_id: I_kwDOEVxG285t0-ED + item_id: PVTI_lADOAwlwhM4AT39lzgIcw5w + - issue_id: I_kwDOEVxG285t0-Ee + item_id: PVTI_lADOAwlwhM4AT39lzgIcw54 + - issue_id: I_kwDOEVxG285t0-Ew + item_id: PVTI_lADOAwlwhM4AT39lzgIcw6A + - issue_id: I_kwDOEVxG285t0-FJ + item_id: PVTI_lADOAwlwhM4AT39lzgIcw6I + - issue_id: I_kwDOEVxG285t0-Fh + item_id: PVTI_lADOAwlwhM4AT39lzgIcw6Y + - issue_id: I_kwDOEVxG285t0-F5 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw6s + - issue_id: I_kwDOEVxG285t0-GN + item_id: PVTI_lADOAwlwhM4AT39lzgIcw68 + - issue_id: I_kwDOEVxG285t0-Gk + item_id: PVTI_lADOAwlwhM4AT39lzgIcw7I + - issue_id: I_kwDOEVxG285t0-G1 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw7U + - issue_id: I_kwDOEVxG285t0-HG + item_id: PVTI_lADOAwlwhM4AT39lzgIcw7c + - issue_id: I_kwDOEVxG285t0-Hu + item_id: PVTI_lADOAwlwhM4AT39lzgIcw70 + - issue_id: I_kwDOEVxG285t0-II + item_id: PVTI_lADOAwlwhM4AT39lzgIcw78 + - issue_id: I_kwDOEVxG285t0-Ii + item_id: PVTI_lADOAwlwhM4AT39lzgIcw8I + - issue_id: I_kwDOEVxG285t0-I- + item_id: PVTI_lADOAwlwhM4AT39lzgIcw8U + - issue_id: I_kwDOEVxG285t0-Jb + item_id: PVTI_lADOAwlwhM4AT39lzgIcw8k + - issue_id: I_kwDOEVxG285t0-J0 + item_id: PVTI_lADOAwlwhM4AT39lzgIcw8w + - issue_id: I_kwDOEVxG285t0-KI + item_id: PVTI_lADOAwlwhM4AT39lzgIcw80 + - issue_id: I_kwDOEVxG285t0-KY + item_id: PVTI_lADOAwlwhM4AT39lzgIcw9I + - issue_id: I_kwDOEVxG285t0-Kz + item_id: PVTI_lADOAwlwhM4AT39lzgIcw9Q + - issue_id: I_kwDOEVxG285t0-LO + item_id: PVTI_lADOAwlwhM4AT39lzgIcw9c + number: 8 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT39lzgMsicU + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_Framework +- id: PVT_kwDOAwlwhM4AT39u + items: + - issue_id: I_kwDOEVxG285t0-yL + item_id: PVTI_lADOAwlwhM4AT39uzgIcw9s + - issue_id: I_kwDOEVxG285t0-y0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcw9w + - issue_id: I_kwDOEVxG285t0-zf + item_id: PVTI_lADOAwlwhM4AT39uzgIcw90 + - issue_id: I_kwDOEVxG285t0-0L + item_id: PVTI_lADOAwlwhM4AT39uzgIcw98 + - issue_id: I_kwDOEVxG285t0-00 + item_id: PVTI_lADOAwlwhM4AT39uzgIcw-Q + - issue_id: I_kwDOEVxG285t0-1k + item_id: PVTI_lADOAwlwhM4AT39uzgIcw-Y + - issue_id: I_kwDOEVxG285t0-2a + item_id: PVTI_lADOAwlwhM4AT39uzgIcw-k + - issue_id: I_kwDOEVxG285t0-3N + item_id: PVTI_lADOAwlwhM4AT39uzgIcw-o + - issue_id: I_kwDOEVxG285t0-4j + item_id: PVTI_lADOAwlwhM4AT39uzgIcw-0 + - issue_id: I_kwDOEVxG285t0-5F + item_id: PVTI_lADOAwlwhM4AT39uzgIcw-8 + - issue_id: I_kwDOEVxG285t0-50 + item_id: PVTI_lADOAwlwhM4AT39uzgIcw_I + - issue_id: I_kwDOEVxG285t0-6Z + item_id: PVTI_lADOAwlwhM4AT39uzgIcw_M + - issue_id: I_kwDOEVxG285t0-7Q + item_id: PVTI_lADOAwlwhM4AT39uzgIcw_U + - issue_id: I_kwDOEVxG285t0-79 + item_id: PVTI_lADOAwlwhM4AT39uzgIcw_g + - issue_id: I_kwDOEVxG285t0-8k + item_id: PVTI_lADOAwlwhM4AT39uzgIcw_o + - issue_id: I_kwDOEVxG285t0-9W + item_id: PVTI_lADOAwlwhM4AT39uzgIcw_4 + - issue_id: I_kwDOEVxG285t0--D + item_id: PVTI_lADOAwlwhM4AT39uzgIcw_8 + - issue_id: I_kwDOEVxG285t0--6 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxAA + - issue_id: I_kwDOEVxG285t0-_w + item_id: PVTI_lADOAwlwhM4AT39uzgIcxAM + - issue_id: I_kwDOEVxG285t0_AY + item_id: PVTI_lADOAwlwhM4AT39uzgIcxAU + - issue_id: I_kwDOEVxG285t0_Y8 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxAc + - issue_id: I_kwDOEVxG285t0_Zc + item_id: PVTI_lADOAwlwhM4AT39uzgIcxAg + - issue_id: I_kwDOEVxG285t0_Z0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxAo + - issue_id: I_kwDOEVxG285t0_ab + item_id: PVTI_lADOAwlwhM4AT39uzgIcxAw + - issue_id: I_kwDOEVxG285t0_a- + item_id: PVTI_lADOAwlwhM4AT39uzgIcxA4 + - issue_id: I_kwDOEVxG285t0_ba + item_id: PVTI_lADOAwlwhM4AT39uzgIcxBA + - issue_id: I_kwDOEVxG285t0_b8 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxBQ + - issue_id: I_kwDOEVxG285t0_cU + item_id: PVTI_lADOAwlwhM4AT39uzgIcxBY + - issue_id: I_kwDOEVxG285t0_c2 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxBg + - issue_id: I_kwDOEVxG285t0_dM + item_id: PVTI_lADOAwlwhM4AT39uzgIcxBk + - issue_id: I_kwDOEVxG285t0_dz + item_id: PVTI_lADOAwlwhM4AT39uzgIcxBs + - issue_id: I_kwDOEVxG285t0_eN + item_id: PVTI_lADOAwlwhM4AT39uzgIcxB4 + - issue_id: I_kwDOEVxG285t0_eq + item_id: PVTI_lADOAwlwhM4AT39uzgIcxCA + - issue_id: I_kwDOEVxG285t0_fL + item_id: PVTI_lADOAwlwhM4AT39uzgIcxCc + - issue_id: I_kwDOEVxG285t0_fw + item_id: PVTI_lADOAwlwhM4AT39uzgIcxCs + - issue_id: I_kwDOEVxG285t0_gL + item_id: PVTI_lADOAwlwhM4AT39uzgIcxC0 + - issue_id: I_kwDOEVxG285t0_gp + item_id: PVTI_lADOAwlwhM4AT39uzgIcxDM + - issue_id: I_kwDOEVxG285t0_hF + item_id: PVTI_lADOAwlwhM4AT39uzgIcxDQ + - issue_id: I_kwDOEVxG285t0_he + item_id: PVTI_lADOAwlwhM4AT39uzgIcxDY + - issue_id: I_kwDOEVxG285t0_h- + item_id: PVTI_lADOAwlwhM4AT39uzgIcxDk + - issue_id: I_kwDOEVxG285t0_3l + item_id: PVTI_lADOAwlwhM4AT39uzgIcxDo + - issue_id: I_kwDOEVxG285t0_4A + item_id: PVTI_lADOAwlwhM4AT39uzgIcxDs + - issue_id: I_kwDOEVxG285t0_4c + item_id: PVTI_lADOAwlwhM4AT39uzgIcxD0 + - issue_id: I_kwDOEVxG285t0_47 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxEI + - issue_id: I_kwDOEVxG285t0_5Y + item_id: PVTI_lADOAwlwhM4AT39uzgIcxEM + - issue_id: I_kwDOEVxG285t0_52 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxEU + - issue_id: I_kwDOEVxG285t0_6P + item_id: PVTI_lADOAwlwhM4AT39uzgIcxEc + - issue_id: I_kwDOEVxG285t0_6x + item_id: PVTI_lADOAwlwhM4AT39uzgIcxEs + - issue_id: I_kwDOEVxG285t0_7L + item_id: PVTI_lADOAwlwhM4AT39uzgIcxEw + - issue_id: I_kwDOEVxG285t0_7s + item_id: PVTI_lADOAwlwhM4AT39uzgIcxFA + - issue_id: I_kwDOEVxG285t0_8N + item_id: PVTI_lADOAwlwhM4AT39uzgIcxFI + - issue_id: I_kwDOEVxG285t0_8q + item_id: PVTI_lADOAwlwhM4AT39uzgIcxFU + - issue_id: I_kwDOEVxG285t0_9E + item_id: PVTI_lADOAwlwhM4AT39uzgIcxFc + - issue_id: I_kwDOEVxG285t0_9c + item_id: PVTI_lADOAwlwhM4AT39uzgIcxFg + - issue_id: I_kwDOEVxG285t0_94 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxFs + - issue_id: I_kwDOEVxG285t0_-T + item_id: PVTI_lADOAwlwhM4AT39uzgIcxF4 + - issue_id: I_kwDOEVxG285t0_-2 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxGA + - issue_id: I_kwDOEVxG285t0__V + item_id: PVTI_lADOAwlwhM4AT39uzgIcxGQ + - issue_id: I_kwDOEVxG285t0__z + item_id: PVTI_lADOAwlwhM4AT39uzgIcxGY + - issue_id: I_kwDOEVxG285t1AAR + item_id: PVTI_lADOAwlwhM4AT39uzgIcxGo + - issue_id: I_kwDOEVxG285t1AYe + item_id: PVTI_lADOAwlwhM4AT39uzgIcxG0 + - issue_id: I_kwDOEVxG285t1AY3 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxHA + - issue_id: I_kwDOEVxG285t1AZU + item_id: PVTI_lADOAwlwhM4AT39uzgIcxHQ + - issue_id: I_kwDOEVxG285t1AZ3 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxHU + - issue_id: I_kwDOEVxG285t1AaP + item_id: PVTI_lADOAwlwhM4AT39uzgIcxHg + - issue_id: I_kwDOEVxG285t1Aay + item_id: PVTI_lADOAwlwhM4AT39uzgIcxHo + - issue_id: I_kwDOEVxG285t1AbS + item_id: PVTI_lADOAwlwhM4AT39uzgIcxH4 + - issue_id: I_kwDOEVxG285t1Ab_ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxIE + - issue_id: I_kwDOEVxG285t1AcT + item_id: PVTI_lADOAwlwhM4AT39uzgIcxIU + - issue_id: I_kwDOEVxG285t1Ac2 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxIg + - issue_id: I_kwDOEVxG285t1AdO + item_id: PVTI_lADOAwlwhM4AT39uzgIcxIs + - issue_id: I_kwDOEVxG285t1Adn + item_id: PVTI_lADOAwlwhM4AT39uzgIcxI0 + - issue_id: I_kwDOEVxG285t1AeA + item_id: PVTI_lADOAwlwhM4AT39uzgIcxJE + - issue_id: I_kwDOEVxG285t1AeX + item_id: PVTI_lADOAwlwhM4AT39uzgIcxJM + - issue_id: I_kwDOEVxG285t1Aez + item_id: PVTI_lADOAwlwhM4AT39uzgIcxJY + - issue_id: I_kwDOEVxG285t1AfT + item_id: PVTI_lADOAwlwhM4AT39uzgIcxJk + - issue_id: I_kwDOEVxG285t1Af0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxJs + - issue_id: I_kwDOEVxG285t1AgZ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxJ0 + - issue_id: I_kwDOEVxG285t1AhA + item_id: PVTI_lADOAwlwhM4AT39uzgIcxJ8 + - issue_id: I_kwDOEVxG285t1Ahm + item_id: PVTI_lADOAwlwhM4AT39uzgIcxKM + - issue_id: I_kwDOEVxG285t1A2S + item_id: PVTI_lADOAwlwhM4AT39uzgIcxKc + - issue_id: I_kwDOEVxG285t1A2r + item_id: PVTI_lADOAwlwhM4AT39uzgIcxKk + - issue_id: I_kwDOEVxG285t1A3N + item_id: PVTI_lADOAwlwhM4AT39uzgIcxKs + - issue_id: I_kwDOEVxG285t1A3r + item_id: PVTI_lADOAwlwhM4AT39uzgIcxK4 + - issue_id: I_kwDOEVxG285t1A3_ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxLE + - issue_id: I_kwDOEVxG285t1A4b + item_id: PVTI_lADOAwlwhM4AT39uzgIcxLI + - issue_id: I_kwDOEVxG285t1A42 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxLU + - issue_id: I_kwDOEVxG285t1A5U + item_id: PVTI_lADOAwlwhM4AT39uzgIcxLc + - issue_id: I_kwDOEVxG285t1A5u + item_id: PVTI_lADOAwlwhM4AT39uzgIcxLg + - issue_id: I_kwDOEVxG285t1A6N + item_id: PVTI_lADOAwlwhM4AT39uzgIcxL8 + - issue_id: I_kwDOEVxG285t1A6q + item_id: PVTI_lADOAwlwhM4AT39uzgIcxMI + - issue_id: I_kwDOEVxG285t1A6_ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxMY + - issue_id: I_kwDOEVxG285t1A7d + item_id: PVTI_lADOAwlwhM4AT39uzgIcxMo + - issue_id: I_kwDOEVxG285t1A76 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxMs + - issue_id: I_kwDOEVxG285t1A8V + item_id: PVTI_lADOAwlwhM4AT39uzgIcxMw + - issue_id: I_kwDOEVxG285t1A8w + item_id: PVTI_lADOAwlwhM4AT39uzgIcxNA + - issue_id: I_kwDOEVxG285t1A9a + item_id: PVTI_lADOAwlwhM4AT39uzgIcxNI + - issue_id: I_kwDOEVxG285t1A9y + item_id: PVTI_lADOAwlwhM4AT39uzgIcxNM + - issue_id: I_kwDOEVxG285t1A-N + item_id: PVTI_lADOAwlwhM4AT39uzgIcxNc + - issue_id: I_kwDOEVxG285t1A-q + item_id: PVTI_lADOAwlwhM4AT39uzgIcxN0 + - issue_id: I_kwDOEVxG285t1BTg + item_id: PVTI_lADOAwlwhM4AT39uzgIcxN4 + - issue_id: I_kwDOEVxG285t1BT- + item_id: PVTI_lADOAwlwhM4AT39uzgIcxOM + - issue_id: I_kwDOEVxG285t1BUi + item_id: PVTI_lADOAwlwhM4AT39uzgIcxOY + - issue_id: I_kwDOEVxG285t1BVM + item_id: PVTI_lADOAwlwhM4AT39uzgIcxOc + - issue_id: I_kwDOEVxG285t1BVv + item_id: PVTI_lADOAwlwhM4AT39uzgIcxOs + - issue_id: I_kwDOEVxG285t1BWG + item_id: PVTI_lADOAwlwhM4AT39uzgIcxOw + - issue_id: I_kwDOEVxG285t1BWW + item_id: PVTI_lADOAwlwhM4AT39uzgIcxO8 + - issue_id: I_kwDOEVxG285t1BWu + item_id: PVTI_lADOAwlwhM4AT39uzgIcxPI + - issue_id: I_kwDOEVxG285t1BXJ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxPY + - issue_id: I_kwDOEVxG285t1BXy + item_id: PVTI_lADOAwlwhM4AT39uzgIcxPo + - issue_id: I_kwDOEVxG285t1Li4 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxP0 + - issue_id: I_kwDOEVxG285t1LjZ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxQA + - issue_id: I_kwDOEVxG285t1Lj8 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxQM + - issue_id: I_kwDOEVxG285t1LkT + item_id: PVTI_lADOAwlwhM4AT39uzgIcxQY + - issue_id: I_kwDOEVxG285t1LlD + item_id: PVTI_lADOAwlwhM4AT39uzgIcxQk + - issue_id: I_kwDOEVxG285t1Ll3 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxQo + - issue_id: I_kwDOEVxG285t1Lmd + item_id: PVTI_lADOAwlwhM4AT39uzgIcxQ8 + - issue_id: I_kwDOEVxG285t1LnM + item_id: PVTI_lADOAwlwhM4AT39uzgIcxRA + - issue_id: I_kwDOEVxG285t1LoG + item_id: PVTI_lADOAwlwhM4AT39uzgIcxRE + - issue_id: I_kwDOEVxG285t1Log + item_id: PVTI_lADOAwlwhM4AT39uzgIcxRY + - issue_id: I_kwDOEVxG285t1Lo7 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxRk + - issue_id: I_kwDOEVxG285t1LpR + item_id: PVTI_lADOAwlwhM4AT39uzgIcxRw + - issue_id: I_kwDOEVxG285t1Lpz + item_id: PVTI_lADOAwlwhM4AT39uzgIcxSE + - issue_id: I_kwDOEVxG285t1Lqe + item_id: PVTI_lADOAwlwhM4AT39uzgIcxSQ + - issue_id: I_kwDOEVxG285t1LrB + item_id: PVTI_lADOAwlwhM4AT39uzgIcxSc + - issue_id: I_kwDOEVxG285t1Lrq + item_id: PVTI_lADOAwlwhM4AT39uzgIcxSo + - issue_id: I_kwDOEVxG285t1Lsh + item_id: PVTI_lADOAwlwhM4AT39uzgIcxSs + - issue_id: I_kwDOEVxG285t1Ls7 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxSw + - issue_id: I_kwDOEVxG285t1LtV + item_id: PVTI_lADOAwlwhM4AT39uzgIcxS8 + - issue_id: I_kwDOEVxG285t1MD1 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxTE + - issue_id: I_kwDOEVxG285t1MEb + item_id: PVTI_lADOAwlwhM4AT39uzgIcxTU + - issue_id: I_kwDOEVxG285t1ME- + item_id: PVTI_lADOAwlwhM4AT39uzgIcxTc + - issue_id: I_kwDOEVxG285t1MFf + item_id: PVTI_lADOAwlwhM4AT39uzgIcxTk + - issue_id: I_kwDOEVxG285t1MF- + item_id: PVTI_lADOAwlwhM4AT39uzgIcxTs + - issue_id: I_kwDOEVxG285t1MGa + item_id: PVTI_lADOAwlwhM4AT39uzgIcxUA + - issue_id: I_kwDOEVxG285t1MG8 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxUE + - issue_id: I_kwDOEVxG285t1MHk + item_id: PVTI_lADOAwlwhM4AT39uzgIcxUI + - issue_id: I_kwDOEVxG285t1MIM + item_id: PVTI_lADOAwlwhM4AT39uzgIcxUQ + - issue_id: I_kwDOEVxG285t1MIv + item_id: PVTI_lADOAwlwhM4AT39uzgIcxUc + - issue_id: I_kwDOEVxG285t1MJU + item_id: PVTI_lADOAwlwhM4AT39uzgIcxUo + - issue_id: I_kwDOEVxG285t1MJ5 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxU8 + - issue_id: I_kwDOEVxG285t1MKe + item_id: PVTI_lADOAwlwhM4AT39uzgIcxVA + - issue_id: I_kwDOEVxG285t1MK8 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxVE + - issue_id: I_kwDOEVxG285t1MLg + item_id: PVTI_lADOAwlwhM4AT39uzgIcxVM + - issue_id: I_kwDOEVxG285t1MMD + item_id: PVTI_lADOAwlwhM4AT39uzgIcxVU + - issue_id: I_kwDOEVxG285t1MMa + item_id: PVTI_lADOAwlwhM4AT39uzgIcxVc + - issue_id: I_kwDOEVxG285t1MM3 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxVo + - issue_id: I_kwDOEVxG285t1MN8 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxV4 + - issue_id: I_kwDOEVxG285t1MOY + item_id: PVTI_lADOAwlwhM4AT39uzgIcxWI + - issue_id: I_kwDOEVxG285t1Mjp + item_id: PVTI_lADOAwlwhM4AT39uzgIcxWU + - issue_id: I_kwDOEVxG285t1Mj_ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxWs + - issue_id: I_kwDOEVxG285t1Mkg + item_id: PVTI_lADOAwlwhM4AT39uzgIcxW0 + - issue_id: I_kwDOEVxG285t1Mk0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxW4 + - issue_id: I_kwDOEVxG285t1Mlc + item_id: PVTI_lADOAwlwhM4AT39uzgIcxXI + - issue_id: I_kwDOEVxG285t1Mlt + item_id: PVTI_lADOAwlwhM4AT39uzgIcxXU + - issue_id: I_kwDOEVxG285t1MmR + item_id: PVTI_lADOAwlwhM4AT39uzgIcxXc + - issue_id: I_kwDOEVxG285t1Mmv + item_id: PVTI_lADOAwlwhM4AT39uzgIcxXk + - issue_id: I_kwDOEVxG285t1MnY + item_id: PVTI_lADOAwlwhM4AT39uzgIcxXo + - issue_id: I_kwDOEVxG285t1Mn7 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxYA + - issue_id: I_kwDOEVxG285t1MpA + item_id: PVTI_lADOAwlwhM4AT39uzgIcxYM + - issue_id: I_kwDOEVxG285t1Mpd + item_id: PVTI_lADOAwlwhM4AT39uzgIcxYY + - issue_id: I_kwDOEVxG285t1MqB + item_id: PVTI_lADOAwlwhM4AT39uzgIcxYo + - issue_id: I_kwDOEVxG285t1Mqw + item_id: PVTI_lADOAwlwhM4AT39uzgIcxYs + - issue_id: I_kwDOEVxG285t1MrQ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxYw + - issue_id: I_kwDOEVxG285t1Mr2 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxY0 + - issue_id: I_kwDOEVxG285t1MsY + item_id: PVTI_lADOAwlwhM4AT39uzgIcxY4 + - issue_id: I_kwDOEVxG285t1Ms7 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxY8 + - issue_id: I_kwDOEVxG285t1Mtf + item_id: PVTI_lADOAwlwhM4AT39uzgIcxZM + - issue_id: I_kwDOEVxG285t1Mt1 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxZU + - issue_id: I_kwDOEVxG285t1NEE + item_id: PVTI_lADOAwlwhM4AT39uzgIcxZo + - issue_id: I_kwDOEVxG285t1NEm + item_id: PVTI_lADOAwlwhM4AT39uzgIcxZw + - issue_id: I_kwDOEVxG285t1NFT + item_id: PVTI_lADOAwlwhM4AT39uzgIcxZ4 + - issue_id: I_kwDOEVxG285t1NFy + item_id: PVTI_lADOAwlwhM4AT39uzgIcxaE + - issue_id: I_kwDOEVxG285t1NGW + item_id: PVTI_lADOAwlwhM4AT39uzgIcxaM + - issue_id: I_kwDOEVxG285t1NG1 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxaU + - issue_id: I_kwDOEVxG285t1NHc + item_id: PVTI_lADOAwlwhM4AT39uzgIcxac + - issue_id: I_kwDOEVxG285t1NIL + item_id: PVTI_lADOAwlwhM4AT39uzgIcxag + - issue_id: I_kwDOEVxG285t1NIu + item_id: PVTI_lADOAwlwhM4AT39uzgIcxas + - issue_id: I_kwDOEVxG285t1NJM + item_id: PVTI_lADOAwlwhM4AT39uzgIcxbI + - issue_id: I_kwDOEVxG285t1NJ0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxbc + - issue_id: I_kwDOEVxG285t1NKW + item_id: PVTI_lADOAwlwhM4AT39uzgIcxbg + - issue_id: I_kwDOEVxG285t1NKx + item_id: PVTI_lADOAwlwhM4AT39uzgIcxbo + - issue_id: I_kwDOEVxG285t1NLS + item_id: PVTI_lADOAwlwhM4AT39uzgIcxcA + - issue_id: I_kwDOEVxG285t1NL0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxcQ + - issue_id: I_kwDOEVxG285t1NMN + item_id: PVTI_lADOAwlwhM4AT39uzgIcxcY + - issue_id: I_kwDOEVxG285t1NM_ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxco + - issue_id: I_kwDOEVxG285t1NNp + item_id: PVTI_lADOAwlwhM4AT39uzgIcxcw + - issue_id: I_kwDOEVxG285t1NOG + item_id: PVTI_lADOAwlwhM4AT39uzgIcxdo + - issue_id: I_kwDOEVxG285t1NOb + item_id: PVTI_lADOAwlwhM4AT39uzgIcxd4 + - issue_id: I_kwDOEVxG285t1Nk3 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxeE + - issue_id: I_kwDOEVxG285t1NlY + item_id: PVTI_lADOAwlwhM4AT39uzgIcxeM + - issue_id: I_kwDOEVxG285t1Nl2 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxec + - issue_id: I_kwDOEVxG285t1NmV + item_id: PVTI_lADOAwlwhM4AT39uzgIcxek + - issue_id: I_kwDOEVxG285t1Nm0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxeo + - issue_id: I_kwDOEVxG285t1NnW + item_id: PVTI_lADOAwlwhM4AT39uzgIcxew + - issue_id: I_kwDOEVxG285t1Nnx + item_id: PVTI_lADOAwlwhM4AT39uzgIcxfA + - issue_id: I_kwDOEVxG285t1NoT + item_id: PVTI_lADOAwlwhM4AT39uzgIcxfM + - issue_id: I_kwDOEVxG285t1Nov + item_id: PVTI_lADOAwlwhM4AT39uzgIcxfQ + - issue_id: I_kwDOEVxG285t1NpP + item_id: PVTI_lADOAwlwhM4AT39uzgIcxfU + - issue_id: I_kwDOEVxG285t1Np4 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxfk + - issue_id: I_kwDOEVxG285t1NqT + item_id: PVTI_lADOAwlwhM4AT39uzgIcxfs + - issue_id: I_kwDOEVxG285t1Nqt + item_id: PVTI_lADOAwlwhM4AT39uzgIcxf0 + - issue_id: I_kwDOEVxG285t1NrW + item_id: PVTI_lADOAwlwhM4AT39uzgIcxgA + - issue_id: I_kwDOEVxG285t1Nr3 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxgQ + - issue_id: I_kwDOEVxG285t1Nv4 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxgY + - issue_id: I_kwDOEVxG285t1NwT + item_id: PVTI_lADOAwlwhM4AT39uzgIcxgs + - issue_id: I_kwDOEVxG285t1Nwz + item_id: PVTI_lADOAwlwhM4AT39uzgIcxg8 + - issue_id: I_kwDOEVxG285t1Nxa + item_id: PVTI_lADOAwlwhM4AT39uzgIcxhI + - issue_id: I_kwDOEVxG285t1Nx_ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxhc + - issue_id: I_kwDOEVxG285t1OJZ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxho + - issue_id: I_kwDOEVxG285t1OJ2 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxhw + - issue_id: I_kwDOEVxG285t1OKk + item_id: PVTI_lADOAwlwhM4AT39uzgIcxh8 + - issue_id: I_kwDOEVxG285t1OLP + item_id: PVTI_lADOAwlwhM4AT39uzgIcxiA + - issue_id: I_kwDOEVxG285t1OL0 + item_id: PVTI_lADOAwlwhM4AT39uzgIcxiQ + - issue_id: I_kwDOEVxG285t1OMM + item_id: PVTI_lADOAwlwhM4AT39uzgIcxiY + - issue_id: I_kwDOEVxG285t1OMp + item_id: PVTI_lADOAwlwhM4AT39uzgIcxik + - issue_id: I_kwDOEVxG285t1ONO + item_id: PVTI_lADOAwlwhM4AT39uzgIcxiw + - issue_id: I_kwDOEVxG285t1ONv + item_id: PVTI_lADOAwlwhM4AT39uzgIcxi8 + - issue_id: I_kwDOEVxG285t1OON + item_id: PVTI_lADOAwlwhM4AT39uzgIcxjI + - issue_id: I_kwDOEVxG285t1OOj + item_id: PVTI_lADOAwlwhM4AT39uzgIcxjU + - issue_id: I_kwDOEVxG285t1OO- + item_id: PVTI_lADOAwlwhM4AT39uzgIcxjk + - issue_id: I_kwDOEVxG285t1OPh + item_id: PVTI_lADOAwlwhM4AT39uzgIcxjs + - issue_id: I_kwDOEVxG285t1OQA + item_id: PVTI_lADOAwlwhM4AT39uzgIcxjw + - issue_id: I_kwDOEVxG285t1OQX + item_id: PVTI_lADOAwlwhM4AT39uzgIcxj8 + - issue_id: I_kwDOEVxG285t1ORG + item_id: PVTI_lADOAwlwhM4AT39uzgIcxkE + - issue_id: I_kwDOEVxG285t1ORq + item_id: PVTI_lADOAwlwhM4AT39uzgIcxkQ + - issue_id: I_kwDOEVxG285t1OSG + item_id: PVTI_lADOAwlwhM4AT39uzgIcxkU + - issue_id: I_kwDOEVxG285t1OSt + item_id: PVTI_lADOAwlwhM4AT39uzgIcxkc + - issue_id: I_kwDOEVxG285t1OTP + item_id: PVTI_lADOAwlwhM4AT39uzgIcxkk + - issue_id: I_kwDOEVxG285t1OrG + item_id: PVTI_lADOAwlwhM4AT39uzgIcxk4 + - issue_id: I_kwDOEVxG285t1Orp + item_id: PVTI_lADOAwlwhM4AT39uzgIcxlI + - issue_id: I_kwDOEVxG285t1OsJ + item_id: PVTI_lADOAwlwhM4AT39uzgIcxlU + - issue_id: I_kwDOEVxG285t1Osj + item_id: PVTI_lADOAwlwhM4AT39uzgIcxlg + number: 9 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT39uzgMsiiI + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_JSystem +- id: PVT_kwDOAwlwhM4AT3-h + items: + - issue_id: I_kwDOEVxG285t1OtC + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxlo + - issue_id: I_kwDOEVxG285t1Otp + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxl8 + - issue_id: I_kwDOEVxG285t1Ot8 + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxmM + - issue_id: I_kwDOEVxG285t1OuU + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxmU + - issue_id: I_kwDOEVxG285t1Ouv + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxmg + - issue_id: I_kwDOEVxG285t1Ova + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxmk + - issue_id: I_kwDOEVxG285t1Ovv + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxms + - issue_id: I_kwDOEVxG285t1OwS + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxm0 + - issue_id: I_kwDOEVxG285t1Owm + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxnI + - issue_id: I_kwDOEVxG285t1Oxk + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxnM + - issue_id: I_kwDOEVxG285t1OyG + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxnY + - issue_id: I_kwDOEVxG285t1Oyn + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxnk + - issue_id: I_kwDOEVxG285t1OzA + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxn0 + - issue_id: I_kwDOEVxG285t1Ozd + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxn8 + - issue_id: I_kwDOEVxG285t1Oz2 + item_id: PVTI_lADOAwlwhM4AT3-hzgIcxoA + number: 10 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT3-hzgMsjCo + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_m_Do +- id: PVT_kwDOAwlwhM4AT3-p + items: + - issue_id: I_kwDOEVxG285t1O0V + item_id: PVTI_lADOAwlwhM4AT3-pzgIcxoo + - issue_id: I_kwDOEVxG285t1PLQ + item_id: PVTI_lADOAwlwhM4AT3-pzgIcxo0 + - issue_id: I_kwDOEVxG285t1PL5 + item_id: PVTI_lADOAwlwhM4AT3-pzgIcxpY + - issue_id: I_kwDOEVxG285t1PMd + item_id: PVTI_lADOAwlwhM4AT3-pzgIcxpo + - issue_id: I_kwDOEVxG285t1PMy + item_id: PVTI_lADOAwlwhM4AT3-pzgIcxpw + - issue_id: I_kwDOEVxG285t1PNO + item_id: PVTI_lADOAwlwhM4AT3-pzgIcxp8 + - issue_id: I_kwDOEVxG285t1PNt + item_id: PVTI_lADOAwlwhM4AT3-pzgIcxqE + number: 11 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT3-pzgMsjHo + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_Misc +- id: PVT_kwDOAwlwhM4AT3-s + items: + - issue_id: I_kwDOEVxG285t1POO + item_id: PVTI_lADOAwlwhM4AT3-szgIcxqc + - issue_id: I_kwDOEVxG285t1POn + item_id: PVTI_lADOAwlwhM4AT3-szgIcxqg + - issue_id: I_kwDOEVxG285t1PPE + item_id: PVTI_lADOAwlwhM4AT3-szgIcxqo + - issue_id: I_kwDOEVxG285t1PPZ + item_id: PVTI_lADOAwlwhM4AT3-szgIcxqw + - issue_id: I_kwDOEVxG285t1PP1 + item_id: PVTI_lADOAwlwhM4AT3-szgIcxrA + - issue_id: I_kwDOEVxG285t1aaE + item_id: PVTI_lADOAwlwhM4AT3-szgIcxrM + - issue_id: I_kwDOEVxG285t1aap + item_id: PVTI_lADOAwlwhM4AT3-szgIcxrY + - issue_id: I_kwDOEVxG285t1abJ + item_id: PVTI_lADOAwlwhM4AT3-szgIcxrs + - issue_id: I_kwDOEVxG285t1abr + item_id: PVTI_lADOAwlwhM4AT3-szgIcxr4 + - issue_id: I_kwDOEVxG285t1acL + item_id: PVTI_lADOAwlwhM4AT3-szgIcxsI + - issue_id: I_kwDOEVxG285t1acm + item_id: PVTI_lADOAwlwhM4AT3-szgIcxsY + - issue_id: I_kwDOEVxG285t1adS + item_id: PVTI_lADOAwlwhM4AT3-szgIcxss + - issue_id: I_kwDOEVxG285t1adt + item_id: PVTI_lADOAwlwhM4AT3-szgIcxs4 + - issue_id: I_kwDOEVxG285t1aeP + item_id: PVTI_lADOAwlwhM4AT3-szgIcxtE + - issue_id: I_kwDOEVxG285t1aev + item_id: PVTI_lADOAwlwhM4AT3-szgIcxtQ + - issue_id: I_kwDOEVxG285t1afS + item_id: PVTI_lADOAwlwhM4AT3-szgIcxtg + - issue_id: I_kwDOEVxG285t1afy + item_id: PVTI_lADOAwlwhM4AT3-szgIcxtk + - issue_id: I_kwDOEVxG285t1agT + item_id: PVTI_lADOAwlwhM4AT3-szgIcxt0 + - issue_id: I_kwDOEVxG285t1agp + item_id: PVTI_lADOAwlwhM4AT3-szgIcxuE + - issue_id: I_kwDOEVxG285t1ahQ + item_id: PVTI_lADOAwlwhM4AT3-szgIcxuQ + - issue_id: I_kwDOEVxG285t1aht + item_id: PVTI_lADOAwlwhM4AT3-szgIcxug + - issue_id: I_kwDOEVxG285t1aiS + item_id: PVTI_lADOAwlwhM4AT3-szgIcxuo + - issue_id: I_kwDOEVxG285t1aiw + item_id: PVTI_lADOAwlwhM4AT3-szgIcxu0 + - issue_id: I_kwDOEVxG285t1ajQ + item_id: PVTI_lADOAwlwhM4AT3-szgIcxvI + - issue_id: I_kwDOEVxG285t1a7X + item_id: PVTI_lADOAwlwhM4AT3-szgIcxvM + - issue_id: I_kwDOEVxG285t1a72 + item_id: PVTI_lADOAwlwhM4AT3-szgIcxvU + - issue_id: I_kwDOEVxG285t1a8f + item_id: PVTI_lADOAwlwhM4AT3-szgIcxvg + - issue_id: I_kwDOEVxG285t1a84 + item_id: PVTI_lADOAwlwhM4AT3-szgIcxvo + - issue_id: I_kwDOEVxG285t1a9S + item_id: PVTI_lADOAwlwhM4AT3-szgIcxv0 + - issue_id: I_kwDOEVxG285t1a9p + item_id: PVTI_lADOAwlwhM4AT3-szgIcxv8 + - issue_id: I_kwDOEVxG285t1a-G + item_id: PVTI_lADOAwlwhM4AT3-szgIcxwE + - issue_id: I_kwDOEVxG285t1a-x + item_id: PVTI_lADOAwlwhM4AT3-szgIcxwc + - issue_id: I_kwDOEVxG285t1a_i + item_id: PVTI_lADOAwlwhM4AT3-szgIcxwo + - issue_id: I_kwDOEVxG285t1bAS + item_id: PVTI_lADOAwlwhM4AT3-szgIcxww + - issue_id: I_kwDOEVxG285t1bAu + item_id: PVTI_lADOAwlwhM4AT3-szgIcxxA + - issue_id: I_kwDOEVxG285t1bBT + item_id: PVTI_lADOAwlwhM4AT3-szgIcxxM + - issue_id: I_kwDOEVxG285t1bBs + item_id: PVTI_lADOAwlwhM4AT3-szgIcxxY + - issue_id: I_kwDOEVxG285t1bCM + item_id: PVTI_lADOAwlwhM4AT3-szgIcxxg + - issue_id: I_kwDOEVxG285t1bCn + item_id: PVTI_lADOAwlwhM4AT3-szgIcxxo + - issue_id: I_kwDOEVxG285t1bC- + item_id: PVTI_lADOAwlwhM4AT3-szgIcxxs + - issue_id: I_kwDOEVxG285t1bDZ + item_id: PVTI_lADOAwlwhM4AT3-szgIcxxw + - issue_id: I_kwDOEVxG285t1bDx + item_id: PVTI_lADOAwlwhM4AT3-szgIcxx4 + - issue_id: I_kwDOEVxG285t1bES + item_id: PVTI_lADOAwlwhM4AT3-szgIcxx8 + - issue_id: I_kwDOEVxG285t1bE- + item_id: PVTI_lADOAwlwhM4AT3-szgIcxyM + - issue_id: I_kwDOEVxG285t1bfB + item_id: PVTI_lADOAwlwhM4AT3-szgIcxyQ + - issue_id: I_kwDOEVxG285t1bfo + item_id: PVTI_lADOAwlwhM4AT3-szgIcxyg + - issue_id: I_kwDOEVxG285t1bgO + item_id: PVTI_lADOAwlwhM4AT3-szgIcxyk + - issue_id: I_kwDOEVxG285t1bgu + item_id: PVTI_lADOAwlwhM4AT3-szgIcxyo + - issue_id: I_kwDOEVxG285t1bhV + item_id: PVTI_lADOAwlwhM4AT3-szgIcxy8 + - issue_id: I_kwDOEVxG285t1bh4 + item_id: PVTI_lADOAwlwhM4AT3-szgIcxzI + - issue_id: I_kwDOEVxG285t1bia + item_id: PVTI_lADOAwlwhM4AT3-szgIcxzM + - issue_id: I_kwDOEVxG285t1bi3 + item_id: PVTI_lADOAwlwhM4AT3-szgIcxzY + - issue_id: I_kwDOEVxG285t1bjX + item_id: PVTI_lADOAwlwhM4AT3-szgIcxzg + - issue_id: I_kwDOEVxG285t1bj0 + item_id: PVTI_lADOAwlwhM4AT3-szgIcxzk + - issue_id: I_kwDOEVxG285t1bkO + item_id: PVTI_lADOAwlwhM4AT3-szgIcxz0 + - issue_id: I_kwDOEVxG285t1bkr + item_id: PVTI_lADOAwlwhM4AT3-szgIcxz8 + number: 12 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT3-szgMsjJg + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_MSL_C +- id: PVT_kwDOAwlwhM4AT3-6 + items: + - issue_id: I_kwDOEVxG285t1blO + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx0U + - issue_id: I_kwDOEVxG285t1blz + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx0Y + - issue_id: I_kwDOEVxG285t1bmG + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx0c + - issue_id: I_kwDOEVxG285t1bmk + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx0g + - issue_id: I_kwDOEVxG285t1bnp + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx0k + - issue_id: I_kwDOEVxG285t1boK + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx1E + - issue_id: I_kwDOEVxG285t1bo3 + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx1c + - issue_id: I_kwDOEVxG285t1bpg + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx1o + - issue_id: I_kwDOEVxG285t1cHE + item_id: PVTI_lADOAwlwhM4AT3-6zgIcx10 + number: 13 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT3-6zgMsjSc + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_Runtime.PPCEABI.H +- id: PVT_kwDOAwlwhM4AT3-7 + items: + - issue_id: I_kwDOEVxG285t1cHi + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx18 + - issue_id: I_kwDOEVxG285t1cH9 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx2A + - issue_id: I_kwDOEVxG285t1cJN + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx2E + - issue_id: I_kwDOEVxG285t1cJ6 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx2I + - issue_id: I_kwDOEVxG285t1cKm + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx2Q + - issue_id: I_kwDOEVxG285t1cLU + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx2Y + - issue_id: I_kwDOEVxG285t1cL7 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx2k + - issue_id: I_kwDOEVxG285t1cMV + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx20 + - issue_id: I_kwDOEVxG285t1cMv + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx24 + - issue_id: I_kwDOEVxG285t1cNM + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx3I + - issue_id: I_kwDOEVxG285t1cNu + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx3M + - issue_id: I_kwDOEVxG285t1cOD + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx3Q + - issue_id: I_kwDOEVxG285t1cOj + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx3Y + - issue_id: I_kwDOEVxG285t1cPK + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx3k + - issue_id: I_kwDOEVxG285t1cP8 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx34 + - issue_id: I_kwDOEVxG285t1cQn + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx4A + - issue_id: I_kwDOEVxG285t1cRH + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx4U + - issue_id: I_kwDOEVxG285t1cRi + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx4Y + - issue_id: I_kwDOEVxG285t1cR8 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx4c + - issue_id: I_kwDOEVxG285t1cqc + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx4k + - issue_id: I_kwDOEVxG285t1cqz + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx4s + - issue_id: I_kwDOEVxG285t1crO + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx44 + - issue_id: I_kwDOEVxG285t1crw + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx48 + - issue_id: I_kwDOEVxG285t1csQ + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx5A + - issue_id: I_kwDOEVxG285t1cs6 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx5I + - issue_id: I_kwDOEVxG285t1ctT + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx5Y + - issue_id: I_kwDOEVxG285t1ctv + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx5g + - issue_id: I_kwDOEVxG285t1cuC + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx5o + - issue_id: I_kwDOEVxG285t1cuj + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx5w + - issue_id: I_kwDOEVxG285t1cu2 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx6E + - issue_id: I_kwDOEVxG285t1cvW + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx6Y + - issue_id: I_kwDOEVxG285t1cvu + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx6k + - issue_id: I_kwDOEVxG285t1cwM + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx6w + - issue_id: I_kwDOEVxG285t1cwo + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx60 + - issue_id: I_kwDOEVxG285t1cw- + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx64 + - issue_id: I_kwDOEVxG285t1cxd + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx68 + - issue_id: I_kwDOEVxG285t1cx8 + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx7I + - issue_id: I_kwDOEVxG285t1cyZ + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx7U + - issue_id: I_kwDOEVxG285t1cys + item_id: PVTI_lADOAwlwhM4AT3-7zgIcx7c + number: 14 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT3-7zgMsjTM + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_SSystem +- id: PVT_kwDOAwlwhM4AT3_D + items: + - issue_id: I_kwDOEVxG285t1dLn + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx7w + - issue_id: I_kwDOEVxG285t1dMJ + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx70 + - issue_id: I_kwDOEVxG285t1dMp + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx78 + - issue_id: I_kwDOEVxG285t1dNC + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx8I + - issue_id: I_kwDOEVxG285t1dNi + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx8c + - issue_id: I_kwDOEVxG285t1dN8 + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx84 + - issue_id: I_kwDOEVxG285t1dOZ + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx9g + - issue_id: I_kwDOEVxG285t1dOy + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx-I + - issue_id: I_kwDOEVxG285t1dPT + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx-M + - issue_id: I_kwDOEVxG285t1dP0 + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx-U + - issue_id: I_kwDOEVxG285t1dQW + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx-k + - issue_id: I_kwDOEVxG285t1dQ3 + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx-s + - issue_id: I_kwDOEVxG285t1dRe + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx-4 + - issue_id: I_kwDOEVxG285t1dR8 + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_E + - issue_id: I_kwDOEVxG285t1dSm + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_I + - issue_id: I_kwDOEVxG285t1dTM + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_M + - issue_id: I_kwDOEVxG285t1dUG + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_Y + - issue_id: I_kwDOEVxG285t1dUq + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_c + - issue_id: I_kwDOEVxG285t1dVL + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_o + - issue_id: I_kwDOEVxG285t1dVx + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_0 + - issue_id: I_kwDOEVxG285t1dv3 + item_id: PVTI_lADOAwlwhM4AT3_DzgIcx_8 + number: 15 + status_field: !Field + id: PVTSSF_lADOAwlwhM4AT3_DzgMsjYU + name: Status + options: + - !Option + id: f75ad846 + name: Todo + - !Option + id: 47fc9ee4 + name: In Progress + - !Option + id: '98236657' + name: Done + title: tp_Z2AudioLib diff --git a/tools/projects.yml b/tools/projects.yml new file mode 100644 index 00000000000..94c13571cfe --- /dev/null +++ b/tools/projects.yml @@ -0,0 +1,243 @@ +# This file controls what projects, issues and labels will be created in Github +# +# +# +# title - Title of the project. Titles are also used as labels on issues +# views - Not supported yet (thanks github) +# dirs - Includes any TUs inside the listed dirs, recursively +# not_dirs - Excludes specific dirs from the dirs selection +# files - Includes any TUs manually specified +# not_files - Excludes any TUs manually specified +# sub_labels - Additional labels used for sub categorization on large projects +# so that views can be built later, and also so identically named TUs can +# be distinguished + +- project: + title: tp_TRK_MINNOW_DOLPHIN + dirs: + - path: libs/TRK_MINNOW_DOLPHIN/GCN/EXI2_DDH_GCN + sub_labels: ["TRK_MINNOW_DOLPHIN/EXI2_DDH_GCN"] + - path: libs/TRK_MINNOW_DOLPHIN/GCN/EXI2_GDEV_GCN + sub_labels: ["TRK_MINNOW_DOLPHIN/EXI2_GDEV_GCN"] + - path: libs/TRK_MINNOW_DOLPHIN/MetroTRK + sub_labels: ["TRK_MINNOW_DOLPHIN/MetroTRK"] + - path: libs/TRK_MINNOW_DOLPHIN/ppc + sub_labels: ["TRK_MINNOW_DOLPHIN/ppc"] + - path: libs/TRK_MINNOW_DOLPHIN/Os + sub_labels: ["TRK_MINNOW_DOLPHIN/dolphin"] + - path: libs/TRK_MINNOW_DOLPHIN/utils + sub_labels: ["TRK_MINNOW_DOLPHIN/utils"] + +- project: + title: tp_Actors + dirs: + - path: rel/d/a/d_a_alldie + - path: rel/d/a/d_a_andsw + - path: rel/d/a/d_a_andsw2 + - path: rel/d/a/d_a_arrow + - path: rel/d/a/d_a_balloon_2D + - path: rel/d/a/d_a_bd + - path: rel/d/a/d_a_bg + - path: rel/d/a/d_a_bg_obj + - path: rel/d/a/d_a_boomerang + - path: rel/d/a/d_a_bullet + - path: rel/d/a/d_a_canoe + - path: rel/d/a/d_a_coach_2D + - path: rel/d/a/d_a_coach_fire + - path: rel/d/a/d_a_cow + - path: rel/d/a/d_a_crod + - path: rel/d/a/d_a_cstaF + - path: rel/d/a/d_a_cstatue + - path: rel/d/a/d_a_demo00 + - path: rel/d/a/d_a_demo_item + - path: rel/d/a/d_a_disappear + - path: rel/d/a/d_a_dmidna + - path: rel/d/a/d_a_do + - path: rel/d/a/d_a_dshutter + - path: rel/d/a/d_a_econt + - path: rel/d/a/d_a_ep + - path: rel/d/a/d_a_formation_mng + - path: rel/d/a/d_a_fr + - path: rel/d/a/d_a_grass + - path: rel/d/a/d_a_guard_mng + - path: rel/d/a/d_a_hitobj + - path: rel/d/a/d_a_horse + - path: rel/d/a/d_a_hozelda + - path: rel/d/a/d_a_izumi_gate + - path: rel/d/a/d_a_kago + - path: rel/d/a/d_a_L7demo_dr + - path: rel/d/a/d_a_L7low_dr + - path: rel/d/a/d_a_L7op_demo_dr + - path: rel/d/a/d_a_mant + - path: rel/d/a/d_a_mg_fish + - path: rel/d/a/d_a_mg_fshop + - path: rel/d/a/d_a_mg_rod + - path: rel/d/a/d_a_midna + - path: rel/d/a/d_a_mirror + - path: rel/d/a/d_a_movie_player + - path: rel/d/a/d_a_myna + - path: rel/d/a/d_a_nbomb + - path: rel/d/a/d_a_ni + - path: rel/d/a/d_a_passer_mng + - path: rel/d/a/d_a_path_line + - path: rel/d/a/d_a_peru + - path: rel/d/a/d_a_ppolamp + - path: rel/d/a/d_a_scene_exit + - path: rel/d/a/d_a_scene_exit2 + - path: rel/d/a/d_a_set_bgobj + - path: rel/d/a/d_a_shop_item + - path: rel/d/a/d_a_skip_2D + - path: rel/d/a/d_a_spinner + - path: rel/d/a/d_a_sq + - path: rel/d/a/d_a_startAndGoal + - path: rel/d/a/d_a_suspend + - path: rel/d/a/d_a_swBall + - path: rel/d/a/d_a_swc00 + - path: rel/d/a/d_a_swhit0 + - path: rel/d/a/d_a_swLBall + - path: rel/d/a/d_a_swTime + - path: rel/d/a/d_a_talk + - path: rel/d/a/d_a_tbox + - path: rel/d/a/d_a_tbox2 + - path: rel/d/a/d_a_tboxSw + - path: rel/d/a/d_a_title + - path: rel/d/a/d_a_vrbox + - path: rel/d/a/d_a_vrbox2 + - path: rel/d/a/d_a_warp_bug + - path: rel/d/a/d_a_ykgr + - path: rel/d/a/door + sub_labels: ["Actors/Door"] + - path: rel/d/a/e + sub_labels: ["Actors/Enemy"] + - path: rel/d/a/b + sub_labels: ["Actors/Boss"] + - path: rel/d/a/kytag + sub_labels: ["Actors/Kytag"] + - path: rel/d/a/npc + sub_labels: ["Actors/NPC"] + - path: rel/d/a/obj + sub_labels: ["Actors/Object"] + - path: rel/d/a/tag + sub_labels: ["Actors/Tag"] + files: + - path: src/d/a/d_a_alink.cpp + - path: src/d/a/d_a_horse_static.cpp + - path: src/d/a/d_a_item_static.cpp + - path: src/d/a/d_a_itembase.cpp + - path: src/d/a/d_a_itembase_static.cpp + - path: src/d/a/d_a_player.cpp + - path: src/d/a/d_a_no_chg_room.cpp + - path: src/d/a/d_a_shop_item_static.cpp + - path: src/d/a/d_a_npc.cpp + sub_labels: ["Actors/NPC"] + - path: src/d/a/d_a_npc_cd.cpp + sub_labels: ["Actors/NPC"] + - path: src/d/a/d_a_npc_cd2.cpp + sub_labels: ["Actors/NPC"] + - path: src/d/a/d_a_obj.cpp + sub_labels: ["Actors/Object"] + - path: src/d/a/d_a_obj_item.cpp + sub_labels: ["Actors/Object"] + - path: src/d/a/d_a_obj_ss_base.cpp + sub_labels: ["Actors/Object"] + +- project: + title: tp_dolphin + dirs: + - path: libs/dolphin + +- project: + title: tp_dolzel + dirs: + - path: src/d + - path: src/msg + notDirs: + - path: src/d/a + files: + - path: src/c/c_damagereaction.cpp + +- project: + title: tp_Framework + dirs: + - path: src/f_ap + - path: src/f_op + - path: src/f_pc + +- project: + title: tp_JSystem + dirs: + - path: libs/JSystem/J2DGraph + sub_labels: ["JSystem/J2DGraph"] + - path: libs/JSystem/J3DGraphAnimator + sub_labels: ["JSystem/J3DGraphAnimator"] + - path: libs/JSystem/J3DGraphBase + sub_labels: ["JSystem/J3DGraphBase"] + - path: libs/JSystem/J3DGraphLoader + sub_labels: ["JSystem/J3DGraphLoader"] + - path: libs/JSystem/J3DU + sub_labels: ["JSystem/J3DU"] + - path: libs/JSystem/JAudio2 + sub_labels: ["JSystem/JAudio2"] + - path: libs/JSystem/JFramework + sub_labels: ["JSystem/JFramework"] + - path: libs/JSystem/JGadget + sub_labels: ["JSystem/JGadget"] + - path: libs/JSystem/JKernel + sub_labels: ["JSystem/JKernel"] + - path: libs/JSystem/JMath + sub_labels: ["JSystem/JMath"] + - path: libs/JSystem/JMessage + sub_labels: ["JSystem/JMessage"] + - path: libs/JSystem/JParticle + sub_labels: ["JSystem/JParticle"] + - path: libs/JSystem/JStage + sub_labels: ["JSystem/JStage"] + - path: libs/JSystem/JStudio/JStudio_JAudio2 + sub_labels: ["JSystem/JStudio_JAudio2"] + - path: libs/JSystem/JStudio/JStudio_JStage + sub_labels: ["JSystem/JStudio_JStage"] + - path: libs/JSystem/JStudio/JStudio_JParticle + sub_labels: ["JSystem/JStudio_JParticle"] + - path: libs/JSystem/JStudio/JStudio + sub_labels: ["JSystem/JStudio"] + - path: libs/JSystem/JSupport + sub_labels: ["JSystem/JSupport"] + - path: libs/JSystem/JUtility + sub_labels: ["JSystem/JUtility"] + +- project: + title: tp_m_Do + dirs: + - path: src/m_Do + +- project: + title: tp_Misc + dirs: + - path: libs/odenotstub + - path: libs/odemuexi2 + - path: libs/amcstubs + files: + - path: src/init.c + - path: src/__start.c + - path: src/DynamicLink.cpp + - path: src/c/c_dylink.cpp + +- project: + title: tp_MSL_C + dirs: + - path: libs/MSL_C + +- project: + title: tp_Runtime.PPCEABI.H + dirs: + - path: libs/Runtime.PPCEABI.H + +- project: + title: tp_SSystem + dirs: + - path: libs/SSystem + +- project: + title: tp_Z2AudioLib + dirs: + - path: libs/Z2AudioLib \ No newline at end of file diff --git a/tools/requirements.txt b/tools/requirements.txt index 275d38be3b6..d2717753943 100644 --- a/tools/requirements.txt +++ b/tools/requirements.txt @@ -9,4 +9,5 @@ python-Levenshtein cxxfilt pyelftools requests -GitPython \ No newline at end of file +GitPython +clang \ No newline at end of file diff --git a/tools/tp.py b/tools/tp.py index f0fd6e6914d..c51427ab157 100644 --- a/tools/tp.py +++ b/tools/tp.py @@ -35,10 +35,9 @@ def _handle_import_error(ex: ImportError): try: import click import libdol - import libarc + import libgithub import requests import glob - import git from rich.logging import RichHandler from rich.console import Console @@ -738,7 +737,6 @@ def calculate_progress(build_path: Path, matching: bool, format: str, print_rels LOG.error("unknown format: '{format}'") - def find_function_range(asm: Path) -> Tuple[int, int]: with asm.open("r", encoding="utf-8") as file: lines = file.readlines() @@ -1030,7 +1028,6 @@ def find_includes(lines: List[str], non_matching: bool, ext: str = ".s") -> Set[ def find_used_asm_files(non_matching: bool, use_progress_bar: bool = True) -> Set[Path]: - cpp_files = find_all_files() includes = set() @@ -1200,6 +1197,250 @@ def check_sha1(game_path: Path, build_path: Path, include_rels: bool): return True +# +# Github Command Helpers +# + +import functools + +def common_github_options(func): + @click.option("--debug/--no-debug") + @click.option( + "--personal-access-token", + help="Github Personal Access Token for authorizing API calls.", + required=False, + default=os.environ.get('GITHUB_TOKEN') + ) + @click.option( + "--owner", + help="Github repo owner", + required=False, + default="zeldaret" + ) + @click.option( + "--repo", + help="Github repository name", + required=False, + default="tp" + ) + @functools.wraps(func) + def wrapper(*args, **kwargs): + return func(*args, **kwargs) + return wrapper + +def prereqs(owner: str, repo: str, personal_access_token: str): + # Setup GraphQL client singleton + libgithub.GraphQLClient.setup(personal_access_token) + + # Setup RepoInfo classvars + libgithub.RepoInfo.owner = libgithub.OwnerInfo() + libgithub.RepoInfo.owner.name = owner + libgithub.RepoInfo.name = repo + libgithub.RepoInfo.set_ids() + + # Load in the project state + libgithub.StateFile.load("tools/pjstate.yml") + +def load_from_yaml(type: str) -> any: + with open("./tools/projects.yml", 'r') as stream: + try: + import yaml + + projects_data = yaml.safe_load(stream) + LOG.debug(f"Loaded projects.yml data: {projects_data}") + + match type: + case "labels": + ret_data = libgithub.Label.get_all_from_yaml(projects_data) + case "issues": + ret_data = libgithub.Issue.get_all_from_yaml(projects_data) + case "projects": + ret_data = libgithub.Project.get_all_from_yaml(projects_data) + case _: + LOG.error(f"Invalid type: {type}") + sys.exit(1) + + return ret_data + except ImportError: + LOG.error("Can't import yaml, exiting.") + sys.exit(1) + except yaml.YAMLError as error: + LOG.error(f"Error loading YAML: {error}") + sys.exit(1) + +# +# Github Sync Commands +# + +@tp.command(name="github-sync-labels", help="Creates all labels based on tools/projects.yml") +@common_github_options +def github_sync_labels(debug: bool, personal_access_token: str, owner: str, repo: str): + if debug: + LOG.setLevel(logging.DEBUG) + + prereqs(owner, repo, personal_access_token) + yaml_labels = load_from_yaml("labels") + + LOG.info("Syncing up labels") + for label in yaml_labels: + label.check_and_create() + +@tp.command(name="github-sync-issues", help="Creates all issues and labels based on tools/projects.yml") +@common_github_options +def github_sync_issues(debug: bool, personal_access_token: str, owner: str, repo: str): + if debug: + LOG.setLevel(logging.DEBUG) + + prereqs(owner,repo,personal_access_token) + yaml_issues = load_from_yaml("issues") + + LOG.info("Syncing up issues") + for issue in yaml_issues: + issue.check_and_create() + +@tp.command(name="github-sync-projects", help="Creates all projects, issues and labels based on tools/projects.yml") +@common_github_options +def github_sync_projects(debug: bool, personal_access_token: str, owner: str, repo: str): + if debug: + LOG.setLevel(logging.DEBUG) + + prereqs(owner, repo, personal_access_token) + yaml_projects = load_from_yaml("projects") + + LOG.info("Syncing up projects") + for project in yaml_projects: + project.check_and_create() + +@tp.command(name="github-check-update-status", help="Checks all issues and updates their status based on their local file path.") +@common_github_options +@click.option( + '--filename','filenames', + multiple=True, + type=click.Path(exists=True) +) +@click.option( + '--all', + help="Check all items in every project and update their status.", + is_flag=True, + default=False +) +@click.option( + '--clang-lib-path', + help="Path to libclang.so", + default="/usr/lib/x86_64-linux-gnu/libclang-16.so" +) +def github_check_update_status(debug: bool, personal_access_token: str, owner: str, repo: str, filenames: Tuple[click.Path], all: bool, clang_lib_path: str): + if debug: + LOG.setLevel("DEBUG") + + prereqs(owner, repo, personal_access_token) + + issues = libgithub.StateFile.data.get('issues') + projects = libgithub.StateFile.data.get('projects') + + filenames_list = list(filenames) + + # If all flag is set, check all issue file paths in state file + if all: + for issue in issues: + filenames_list.append(issue["file_path"]) + + import classify_tu, clang + + # Set the clang library file + clang.cindex.Config.set_library_file(clang_lib_path) + + for filename in filenames_list: + LOG.info(f"Classifying TU {filename}") + status = classify_tu.run(filename) + + LOG.debug(f"Classification result: {status}") + if status == "error": + LOG.error(f"Error classifying TU {filename}") + sys.exit(1) + + # Find the matching issue_id for the filename + issue_id = None + for issue in issues: + if issue["file_path"] == filename: + issue_id = issue["id"] + break + + if issue_id is None: + LOG.error(f"Couldn't find issue_id for {filename}. Run github-sync-issues first.") + sys.exit(1) + + # Find the matching project_id, item_id and status_field for the issue_id + project_id = None + for project in projects: + for item in project["items"]: + if item["issue_id"] == issue_id: + project_id = project["id"] + item_id = item["item_id"] + status_field = project["status_field"] + break + + if project_id is None: + LOG.error(f"Couldn't find project_id associated with {filename}. Run github-sync-projects first.") + sys.exit(1) + + libgithub.Project(id=project_id,status_field=status_field).set_status_for_item(item_id, status) + if status == "done": + libgithub.Issue(id=issue_id).set_closed() + +# +# Github Clean Commands +# + +@tp.command(name="github-clean-labels", help="Delete all labels for a given owner/repository.") +@common_github_options +def github_clean_labels(debug: bool, personal_access_token: str, owner: str, repo: str) -> None: + if debug: + LOG.setLevel("DEBUG") + + LOG.warning(f"This command will completely delete all labels for {owner}/{repo}. Are you sure you want to do this? (y/n)") + confirmation = input().lower() + + if confirmation == 'y': + prereqs(owner,repo,personal_access_token) + libgithub.Label.delete_all() + else: + sys.exit(0) + +@tp.command(name="github-clean-issues", help="Delete all issues for a given owner/repository.") +@common_github_options +def github_clean_issues(debug: bool, personal_access_token: str, owner: str, repo: str): + if debug: + LOG.setLevel("DEBUG") + + LOG.warning(f"This command will completely delete all issues for {owner}/{repo}. Are you sure you want to do this? (y/n)") + confirmation = input().lower() + + if confirmation == 'y': + prereqs(owner,repo,personal_access_token) + libgithub.Issue.delete_all() + else: + sys.exit(0) + +@tp.command(name="github-clean-projects", help="Delete all projects for a given owner/repository.") +@common_github_options +def github_clean_projects(debug: bool, personal_access_token: str, owner: str, repo: str): + if debug: + LOG.setLevel("DEBUG") + + LOG.warning(f"This command will completely delete all projects for {owner}/{repo}. Are you sure you want to do this? (y/n)") + confirmation = input().lower() + + if confirmation == 'y': + prereqs(owner,repo,personal_access_token) + libgithub.Project.delete_all() + else: + sys.exit(0) + +# +# Progress Command Helpers +# + def copy_progress_script() -> None: file_path = './tools/tp.py' destination_path = './tools/tp_copy.py' @@ -1254,8 +1495,14 @@ def generate_progress(commit: str, wibo_path: Optional[str] = None) -> None: LOG.debug(f"stdout: {stdout.decode()}") def checkout_and_run(repo_path: str, start_commit_hash: str, wibo_path: Optional[str] = None) -> None: - repo = git.Repo(repo_path) - head_commit = repo.head.commit + try: + import git + + repo = git.Repo(repo_path) + head_commit = repo.head.commit + except ImportError: + LOG.error("Can't import git, exiting.") + sys.exit(1) copy_progress_script() make_progress_dir() @@ -1274,6 +1521,10 @@ def checkout_and_run(repo_path: str, start_commit_hash: str, wibo_path: Optional LOG.debug(f"Checking out origin head commit: {head_commit.hexsha}") repo.git.checkout(head_commit.hexsha) +# +# Progress Commands +# + @tp.command(name="progress-history") @click.option("--debug/--no-debug", default=False) @click.option("--repo-path", default=".", required=False, help="Path to your git repository. Defaults to current directory.")