initial upload
This commit is contained in:
BIN
.makemd/fileCache.mdc
Normal file
BIN
.makemd/fileCache.mdc
Normal file
Binary file not shown.
BIN
.makemd/superstate.mdc
Normal file
BIN
.makemd/superstate.mdc
Normal file
Binary file not shown.
1
.obsidian/app.json
vendored
Normal file
1
.obsidian/app.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{}
|
||||
1
.obsidian/appearance.json
vendored
Normal file
1
.obsidian/appearance.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{}
|
||||
16
.obsidian/community-plugins.json
vendored
Normal file
16
.obsidian/community-plugins.json
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
[
|
||||
"dataview",
|
||||
"obsidian-git",
|
||||
"table-editor-obsidian",
|
||||
"obsidian-icon-folder",
|
||||
"obsidian-admonition",
|
||||
"make-md",
|
||||
"obsidian-outliner",
|
||||
"obsidian-annotator",
|
||||
"obsidian-relative-line-numbers",
|
||||
"table-extended",
|
||||
"sheets",
|
||||
"update-time-on-edit",
|
||||
"update-relative-links",
|
||||
"obsidian-table-generator"
|
||||
]
|
||||
30
.obsidian/core-plugins-migration.json
vendored
Normal file
30
.obsidian/core-plugins-migration.json
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": true,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"properties": false,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
"slash-command": false,
|
||||
"editor-status": true,
|
||||
"bookmarks": true,
|
||||
"markdown-importer": false,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": true,
|
||||
"word-count": true,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": false
|
||||
}
|
||||
31
.obsidian/core-plugins.json
vendored
Normal file
31
.obsidian/core-plugins.json
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": true,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"properties": false,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
"slash-command": false,
|
||||
"editor-status": true,
|
||||
"bookmarks": true,
|
||||
"markdown-importer": false,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": true,
|
||||
"word-count": true,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": false,
|
||||
"webviewer": false
|
||||
}
|
||||
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.68",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
@ -0,0 +1,141 @@
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
||||
BIN
.obsidian/plugins/make-md/Spaces.mdb
vendored
Normal file
BIN
.obsidian/plugins/make-md/Spaces.mdb
vendored
Normal file
Binary file not shown.
93
.obsidian/plugins/make-md/data.json
vendored
Normal file
93
.obsidian/plugins/make-md/data.json
vendored
Normal file
@ -0,0 +1,93 @@
|
||||
{
|
||||
"newNotePlaceholder": "Untitled",
|
||||
"defaultInitialization": false,
|
||||
"navigatorEnabled": true,
|
||||
"filePreviewOnHover": false,
|
||||
"blinkEnabled": true,
|
||||
"datePickerTime": false,
|
||||
"imageThumbnails": false,
|
||||
"noteThumbnails": false,
|
||||
"spacesMDBInHidden": true,
|
||||
"cacheIndex": true,
|
||||
"spacesRightSplit": false,
|
||||
"contextEnabled": true,
|
||||
"spaceViewEnabled": true,
|
||||
"saveAllContextToFrontmatter": true,
|
||||
"autoOpenFileContext": false,
|
||||
"activeView": "/",
|
||||
"hideFrontmatter": true,
|
||||
"activeSpace": "",
|
||||
"defaultDateFormat": "MMM dd yyyy",
|
||||
"defaultTimeFormat": "h:mm a",
|
||||
"spacesEnabled": true,
|
||||
"syncFormulaToFrontmatter": true,
|
||||
"spacesPerformance": false,
|
||||
"currentWaypoint": 0,
|
||||
"enableFolderNote": true,
|
||||
"folderIndentationLines": true,
|
||||
"revealActiveFile": false,
|
||||
"spacesStickers": true,
|
||||
"spaceRowHeight": 29,
|
||||
"mobileSpaceRowHeight": 40,
|
||||
"bannerHeight": 200,
|
||||
"spacesDisablePatch": false,
|
||||
"folderNoteInsideFolder": true,
|
||||
"folderNoteName": "",
|
||||
"sidebarTabs": true,
|
||||
"showRibbon": true,
|
||||
"vaultSelector": true,
|
||||
"deleteFileOption": "trash",
|
||||
"expandedSpaces": [
|
||||
"/",
|
||||
"//Other",
|
||||
"//Tags",
|
||||
"//attachments",
|
||||
"//attachments/attachments/paint_damage"
|
||||
],
|
||||
"expandFolderOnClick": true,
|
||||
"spacesFolder": "Tags",
|
||||
"suppressedWarnings": [],
|
||||
"spaceSubFolder": ".space",
|
||||
"hiddenFiles": [],
|
||||
"hiddenExtensions": [
|
||||
".mdb",
|
||||
"_assets",
|
||||
"_blocks"
|
||||
],
|
||||
"inlineBacklinks": false,
|
||||
"inlineContext": true,
|
||||
"inlineBacklinksExpanded": false,
|
||||
"inlineContextExpanded": false,
|
||||
"inlineContextProperties": true,
|
||||
"inlineContextSectionsExpanded": true,
|
||||
"banners": true,
|
||||
"inlineContextNameLayout": "vertical",
|
||||
"spacesUseAlias": false,
|
||||
"fmKeyAlias": "aliases",
|
||||
"fmKeyBanner": "banner",
|
||||
"fmKeyColor": "color",
|
||||
"fmKeyBannerOffset": "banner_y",
|
||||
"fmKeySticker": "sticker",
|
||||
"openSpacesOnLaunch": true,
|
||||
"indexSVG": false,
|
||||
"readableLineWidth": true,
|
||||
"autoAddContextsToSubtags": true,
|
||||
"releaseNotesPrompt": 0.999,
|
||||
"enableDefaultSpaces": true,
|
||||
"showSpacePinIcon": true,
|
||||
"experimental": false,
|
||||
"systemName": "obsidian",
|
||||
"defaultSpaceTemplate": "",
|
||||
"selectedKit": "default",
|
||||
"actionMaxSteps": 100,
|
||||
"contextPagination": 25,
|
||||
"skipFolderNames": [],
|
||||
"skipFolders": [],
|
||||
"enhancedLogs": false,
|
||||
"basics": true,
|
||||
"basicsSettings": null,
|
||||
"firstLaunch": true,
|
||||
"notesPreview": false,
|
||||
"editStickerInSidebar": true,
|
||||
"overrideNativeMenu": false
|
||||
}
|
||||
1177
.obsidian/plugins/make-md/main.js
vendored
Normal file
1177
.obsidian/plugins/make-md/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/make-md/manifest.json
vendored
Normal file
10
.obsidian/plugins/make-md/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "make-md",
|
||||
"name": "make.md",
|
||||
"version": "1.1.7",
|
||||
"minAppVersion": "0.16.0",
|
||||
"description": "make.md gives you everything you need to organize and personalize your notes.",
|
||||
"author": "make.md",
|
||||
"authorUrl": "https://www.make.md",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
1
.obsidian/plugins/make-md/styles.css
vendored
Normal file
1
.obsidian/plugins/make-md/styles.css
vendored
Normal file
File diff suppressed because one or more lines are too long
24
.obsidian/plugins/obsidian-admonition/data.json
vendored
Normal file
24
.obsidian/plugins/obsidian-admonition/data.json
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"userAdmonitions": {},
|
||||
"syntaxHighlight": false,
|
||||
"copyButton": false,
|
||||
"version": "10.3.2",
|
||||
"autoCollapse": false,
|
||||
"defaultCollapseType": "open",
|
||||
"injectColor": true,
|
||||
"parseTitles": true,
|
||||
"dropShadow": true,
|
||||
"hideEmpty": false,
|
||||
"open": {
|
||||
"admonitions": true,
|
||||
"icons": true,
|
||||
"other": true,
|
||||
"advanced": false
|
||||
},
|
||||
"icons": [],
|
||||
"useFontAwesome": true,
|
||||
"rpgDownloadedOnce": false,
|
||||
"msDocConverted": false,
|
||||
"useSnippet": false,
|
||||
"snippetPath": "custom-admonitions.3a0c9e"
|
||||
}
|
||||
513
.obsidian/plugins/obsidian-admonition/main.js
vendored
Normal file
513
.obsidian/plugins/obsidian-admonition/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-admonition/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-admonition/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-admonition",
|
||||
"name": "Admonition",
|
||||
"version": "10.3.2",
|
||||
"minAppVersion": "1.1.0",
|
||||
"description": "Enhanced callouts for Obsidian.md",
|
||||
"author": "Jeremy Valentine",
|
||||
"authorUrl": "",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
1
.obsidian/plugins/obsidian-admonition/styles.css
vendored
Normal file
1
.obsidian/plugins/obsidian-admonition/styles.css
vendored
Normal file
File diff suppressed because one or more lines are too long
36360
.obsidian/plugins/obsidian-annotator/main.js
vendored
Normal file
36360
.obsidian/plugins/obsidian-annotator/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-annotator/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-annotator/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-annotator",
|
||||
"name": "Annotator",
|
||||
"version": "0.2.11",
|
||||
"minAppVersion": "1.0.3",
|
||||
"description": "This is a sample plugin for Obsidian. It allows you to open and annotate PDF and EPUB files.",
|
||||
"author": "Obsidian",
|
||||
"authorUrl": "https://obsidian.md/about",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
418
.obsidian/plugins/obsidian-git/main.js
vendored
Normal file
418
.obsidian/plugins/obsidian-git/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-git/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-git/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"author": "Vinzent",
|
||||
"authorUrl": "https://github.com/Vinzent03",
|
||||
"id": "obsidian-git",
|
||||
"name": "Git",
|
||||
"description": "Integrate Git version control with automatic backup and other advanced features.",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||
"version": "2.34.0"
|
||||
}
|
||||
23
.obsidian/plugins/obsidian-git/obsidian_askpass.sh
vendored
Executable file
23
.obsidian/plugins/obsidian-git/obsidian_askpass.sh
vendored
Executable file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
PROMPT="$1"
|
||||
TEMP_FILE="$OBSIDIAN_GIT_CREDENTIALS_INPUT"
|
||||
|
||||
cleanup() {
|
||||
rm -f "$TEMP_FILE" "$TEMP_FILE.response"
|
||||
}
|
||||
trap cleanup EXIT
|
||||
|
||||
echo "$PROMPT" > "$TEMP_FILE"
|
||||
|
||||
while [ ! -e "$TEMP_FILE.response" ]; do
|
||||
if [ ! -e "$TEMP_FILE" ]; then
|
||||
echo "Trigger file got removed: Abort" >&2
|
||||
exit 1
|
||||
fi
|
||||
sleep 0.1
|
||||
done
|
||||
|
||||
RESPONSE=$(cat "$TEMP_FILE.response")
|
||||
|
||||
echo "$RESPONSE"
|
||||
605
.obsidian/plugins/obsidian-git/styles.css
vendored
Normal file
605
.obsidian/plugins/obsidian-git/styles.css
vendored
Normal file
@ -0,0 +1,605 @@
|
||||
@keyframes loading {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="git-view"] .button-border {
|
||||
border: 2px solid var(--interactive-accent);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="git-view"] .view-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="git-history-view"] .view-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.loading > svg {
|
||||
animation: 2s linear infinite loading;
|
||||
transform-origin: 50% 50%;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.obsidian-git-center {
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.obsidian-git-textarea {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.obsidian-git-disabled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.obsidian-git-center-button {
|
||||
display: block;
|
||||
margin: 20px auto;
|
||||
}
|
||||
|
||||
.tooltip.mod-left {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.tooltip.mod-right {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
.git-tools {
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
}
|
||||
.git-tools .type {
|
||||
padding-left: var(--size-2-1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 11px;
|
||||
}
|
||||
|
||||
.git-tools .type[data-type="M"] {
|
||||
color: orange;
|
||||
}
|
||||
.git-tools .type[data-type="D"] {
|
||||
color: red;
|
||||
}
|
||||
.git-tools .buttons {
|
||||
display: flex;
|
||||
}
|
||||
.git-tools .buttons > * {
|
||||
padding: 0 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.is-active .git-tools .buttons > * {
|
||||
color: var(--nav-item-color-active);
|
||||
}
|
||||
|
||||
.git-author {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.git-date {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.git-ref {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
|
||||
background-color: var(--background-primary);
|
||||
border-bottom: 1px solid var(--interactive-accent);
|
||||
font-family: var(--font-monospace);
|
||||
height: 35px;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
|
||||
font-size: 14px;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
|
||||
border: 1px solid #b4e2b4;
|
||||
border-radius: 5px 0 0 5px;
|
||||
color: #399839;
|
||||
padding: 2px;
|
||||
text-align: right;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
|
||||
border: 1px solid #e9aeae;
|
||||
border-radius: 0 5px 5px 0;
|
||||
color: #c33;
|
||||
margin-left: 1px;
|
||||
padding: 2px;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
font-size: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 3px;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
|
||||
-webkit-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
font-size: 12px;
|
||||
justify-content: flex-end;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
|
||||
background-color: #c8e1ff;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
|
||||
margin: 0 4px 0 0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
|
||||
border-collapse: collapse;
|
||||
font-family: Menlo, Consolas, monospace;
|
||||
font-size: 13px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
|
||||
display: inline-block;
|
||||
margin-bottom: -8px;
|
||||
margin-right: -4px;
|
||||
overflow-x: scroll;
|
||||
overflow-y: hidden;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
|
||||
padding: 0 8em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
|
||||
display: inline-block;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
|
||||
padding: 0 4.5em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
|
||||
word-wrap: normal;
|
||||
background: none;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
-webkit-user-select: text;
|
||||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
user-select: text;
|
||||
vertical-align: middle;
|
||||
white-space: pre;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
del {
|
||||
background-color: #ffb6ba;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
del {
|
||||
background-color: #8d232881;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
|
||||
border-radius: 0.2em;
|
||||
display: inline-block;
|
||||
margin-top: -1px;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
ins {
|
||||
background-color: #97f295;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
ins {
|
||||
background-color: #1d921996;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
|
||||
word-wrap: normal;
|
||||
background: none;
|
||||
display: inline;
|
||||
padding: 0;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num1,
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
padding: 0 0.5em;
|
||||
text-overflow: ellipsis;
|
||||
width: 3.5em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
|
||||
background-color: var(--background-primary);
|
||||
border: solid var(--background-modifier-border);
|
||||
border-width: 0 1px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
width: 7.5em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
|
||||
content: "\200b";
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
|
||||
background-color: var(--background-primary);
|
||||
border: solid var(--background-modifier-border);
|
||||
border-width: 0 1px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding: 0 0.5em;
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
text-overflow: ellipsis;
|
||||
width: 4em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
|
||||
content: "\200b";
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
|
||||
background-color: var(--background-primary);
|
||||
border-color: var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
|
||||
background-color: #fee8e9;
|
||||
border-color: #e9aeae;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
|
||||
background-color: #dfd;
|
||||
border-color: #b4e2b4;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
|
||||
background-color: #521b1d83;
|
||||
border-color: #691d1d73;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
|
||||
background-color: rgba(30, 71, 30, 0.5);
|
||||
border-color: #13501381;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
|
||||
background-color: var(--background-primary);
|
||||
border-color: var(--background-modifier-border);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-del.d2h-change {
|
||||
background-color: #fdf2d0;
|
||||
}
|
||||
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-del.d2h-change {
|
||||
background-color: #55492480;
|
||||
}
|
||||
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-ins.d2h-change {
|
||||
background-color: #ded;
|
||||
}
|
||||
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-ins.d2h-change {
|
||||
background-color: rgba(37, 78, 37, 0.418);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
|
||||
color: #3572b0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-list-wrapper
|
||||
a:visited {
|
||||
color: #3572b0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
|
||||
display: block;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
margin: 0;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
|
||||
fill: currentColor;
|
||||
margin-right: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
|
||||
color: #c33;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
|
||||
color: #399839;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
|
||||
color: #d0b44c;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
|
||||
color: #3572b0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
|
||||
background-color: var(--background-primary);
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
font-size: 10px;
|
||||
margin-left: 5px;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
|
||||
border: 2px solid #c33;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
|
||||
border: 1px solid #399839;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
|
||||
border: 1px solid #d0b44c;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
|
||||
border: 1px solid #3572b0;
|
||||
}
|
||||
|
||||
/* ====================== Line Authoring Information ====================== */
|
||||
|
||||
.cm-gutterElement.obs-git-blame-gutter {
|
||||
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
|
||||
border-width: 0px 2px 0.2px 2px;
|
||||
border-style: solid;
|
||||
border-color: var(--background-secondary);
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.cm-gutterElement.obs-git-blame-gutter > div,
|
||||
.line-author-settings-preview {
|
||||
/* delegate text color to settings */
|
||||
color: var(--obs-git-gutter-text);
|
||||
font-family: monospace;
|
||||
height: 100%; /* ensure, that age-based background color occupies entire parent */
|
||||
text-align: right;
|
||||
padding: 0px 6px 0px 6px;
|
||||
white-space: pre; /* Keep spaces and do not collapse them. */
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
/* hide git blame gutter not to superpose text */
|
||||
.cm-gutterElement.obs-git-blame-gutter {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.git-unified-diff-view,
|
||||
.git-split-diff-view .cm-deletedLine .cm-changedText {
|
||||
background-color: #ee443330;
|
||||
}
|
||||
|
||||
.git-unified-diff-view,
|
||||
.git-split-diff-view .cm-insertedLine .cm-changedText {
|
||||
background-color: #22bb2230;
|
||||
}
|
||||
|
||||
/* Limits the scrollbar to the view body */
|
||||
.git-view {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.git-obscure-prompt[git-is-obscured="true"] #git-show-password:after {
|
||||
-webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svg-icon lucide-eye"><path d="M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"></path><circle cx="12" cy="12" r="3"></circle></svg>');
|
||||
}
|
||||
|
||||
.git-obscure-prompt[git-is-obscured="false"] #git-show-password:after {
|
||||
-webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svg-icon lucide-eye-off"><path d="M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"></path><path d="M14.084 14.158a3 3 0 0 1-4.242-4.242"></path><path d="M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"></path><path d="m2 2 20 20"></path></svg>');
|
||||
}
|
||||
|
||||
/* Override styling of Codemirror merge view "collapsed lines" indicator */
|
||||
.git-split-diff-view .ͼ2 .cm-collapsedLines {
|
||||
background: var(--interactive-normal);
|
||||
border-radius: var(--radius-m);
|
||||
color: var(--text-accent);
|
||||
font-size: var(--font-small);
|
||||
padding: var(--size-4-1) var(--size-4-1);
|
||||
}
|
||||
.git-split-diff-view .ͼ2 .cm-collapsedLines:hover {
|
||||
background: var(--interactive-hover);
|
||||
color: var(--text-accent-hover);
|
||||
}
|
||||
31
.obsidian/plugins/obsidian-icon-folder/data.json
vendored
Normal file
31
.obsidian/plugins/obsidian-icon-folder/data.json
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"settings": {
|
||||
"migrated": 6,
|
||||
"iconPacksPath": ".obsidian/icons",
|
||||
"fontSize": 16,
|
||||
"emojiStyle": "native",
|
||||
"iconColor": null,
|
||||
"recentlyUsedIcons": [],
|
||||
"recentlyUsedIconsSize": 5,
|
||||
"rules": [],
|
||||
"extraMargin": {
|
||||
"top": 0,
|
||||
"right": 4,
|
||||
"bottom": 0,
|
||||
"left": 0
|
||||
},
|
||||
"iconInTabsEnabled": false,
|
||||
"iconInTitleEnabled": false,
|
||||
"iconInTitlePosition": "above",
|
||||
"iconInFrontmatterEnabled": false,
|
||||
"iconInFrontmatterFieldName": "icon",
|
||||
"iconColorInFrontmatterFieldName": "iconColor",
|
||||
"iconsBackgroundCheckEnabled": false,
|
||||
"iconsInNotesEnabled": true,
|
||||
"iconsInLinksEnabled": true,
|
||||
"iconIdentifier": ":",
|
||||
"lucideIconPackType": "native",
|
||||
"debugMode": false,
|
||||
"useInternalPlugins": false
|
||||
}
|
||||
}
|
||||
7158
.obsidian/plugins/obsidian-icon-folder/main.js
vendored
Normal file
7158
.obsidian/plugins/obsidian-icon-folder/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-icon-folder/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-icon-folder/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-icon-folder",
|
||||
"name": "Iconize",
|
||||
"version": "2.14.7",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
|
||||
"author": "Florian Woelki",
|
||||
"authorUrl": "https://florianwoelki.com/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
120
.obsidian/plugins/obsidian-icon-folder/styles.css
vendored
Normal file
120
.obsidian/plugins/obsidian-icon-folder/styles.css
vendored
Normal file
@ -0,0 +1,120 @@
|
||||
.iconize-inline-title-wrapper {
|
||||
width: var(--line-width);
|
||||
max-width: var(--max-width);
|
||||
margin-inline: var(--content-margin);
|
||||
}
|
||||
|
||||
.iconize-title-icon {
|
||||
max-width: var(--max-width);
|
||||
margin-right: var(--size-4-2);
|
||||
}
|
||||
|
||||
.iconize-icon-in-link {
|
||||
transform: translateY(20%);
|
||||
margin-right: var(--size-2-2);
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.iconize-icon {
|
||||
border: 1px solid transparent;
|
||||
margin: 0px 4px 0px 0px;
|
||||
display: flex;
|
||||
align-self: center;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.nav-folder-title,
|
||||
.nav-file-title {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.iconize-setting input[type='color'] {
|
||||
margin: 0 6px;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results {
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.prompt .iconize-subheadline {
|
||||
margin-top: 12px;
|
||||
font-size: 12px;
|
||||
color: gray;
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 6;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.iconize-modal.prompt-results {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
.prompt .iconize-subheadline {
|
||||
grid-column-end: 4;
|
||||
}
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results .suggestion-item {
|
||||
cursor: pointer;
|
||||
white-space: pre-wrap;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
flex-direction: column-reverse;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
color: var(--text-muted);
|
||||
padding: 16px 8px;
|
||||
line-break: auto;
|
||||
word-break: break-word;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results .suggestion-item.suggestion-item__center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-icon-preview {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
color: currentColor;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.iconize-dragover {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.iconize-dragover-el {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-secondary-alt);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Custom rule modal. */
|
||||
.iconize-custom-modal .modal-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-custom-modal .modal-content input {
|
||||
width: 100%;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
3418
.obsidian/plugins/obsidian-outliner/main.js
vendored
Normal file
3418
.obsidian/plugins/obsidian-outliner/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/obsidian-outliner/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-outliner/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-outliner",
|
||||
"name": "Outliner",
|
||||
"version": "4.9.0",
|
||||
"minAppVersion": "1.8.7",
|
||||
"description": "Work with your lists like in Workflowy or RoamResearch.",
|
||||
"author": "Viacheslav Slinko",
|
||||
"authorUrl": "https://github.com/vslinko",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
105
.obsidian/plugins/obsidian-outliner/styles.css
vendored
Normal file
105
.obsidian/plugins/obsidian-outliner/styles.css
vendored
Normal file
@ -0,0 +1,105 @@
|
||||
/* lists and bullets */
|
||||
.outliner-plugin-better-lists .cm-s-obsidian .HyperMD-list-line {
|
||||
/* padding-top: 0.4em; */
|
||||
}
|
||||
|
||||
.outliner-plugin-better-lists .cm-formatting-list-ul {
|
||||
margin-right: 0.3em;
|
||||
}
|
||||
|
||||
.outliner-plugin-better-lists .list-bullet::after {
|
||||
width: 0.4em;
|
||||
height: 0.4em;
|
||||
background-color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* lines */
|
||||
.outliner-plugin-list-lines-scroller {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: var(--file-margins);
|
||||
padding-left: 0;
|
||||
pointer-events: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.outliner-plugin-list-lines-content-container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.outliner-plugin-list-line {
|
||||
pointer-events: auto;
|
||||
position: absolute;
|
||||
width: 5px;
|
||||
margin-left: 0.5ch;
|
||||
margin-top: 1em;
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
background-image: linear-gradient(
|
||||
to right,
|
||||
var(--text-faint) 1px,
|
||||
transparent 1px
|
||||
);
|
||||
background-position-x: 2px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.outliner-plugin-better-bullets .outliner-plugin-list-line {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
|
||||
.markdown-source-view.mod-cm6.is-readable-line-width
|
||||
.outliner-plugin-list-lines-content-container {
|
||||
max-width: 700px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.outliner-plugin-list-line:hover {
|
||||
background: var(--text-faint);
|
||||
}
|
||||
|
||||
.outliner-plugin-vertical-lines
|
||||
.markdown-source-view.mod-cm6
|
||||
.cm-hmd-list-indent
|
||||
.cm-indent::before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
/* drag-n-drop */
|
||||
.outliner-plugin-dropping-line {
|
||||
background-color: hsla(var(--interactive-accent-hsl), 0.4);
|
||||
}
|
||||
|
||||
.outliner-plugin-dragging-line {
|
||||
opacity: 0.5;
|
||||
background-color: hsla(var(--interactive-accent-hsl), 0.2);
|
||||
}
|
||||
|
||||
.outliner-plugin-drop-zone {
|
||||
width: 300px;
|
||||
height: 4px;
|
||||
background: var(--color-accent);
|
||||
z-index: 999;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.outliner-plugin-drop-zone-padding {
|
||||
position: absolute;
|
||||
height: 4px;
|
||||
}
|
||||
|
||||
body.outliner-plugin-dnd:not(.outliner-plugin-dragging) .cm-formatting-list,
|
||||
body.outliner-plugin-dnd:not(.outliner-plugin-dragging)
|
||||
.cm-fold-indicator
|
||||
.collapse-indicator {
|
||||
cursor: grab !important;
|
||||
}
|
||||
|
||||
html body.outliner-plugin-dnd.outliner-plugin-dragging {
|
||||
cursor: grabbing !important;
|
||||
}
|
||||
194
.obsidian/plugins/obsidian-relative-line-numbers/main.js
vendored
Normal file
194
.obsidian/plugins/obsidian-relative-line-numbers/main.js
vendored
Normal file
@ -0,0 +1,194 @@
|
||||
/*
|
||||
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
||||
if you want to view the source, please visit the github repository of this plugin
|
||||
*/
|
||||
|
||||
var __create = Object.create;
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __getProtoOf = Object.getPrototypeOf;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
|
||||
var __export = (target, all) => {
|
||||
__markAsModule(target);
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __reExport = (target, module2, desc) => {
|
||||
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
|
||||
for (let key of __getOwnPropNames(module2))
|
||||
if (!__hasOwnProp.call(target, key) && key !== "default")
|
||||
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
|
||||
}
|
||||
return target;
|
||||
};
|
||||
var __toModule = (module2) => {
|
||||
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
|
||||
};
|
||||
var __async = (__this, __arguments, generator) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
var fulfilled = (value) => {
|
||||
try {
|
||||
step(generator.next(value));
|
||||
} catch (e) {
|
||||
reject(e);
|
||||
}
|
||||
};
|
||||
var rejected = (value) => {
|
||||
try {
|
||||
step(generator.throw(value));
|
||||
} catch (e) {
|
||||
reject(e);
|
||||
}
|
||||
};
|
||||
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
||||
step((generator = generator.apply(__this, __arguments)).next());
|
||||
});
|
||||
};
|
||||
|
||||
// main.ts
|
||||
__export(exports, {
|
||||
default: () => RelativeLineNumbers
|
||||
});
|
||||
var import_obsidian = __toModule(require("obsidian"));
|
||||
|
||||
// extension.ts
|
||||
var import_view = __toModule(require("@codemirror/view"));
|
||||
var import_state = __toModule(require("@codemirror/state"));
|
||||
var import_language = __toModule(require("@codemirror/language"));
|
||||
var relativeLineNumberGutter = new import_state.Compartment();
|
||||
var Marker = class extends import_view.GutterMarker {
|
||||
constructor(text) {
|
||||
super();
|
||||
this.text = text;
|
||||
this.elementClass = "relative-line-numbers-mono";
|
||||
}
|
||||
toDOM() {
|
||||
return document.createTextNode(this.text);
|
||||
}
|
||||
};
|
||||
function linesCharLength(state) {
|
||||
return state.doc.lines.toString().length;
|
||||
}
|
||||
var absoluteLineNumberGutter = (0, import_view.gutter)({
|
||||
lineMarker: (view, line) => {
|
||||
const lineNo = view.state.doc.lineAt(line.from).number;
|
||||
const charLength = linesCharLength(view.state);
|
||||
const absoluteLineNo = new Marker(lineNo.toString().padStart(charLength, " "));
|
||||
const cursorLine = view.state.doc.lineAt(view.state.selection.asSingle().ranges[0].to).number;
|
||||
if (lineNo === cursorLine) {
|
||||
return absoluteLineNo;
|
||||
}
|
||||
return null;
|
||||
},
|
||||
initialSpacer: (view) => {
|
||||
const spacer = new Marker("0".repeat(linesCharLength(view.state)));
|
||||
return spacer;
|
||||
}
|
||||
});
|
||||
function relativeLineNumbers(lineNo, state) {
|
||||
const charLength = linesCharLength(state);
|
||||
const blank = " ".padStart(charLength, " ");
|
||||
if (lineNo > state.doc.lines) {
|
||||
return blank;
|
||||
}
|
||||
const cursorLine = state.doc.lineAt(state.selection.asSingle().ranges[0].to).number;
|
||||
const start = Math.min(state.doc.line(lineNo).from, state.selection.asSingle().ranges[0].to);
|
||||
const stop = Math.max(state.doc.line(lineNo).from, state.selection.asSingle().ranges[0].to);
|
||||
const folds = (0, import_language.foldedRanges)(state);
|
||||
let foldedCount = 0;
|
||||
folds.between(start, stop, (from, to) => {
|
||||
let rangeStart = state.doc.lineAt(from).number;
|
||||
let rangeStop = state.doc.lineAt(to).number;
|
||||
foldedCount += rangeStop - rangeStart;
|
||||
});
|
||||
if (lineNo === cursorLine) {
|
||||
return blank;
|
||||
} else {
|
||||
return (Math.abs(cursorLine - lineNo) - foldedCount).toString().padStart(charLength, " ");
|
||||
}
|
||||
}
|
||||
var showLineNumbers = relativeLineNumberGutter.of((0, import_view.lineNumbers)({ formatNumber: relativeLineNumbers }));
|
||||
var lineNumbersUpdateListener = import_view.EditorView.updateListener.of((viewUpdate) => {
|
||||
if (viewUpdate.selectionSet) {
|
||||
viewUpdate.view.dispatch({
|
||||
effects: relativeLineNumberGutter.reconfigure((0, import_view.lineNumbers)({ formatNumber: relativeLineNumbers }))
|
||||
});
|
||||
}
|
||||
});
|
||||
function lineNumbersRelative() {
|
||||
return [absoluteLineNumberGutter, showLineNumbers, lineNumbersUpdateListener];
|
||||
}
|
||||
|
||||
// main.ts
|
||||
var RelativeLineNumbers = class extends import_obsidian.Plugin {
|
||||
isLegacy() {
|
||||
var _a;
|
||||
return (_a = this.app.vault.config) == null ? void 0 : _a.legacyEditor;
|
||||
}
|
||||
onload() {
|
||||
return __async(this, null, function* () {
|
||||
const showLineNumber = this.app.vault.getConfig("showLineNumber");
|
||||
if (showLineNumber) {
|
||||
this.enable();
|
||||
}
|
||||
this.setupConfigChangeListener();
|
||||
});
|
||||
}
|
||||
onunload() {
|
||||
this.disable();
|
||||
}
|
||||
enable() {
|
||||
this.enabled = true;
|
||||
if (this.isLegacy()) {
|
||||
this.legacyEnable();
|
||||
} else {
|
||||
this.registerEditorExtension(lineNumbersRelative());
|
||||
}
|
||||
}
|
||||
disable() {
|
||||
this.enabled = false;
|
||||
if (this.isLegacy) {
|
||||
this.legacyDisable();
|
||||
}
|
||||
}
|
||||
legacyEnable() {
|
||||
this.registerCodeMirror((cm) => {
|
||||
cm.on("cursorActivity", this.legacyRelativeLineNumbers);
|
||||
});
|
||||
}
|
||||
legacyDisable() {
|
||||
this.app.workspace.iterateCodeMirrors((cm) => {
|
||||
cm.off("cursorActivity", this.legacyRelativeLineNumbers);
|
||||
cm.setOption("lineNumberFormatter", CodeMirror.defaults["lineNumberFormatter"]);
|
||||
});
|
||||
}
|
||||
setupConfigChangeListener() {
|
||||
const configChangedEvent = this.app.vault.on("config-changed", () => {
|
||||
const showLineNumber = this.app.vault.getConfig("showLineNumber");
|
||||
if (showLineNumber && !this.enabled) {
|
||||
this.enable();
|
||||
} else if (!showLineNumber && this.enabled) {
|
||||
this.disable();
|
||||
}
|
||||
});
|
||||
configChangedEvent.ctx = this;
|
||||
this.registerEvent(configChangedEvent);
|
||||
}
|
||||
legacyRelativeLineNumbers(cm) {
|
||||
const current = cm.getCursor().line + 1;
|
||||
if (cm.state.curLineNum === current) {
|
||||
return;
|
||||
}
|
||||
cm.state.curLineNum = current;
|
||||
cm.setOption("lineNumberFormatter", (line) => {
|
||||
if (line === current) {
|
||||
return String(current);
|
||||
}
|
||||
return String(Math.abs(current - line));
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/* nosourcemap */
|
||||
10
.obsidian/plugins/obsidian-relative-line-numbers/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-relative-line-numbers/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-relative-line-numbers",
|
||||
"name": "Relative Line Numbers",
|
||||
"version": "3.0.0",
|
||||
"minAppVersion": "1.4.16",
|
||||
"description": "Enables relative line numbers in editor mode",
|
||||
"author": "Nadav Spiegelman",
|
||||
"authorUrl": "https://nadav.is",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
10
.obsidian/plugins/obsidian-relative-line-numbers/styles.css
vendored
Normal file
10
.obsidian/plugins/obsidian-relative-line-numbers/styles.css
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
.relative-line-numbers-mono {
|
||||
font-family: monospace;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.cm-lineNumbers {
|
||||
font-family: monospace;
|
||||
white-space: pre;
|
||||
min-width: 25px; /* prevent relative line numbers from shifting on files with ~10-20 lines */
|
||||
}
|
||||
7
.obsidian/plugins/obsidian-table-generator/data.json
vendored
Normal file
7
.obsidian/plugins/obsidian-table-generator/data.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"rowCount": 8,
|
||||
"columnCount": 8,
|
||||
"defaultAlignment": "left",
|
||||
"defaultCardWidth": 160,
|
||||
"defaultCardHeight": 160
|
||||
}
|
||||
2463
.obsidian/plugins/obsidian-table-generator/main.js
vendored
Normal file
2463
.obsidian/plugins/obsidian-table-generator/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
15
.obsidian/plugins/obsidian-table-generator/manifest.json
vendored
Normal file
15
.obsidian/plugins/obsidian-table-generator/manifest.json
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"id": "obsidian-table-generator",
|
||||
"name": "Table Generator",
|
||||
"version": "1.4.1",
|
||||
"minAppVersion": "1.1.0",
|
||||
"description": "A plugin for generate markdown table quickly like Typora /card table in canvas .",
|
||||
"author": "Boninall",
|
||||
"authorUrl": "https://github.com/Quorafind",
|
||||
"fundingUrl": {
|
||||
"Buy Me a Coffee": "https://www.buymeacoffee.com/boninall",
|
||||
"爱发电": "https://afdian.net/a/boninall",
|
||||
"支付宝": "https://cdn.jsdelivr.net/gh/Quorafind/.github@main/IMAGE/%E6%94%AF%E4%BB%98%E5%AE%9D%E4%BB%98%E6%AC%BE%E7%A0%81.jpg"
|
||||
},
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
44
.obsidian/plugins/obsidian-table-generator/styles.css
vendored
Normal file
44
.obsidian/plugins/obsidian-table-generator/styles.css
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
.table-container.s-VU35bhriycJk.s-VU35bhriycJk{display:grid;border-bottom:2px dotted var(--color-base-40);border-top:2px dotted var(--color-base-40);padding-top:var(--size-2-1);padding-bottom:var(--size-2-1);width:100%;height:150px;grid-gap:1px}.table-container.s-VU35bhriycJk div.s-VU35bhriycJk{background:var(--color-base-00);border-radius:var(--radius-s);border:1px solid var(--color-base-40)}.table-container.s-VU35bhriycJk .table-generator-cell.s-VU35bhriycJk{height:var(--size-4-4);width:var(--size-4-4)}div.active.s-VU35bhriycJk.s-VU35bhriycJk{background-color:var(--active-color)}.s-VU35bhriycJk.s-VU35bhriycJk{}.table-generator.s-YxLKubgSvLDy{padding-left:5px;padding-right:5px;width:220px}.table-generator-header.s-YxLKubgSvLDy{display:flex;justify-content:space-between;align-items:center;margin-top:var(--size-4-1);margin-bottom:var(--size-4-1)}.input-table-generator.s-YxLKubgSvLDy{margin-left:var(--size-2-2);margin-right:var(--size-2-2);margin-top:var(--size-4-2);margin-bottom:var(--size-4-2);display:flex;justify-content:space-around;align-items:center}.input-table-generator-row.s-YxLKubgSvLDy,.input-table-generator-col.s-YxLKubgSvLDy{display:flex;justify-content:space-around;align-items:center}button.s-YxLKubgSvLDy{width:80px;height:20px;margin:var(--size-4-1) auto var(--size-4-2);padding:0px 10px;text-align:center;text-decoration:none;display:flex;align-items:center}input.s-YxLKubgSvLDy{width:40px;height:18px;border:1px solid var(--color-base-50);margin-left:var(--size-2-2);border-radius:var(--radius-m);text-align:center}.H1.s-YxLKubgSvLDy{margin-left:auto;margin-right:auto;text-align:center}.s-YxLKubgSvLDy{}.table-generator-align-group.s-XNB-qso0yOHJ{display:flex;align-items:center;flex-direction:row;gap:var(--size-2-2)}.table-generator-align-icon.s-XNB-qso0yOHJ{display:flex;align-items:center;justify-content:center;border-radius:var(--radius-s);padding:var(--size-2-1)}.table-generator-align-icon.s-XNB-qso0yOHJ:not(.active):hover{background-color:var(--background-modifier-hover)}.table-generator-align-icon.active.s-XNB-qso0yOHJ{background-color:var(--background-modifier-border-hover)}.s-XNB-qso0yOHJ{}.table-generator-view {
|
||||
position: absolute;
|
||||
border: 1px solid var(--color-base-50);
|
||||
border-radius: 5px;
|
||||
background-color: var(--color-base-20);
|
||||
}
|
||||
|
||||
.table-generator-setting-text {
|
||||
min-width: 2.3em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
.theme-light .table-generator-view {
|
||||
--color-base-00: #ffffff;
|
||||
--color-base-05: #fcfcfc;
|
||||
--color-base-10: #fafafa;
|
||||
--color-base-20: #f6f6f6;
|
||||
--color-base-25: #e3e3e3;
|
||||
--color-base-30: #e0e0e0;
|
||||
--color-base-35: #d4d4d4;
|
||||
--color-base-40: #bdbdbd;
|
||||
--color-base-50: #ababab;
|
||||
--color-base-60: #707070;
|
||||
--color-base-70: #5a5a5a;
|
||||
--color-base-100: #222222;
|
||||
--active-color: rgb(224 242 254);
|
||||
}
|
||||
|
||||
.theme-dark .table-generator-view {
|
||||
--color-base-00: #1e1e1e;
|
||||
--color-base-10: #242424;
|
||||
--color-base-20: #262626;
|
||||
--color-base-25: #2a2a2a;
|
||||
--color-base-30: #363636;
|
||||
--color-base-35: #3F3F3F;
|
||||
--color-base-40: #555;
|
||||
--color-base-50: #666;
|
||||
--color-base-60: #999;
|
||||
--color-base-70: #bababa;
|
||||
--color-base-100: #dadada;
|
||||
--active-color: rgb(3 105 161);
|
||||
}
|
||||
.input-table-generator.s-b7dfVi8Mj3e3{margin-left:var(--size-2-2);margin-right:var(--size-2-2);margin-top:var(--size-4-2);margin-bottom:var(--size-4-2);display:flex;justify-content:space-around;align-items:center}.input-table-generator-width.s-b7dfVi8Mj3e3,.input-table-generator-height.s-b7dfVi8Mj3e3{display:flex;justify-content:space-around;align-items:center}input.s-b7dfVi8Mj3e3{width:70px;height:18px;border:1px solid var(--color-base-50);margin-left:var(--size-2-2);border-radius:var(--radius-m);text-align:center}.s-b7dfVi8Mj3e3{}
|
||||
1847
.obsidian/plugins/sheets/main.js
vendored
Normal file
1847
.obsidian/plugins/sheets/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/sheets/manifest.json
vendored
Normal file
11
.obsidian/plugins/sheets/manifest.json
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "sheets",
|
||||
"name": "Sheets Extended",
|
||||
"version": "1.2.10",
|
||||
"minAppVersion": "1.5.0",
|
||||
"description": "Vertical headers, merged cells, and custom css tables with advanced table compatibility",
|
||||
"author": "NicoNekoru",
|
||||
"authorUrl": "https://github.com/NicoNekoru",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/niconekoru",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
35
.obsidian/plugins/sheets/styles.css
vendored
Normal file
35
.obsidian/plugins/sheets/styles.css
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
|
||||
This CSS file will be included with your plugin, and
|
||||
available in the app when your plugin is enabled.
|
||||
|
||||
If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
|
||||
.obs-sheets_error {
|
||||
color: rgb(255, 100, 100);
|
||||
background-color: rgba(240, 128, 128, 20%);
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
||||
color-scheme: dark;
|
||||
-webkit-user-select: text;
|
||||
white-space: break-spaces;
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
-webkit-user-modify: read-write-plaintext-only;
|
||||
tab-size: 4;
|
||||
box-sizing: border-box;
|
||||
font-size: var(--code-size);
|
||||
font-family: var(--font-monospace);
|
||||
clear: left;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: 0 !important;
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: 0;
|
||||
max-width: var(--file-line-width);
|
||||
padding-left: var(--size-4-4);
|
||||
text-align: center;
|
||||
}
|
||||
6
.obsidian/plugins/table-editor-obsidian/data.json
vendored
Normal file
6
.obsidian/plugins/table-editor-obsidian/data.json
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"formatType": "normal",
|
||||
"showRibbonIcon": true,
|
||||
"bindEnter": true,
|
||||
"bindTab": true
|
||||
}
|
||||
236
.obsidian/plugins/table-editor-obsidian/main.js
vendored
Normal file
236
.obsidian/plugins/table-editor-obsidian/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
17
.obsidian/plugins/table-editor-obsidian/manifest.json
vendored
Normal file
17
.obsidian/plugins/table-editor-obsidian/manifest.json
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"id": "table-editor-obsidian",
|
||||
"name": "Advanced Tables",
|
||||
"author": "Tony Grosinger",
|
||||
"authorUrl": "https://grosinger.net",
|
||||
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "1.0.0",
|
||||
"version": "0.22.1",
|
||||
"js": "main.js",
|
||||
"fundingUrl": {
|
||||
"Github Sponsor": "https://github.com/sponsors/tgrosinger",
|
||||
"Buy me a Coffee": "https://buymeacoffee.com/tgrosinger",
|
||||
"Paypal": "https://paypal.me/tgrosinger"
|
||||
},
|
||||
"donation": "https://buymeacoffee.com/tgrosinger"
|
||||
}
|
||||
78
.obsidian/plugins/table-editor-obsidian/styles.css
vendored
Normal file
78
.obsidian/plugins/table-editor-obsidian/styles.css
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
:root {
|
||||
--advanced-tables-helper-size: 28px;
|
||||
}
|
||||
|
||||
.HyperMD-table-row span.cm-inline-code {
|
||||
font-size: 100%;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.advanced-tables-buttons>div>.title {
|
||||
font-weight: var(--font-medium);
|
||||
font-size: var(--nav-item-size);
|
||||
color: var(--nav-item-color);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
[data-type="advanced-tables-toolbar"] .nav-buttons-container {
|
||||
column-gap: 0.2rem;
|
||||
margin: 0.2rem 0 0.2rem 0;
|
||||
justify-content: start;
|
||||
}
|
||||
|
||||
[data-type="advanced-tables-toolbar"] .nav-buttons-container::before {
|
||||
min-width: 2.6rem;
|
||||
line-height: var(--advanced-tables-helper-size);
|
||||
font-size: var(--nav-item-size);
|
||||
font-weight: var(--nav-item-weight);
|
||||
color: var(--nav-item-color);
|
||||
}
|
||||
|
||||
[data-type="advanced-tables-toolbar"] .nav-buttons-container>* {
|
||||
height: var(--advanced-tables-helper-size);
|
||||
line-height: var(--advanced-tables-helper-size);
|
||||
}
|
||||
|
||||
[data-type="advanced-tables-toolbar"] .nav-buttons-container .nav-action-button {
|
||||
width: var(--advanced-tables-helper-size);
|
||||
height: var(--advanced-tables-helper-size);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
[data-type="advanced-tables-toolbar"] .nav-buttons-container .nav-action-button:hover {
|
||||
background-color: var(--nav-item-background-hover);
|
||||
color: var(--nav-item-color-hover);
|
||||
font-weight: var(--nav-item-weight-hover);
|
||||
}
|
||||
|
||||
.advanced-tables-row-label {
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.widget-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
fill: var(--text-muted);
|
||||
}
|
||||
|
||||
.widget-icon:hover {
|
||||
fill: var(--text-normal);
|
||||
}
|
||||
|
||||
.advanced-tables-csv-export textarea {
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.advanced-tables-donation {
|
||||
width: 70%;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.advanced-tables-donate-button {
|
||||
margin: 10px;
|
||||
}
|
||||
12882
.obsidian/plugins/table-extended/main.js
vendored
Normal file
12882
.obsidian/plugins/table-extended/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/table-extended/manifest.json
vendored
Normal file
10
.obsidian/plugins/table-extended/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "table-extended",
|
||||
"name": "Table Extended",
|
||||
"version": "1.6.1",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Enable extended table support with MultiMarkdown 6 syntax",
|
||||
"author": "AidenLx",
|
||||
"authorUrl": "https://github.com/AidenLx/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
174
.obsidian/plugins/update-relative-links/main.js
vendored
Normal file
174
.obsidian/plugins/update-relative-links/main.js
vendored
Normal file
@ -0,0 +1,174 @@
|
||||
/*
|
||||
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
||||
if you want to view the source, please visit the github repository of this plugin
|
||||
*/
|
||||
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
|
||||
// main.ts
|
||||
var main_exports = {};
|
||||
__export(main_exports, {
|
||||
default: () => UpdateRelativeLinksPlugin
|
||||
});
|
||||
module.exports = __toCommonJS(main_exports);
|
||||
var import_obsidian = require("obsidian");
|
||||
|
||||
// lib/path.ts
|
||||
var SEP = "/";
|
||||
function dirname(path) {
|
||||
return stackToPath(pathToStack(path).slice(0, -1));
|
||||
}
|
||||
function relative(from, to) {
|
||||
if (!from) {
|
||||
return to;
|
||||
}
|
||||
const fromStack = pathToStack(from);
|
||||
const toStack = pathToStack(to);
|
||||
const firstDiffIdx = fromStack.findIndex((value, idx) => value != toStack[idx]);
|
||||
const resultStack = [];
|
||||
for (let i = firstDiffIdx; i < fromStack.length - 1; i++) {
|
||||
resultStack.push("..");
|
||||
}
|
||||
for (let i = firstDiffIdx; i < toStack.length; i++) {
|
||||
resultStack.push(toStack[i]);
|
||||
}
|
||||
return stackToPath(resultStack);
|
||||
}
|
||||
function pathToStack(path) {
|
||||
return path.split(SEP);
|
||||
}
|
||||
function stackToPath(stack) {
|
||||
return stack.join(SEP);
|
||||
}
|
||||
|
||||
// main.ts
|
||||
var ConfirmModal = class extends import_obsidian.Modal {
|
||||
constructor(app, content, onConfirm) {
|
||||
super(app);
|
||||
this.content = content;
|
||||
this.onConfirm = onConfirm;
|
||||
}
|
||||
onOpen() {
|
||||
const { contentEl } = this;
|
||||
contentEl.createEl("h1", { text: "Update Releate Links Plugin" });
|
||||
contentEl.createEl("p", { text: this.content });
|
||||
new import_obsidian.Setting(contentEl).addButton((btn) => btn.setButtonText("Yes").setCta().onClick(() => {
|
||||
this.close();
|
||||
this.onConfirm();
|
||||
})).addButton((btn) => btn.setButtonText("No").onClick(() => {
|
||||
this.close();
|
||||
}));
|
||||
}
|
||||
onClose() {
|
||||
this.contentEl.empty();
|
||||
}
|
||||
};
|
||||
var UpdateRelativeLinksPlugin = class extends import_obsidian.Plugin {
|
||||
async onload() {
|
||||
const { app } = this;
|
||||
const { metadataCache, vault } = app;
|
||||
const message = "This command will modify all links in the entire vault (not just the current file) to relative paths, and this action cannot be undone. It is recommended that you back up the vault in advance. Please confirm whether you want to execute the command.";
|
||||
this.addCommand({
|
||||
id: "update-all-relative-links",
|
||||
name: "Update all relative links",
|
||||
callback() {
|
||||
new ConfirmModal(app, message, () => {
|
||||
const promises = vault.getMarkdownFiles().map((file) => replace(file, false));
|
||||
Promise.all(promises).then((linkCounts) => {
|
||||
const updatedLinkCounts = linkCounts.filter((count) => count > 0);
|
||||
const linkCount = updatedLinkCounts.reduce((sum, count) => sum + count, 0);
|
||||
const fileCount = updatedLinkCounts.length;
|
||||
new import_obsidian.Notice(`Update ${linkCount} links in ${fileCount} file${fileCount > 1 ? "s" : ""}.`);
|
||||
}).catch((err) => {
|
||||
new import_obsidian.Notice("Update links error, see console.");
|
||||
console.error(err);
|
||||
});
|
||||
}).open();
|
||||
}
|
||||
});
|
||||
this.registerEvent(vault.on("rename", (file, oldPath) => {
|
||||
var _a;
|
||||
if (!oldPath || !file.path.toLocaleLowerCase().endsWith(".md") || ((_a = file.parent) == null ? void 0 : _a.path) === dirname(oldPath)) {
|
||||
return;
|
||||
}
|
||||
if (file instanceof import_obsidian.TFile) {
|
||||
setTimeout(() => replace(file, true), 100);
|
||||
}
|
||||
}));
|
||||
async function replace(file, notice) {
|
||||
var _a, _b;
|
||||
const metadata = metadataCache.getFileCache(file);
|
||||
const links = [...(_a = metadata == null ? void 0 : metadata.links) != null ? _a : [], ...(_b = metadata == null ? void 0 : metadata.embeds) != null ? _b : []];
|
||||
const replacePairs = links.map(({ link, original }) => {
|
||||
var _a2;
|
||||
const linkPath = link.replace(/#.*$/, "");
|
||||
if (!linkPath) {
|
||||
return null;
|
||||
}
|
||||
const linkFile = metadataCache.getFirstLinkpathDest(linkPath, file.path);
|
||||
if (!linkFile) {
|
||||
return null;
|
||||
}
|
||||
const newLinkPath = ((_a2 = file.parent) == null ? void 0 : _a2.path) === "/" ? linkFile.path : relative(file.path, linkFile.path);
|
||||
if (linkPath === newLinkPath) {
|
||||
return null;
|
||||
}
|
||||
const newOriginal = replaceOriginal(original, linkPath, newLinkPath);
|
||||
return [original, newOriginal];
|
||||
}).filter((pair) => pair);
|
||||
if (!(replacePairs == null ? void 0 : replacePairs.length)) {
|
||||
return 0;
|
||||
}
|
||||
try {
|
||||
const content = await vault.read(file);
|
||||
const replacedContent = replacePairs.reduce((tmpContent, pair) => {
|
||||
return (pair == null ? void 0 : pair.length) === 2 ? tmpContent.replace(pair[0], pair[1]) : tmpContent;
|
||||
}, content);
|
||||
await vault.modify(file, replacedContent);
|
||||
const msg = `Update ${replacePairs.length} links in ${file.path}.`;
|
||||
console.log(msg);
|
||||
if (notice) {
|
||||
new import_obsidian.Notice(msg);
|
||||
}
|
||||
return replacePairs.length;
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
if (notice) {
|
||||
new import_obsidian.Notice("Update links error, see console.");
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
function replaceOriginal(original, link, newLink) {
|
||||
let newOriginal = replaceWithFormat(original, link, newLink, (s) => s.replace(/ /g, "%20"));
|
||||
if (original === newOriginal) {
|
||||
newOriginal = replaceWithFormat(original, link, newLink, encodeURI);
|
||||
}
|
||||
if (original === newOriginal) {
|
||||
newOriginal = original.replace(/^(!?\[.*?\]).*$/, `$1(${encodeURI(newLink)})`);
|
||||
}
|
||||
return newOriginal;
|
||||
}
|
||||
function replaceWithFormat(str, from, to, format) {
|
||||
return str.replace(format(from), format(to));
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/* nosourcemap */
|
||||
10
.obsidian/plugins/update-relative-links/manifest.json
vendored
Normal file
10
.obsidian/plugins/update-relative-links/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "update-relative-links",
|
||||
"name": "Update Relative Links",
|
||||
"version": "2.1.3",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Update relative links.",
|
||||
"author": "val",
|
||||
"authorUrl": "https://github.com/val3344/obsidian-update-relative-links",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
13
.obsidian/plugins/update-time-on-edit/data.json
vendored
Normal file
13
.obsidian/plugins/update-time-on-edit/data.json
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"dateFormat": "yyyy-MM-dd'T'HH:mm",
|
||||
"enableCreateTime": true,
|
||||
"headerUpdated": "updated",
|
||||
"headerCreated": "created",
|
||||
"minMinutesBetweenSaves": 1,
|
||||
"ignoreGlobalFolder": [],
|
||||
"ignoreCreatedFolder": [],
|
||||
"enableExperimentalHash": false,
|
||||
"fileHashMap": {
|
||||
"Other/Drucker.md": "159f8439135fc1bad460d2b78aac8bceca119edd5561ac238a91abc6181d5ff3"
|
||||
}
|
||||
}
|
||||
6095
.obsidian/plugins/update-time-on-edit/main.js
vendored
Normal file
6095
.obsidian/plugins/update-time-on-edit/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/update-time-on-edit/manifest.json
vendored
Normal file
10
.obsidian/plugins/update-time-on-edit/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "update-time-on-edit",
|
||||
"name": "Update time on edit",
|
||||
"version": "2.4.0",
|
||||
"minAppVersion": "1.4.4",
|
||||
"description": "Keep front matter in sync with the last edit time",
|
||||
"author": "@beaussan",
|
||||
"authorUrl": "https://github.com/beaussan",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
17
.obsidian/plugins/update-time-on-edit/styles.css
vendored
Normal file
17
.obsidian/plugins/update-time-on-edit/styles.css
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
.time_search {
|
||||
width: calc(100% - 20px);
|
||||
}
|
||||
|
||||
.update-time-on-edit--settings--warn {
|
||||
color: #ff5a5a;
|
||||
}
|
||||
|
||||
.update-time-on-edit--bulk-modal .progress-section {
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.update-time-on-edit--bulk-modal .progress-section progress {
|
||||
flex: 1;
|
||||
}
|
||||
216
.obsidian/workspace.json
vendored
Normal file
216
.obsidian/workspace.json
vendored
Normal file
@ -0,0 +1,216 @@
|
||||
{
|
||||
"main": {
|
||||
"id": "acab7faa68fb9f9a",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "ac8c1c9af2cfba1e",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "4ca649a134288e28",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "image",
|
||||
"state": {
|
||||
"file": "attachments/screenshot 7.png"
|
||||
},
|
||||
"icon": "lucide-image",
|
||||
"title": "screenshot 7"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "f1a4b1252b38f0d0",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "e95a05b05f6890ec",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "09ebeef7532efe95",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical",
|
||||
"autoReveal": false
|
||||
},
|
||||
"icon": "lucide-folder-closed",
|
||||
"title": "Files"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "9a53babe8f7e89c3",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
},
|
||||
"icon": "lucide-search",
|
||||
"title": "Search"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "1947581603cee6f4",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {},
|
||||
"icon": "lucide-bookmark",
|
||||
"title": "Bookmarks"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "f703b32ba083d0dc",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "mk-path-view",
|
||||
"state": {},
|
||||
"icon": "layout-grid",
|
||||
"title": "Navigator"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 3
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 300
|
||||
},
|
||||
"right": {
|
||||
"id": "e55ac8a7c4c101a2",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "a08058adf6596f23",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "ef48e2cea6fb361c",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "attachments/screenshot 7.png",
|
||||
"collapseAll": true,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-coming-in",
|
||||
"title": "Backlinks for screenshot 7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "903eb47e1cb603b3",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "Journal/2024/2024-11.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-going-out",
|
||||
"title": "Outgoing links from 2024-11"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "a03f294fb31506e5",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true
|
||||
},
|
||||
"icon": "lucide-tags",
|
||||
"title": "Tags"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "6729662b44fde71c",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "attachments/screenshot 7.png",
|
||||
"followCursor": false,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-list",
|
||||
"title": "Outline of screenshot 7"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 3
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 300
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"switcher:Open quick switcher": false,
|
||||
"graph:Open graph view": false,
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"templates:Insert template": false,
|
||||
"command-palette:Open command palette": false,
|
||||
"obsidian-git:Open Git source control": false,
|
||||
"table-editor-obsidian:Advanced Tables Toolbar": false
|
||||
}
|
||||
},
|
||||
"active": "4ca649a134288e28",
|
||||
"lastOpenFiles": [
|
||||
"attachments/screenshot 5.png",
|
||||
"attachments/paint_damage/screenshot 14.png",
|
||||
"attachments/paint_damage/screenshot 13.png",
|
||||
"attachments/paint_damage/screenshot 12.png",
|
||||
"attachments/paint_damage/paintdamage_02.png",
|
||||
"attachments/paint_damage/paintdamage_01.png",
|
||||
"attachments/screenshot 13.png",
|
||||
"attachments/screenshot 12.png",
|
||||
"attachments/screenshot 10.png",
|
||||
"attachments/screenshot 1.png",
|
||||
"attachments/IPAF-Ausweis_02.png",
|
||||
"attachments/73-13-42_Functional Test of the Fuel Recirculation Cooling System with AIDS.pdf",
|
||||
"attachments/DeSoto 825-009 High Temp Primer.pdf",
|
||||
"ipaf.md",
|
||||
"Alpha Call-Up List.md",
|
||||
"Aviatar.md",
|
||||
"IT-Service.md",
|
||||
"Journal/2025/2025-05.md",
|
||||
"Journal/2025/2025-06.md",
|
||||
"Other/TAQ.md",
|
||||
"Other/Drucker.md",
|
||||
"FINs.md",
|
||||
"EOs.md",
|
||||
"EO/EO 340636.md",
|
||||
"EO/EO 342978.md",
|
||||
"EO/EO 343265.md",
|
||||
"attachments/eo/eo343265.pdf",
|
||||
"EO/EO 367283.md",
|
||||
"Tags",
|
||||
"Journal/2025/2025-02.md",
|
||||
"Journal/2024/2024-11.md",
|
||||
"Journal/2024/2025-02.md",
|
||||
"Journal/2024/2024-09.md"
|
||||
]
|
||||
}
|
||||
1
.space/waypoints.json
Normal file
1
.space/waypoints.json
Normal file
@ -0,0 +1 @@
|
||||
[{"name":"Home","sticker":"ui//home","paths":["/"]}]
|
||||
4
AMM/00 - REV 139.md
Normal file
4
AMM/00 - REV 139.md
Normal file
@ -0,0 +1,4 @@
|
||||
## High-Speed Tape Inspection Interval
|
||||
|
||||
Note: Unless otherwise specified in the CDL item or the relevant AMM task, a visual inspection of the high-speed tape must be made at a regular interval that must not exceed 3 calendar days.
|
||||
|
||||
9
AMM/11 - Placards.md
Normal file
9
AMM/11 - Placards.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
created: 2023-01-04T13:34:46+01:00
|
||||
updated: 2023-01-04T13:37:22+01:00
|
||||
---
|
||||
[EO 356329 - A320 Technical Markings](EO/EO%20356329)
|
||||
[[DLHA3202TM.pdf]]
|
||||
[[DLHA3202TM_Partslist.pdf]] Partslist
|
||||
[[A320_NEO_DLH12_NEW_LIVERY_v1.pdf]]
|
||||
|
||||
4
AMM/20 - Standarts.md
Normal file
4
AMM/20 - Standarts.md
Normal file
@ -0,0 +1,4 @@
|
||||
### Sicherungsdraht
|
||||
- 14QFB1 - MS20995N32 - Inconel 371 C
|
||||
- 14QFC1 - MS20995C32 - CRES
|
||||
|
||||
29
AMM/23 - Communication.md
Normal file
29
AMM/23 - Communication.md
Normal file
@ -0,0 +1,29 @@
|
||||
---
|
||||
created: 2023-01-14T17:24:15+01:00
|
||||
updated: 2025-04-25T02:57
|
||||
---
|
||||
|
||||
## Allgemein
|
||||
|
||||
| Task | Ref |
|
||||
| ----------------- | ----------- |
|
||||
| Static Discharger | 23-61-41-04 |
|
||||
|
||||
|
||||
## -40
|
||||
### Horn
|
||||
|
||||
| Description | PN |
|
||||
| ----------- | --------------- |
|
||||
| horn | D0003004300000 |
|
||||
| contact | EN3155-016M1616 |
|
||||
| connection | NSA936830-16 |
|
||||
|
||||
## CIDS
|
||||
|
||||
| Task | Ref |
|
||||
| ------------------------- | ------------------ |
|
||||
| Interface & Power-up Test | 23-73-00-740-005-B |
|
||||
|
||||
|
||||
|
||||
39
AMM/24 - Electrical Power.md
Normal file
39
AMM/24 - Electrical Power.md
Normal file
@ -0,0 +1,39 @@
|
||||
### 24-92 Bondings / Inspections
|
||||
|
||||
| Item | Ref |
|
||||
|------|-----|
|
||||
| Bondings Flightcontrols | 24-92-00-210-024-A |
|
||||
|
||||
|
||||
SUBTASK 24-92-00-220-063-B
|
||||
C. Inspection of the Elevator Bonding Leads
|
||||
|
||||
(1) During the inspection, if you cannot replace the bonding leads that are broken or damaged, the bonding lead installations that follow are satisfactory:
|
||||
|
||||
(a) Bonding lead installed near the elevator tip:
|
||||
- If less than 25 percent of its strands are damaged.
|
||||
|
||||
(b) And for the other bonding leads installed on the elevator:
|
||||
- If only one bonding lead is broken or has more than 25 percent of its strands damaged and the other bonding leads have less than 25 percen of their strands damaged.
|
||||
|
||||
(2) Replace all the remaining broken or damaged bonding leads in less than 24 months or 7500 flight hours or 5000 flight cycles (the one that occurs first).
|
||||
|
||||
## Battery Protect C/Bs
|
||||
| PANEL | LOC | DESIGNATION | FIN |
|
||||
| ----------- | --- | ------------------------------- | ----- |
|
||||
| 2PB1(BAT-1) | | | |
|
||||
| 105VU | A01 | FLT CTL/ELAC1/STBY SPLY | 16CE1 |
|
||||
| 105VU | B01 | FLT CTL/SEC1/STBY SPLY | 22CE |
|
||||
| 105VU | C01 | ELEC/CSM/G /EV AUTO/SPLY | 7XE |
|
||||
| 105VU | D01 | ELEC/HOT BUS/701PP SPLY | 5PB1 |
|
||||
| 105VU | E01 | ELEC/HOT BUS/701PP SPLY | 12PB1 |
|
||||
| 105VU | F01 | ELEC/BAT REF/BCL1 | 9PB1 |
|
||||
| 105VU | J01 | NAV/STBY/INST/BAT | 23FN |
|
||||
| 2PB2(BAT-2) | | | |
|
||||
| 105VU | A02 | FLIGHT CONTROLS/ELAC2/STBY SPLY | 16CE2 |
|
||||
| 105VU | C02 | ADIRS/ADIRU1/28VDC | 6FP1 |
|
||||
| 105VU | D02 | ELEC/HOT BUS/702PP SPLY | 5PB2 |
|
||||
| 105VU | E02 | ELEC/HOT BUS/702PP SPLY | 12PB2 |
|
||||
| 105VU | F02 | ELEC/BAT REF/BCL2 | 9PB2 |
|
||||
| 105VU | G02 | ELEC/STAT INV/CNTOR/CTL | 14XB |
|
||||
| 106VU | B04 | CSM/G /EV/MAN/SPLY | 6XE |
|
||||
105
AMM/25 - Cabin.md
Normal file
105
AMM/25 - Cabin.md
Normal file
@ -0,0 +1,105 @@
|
||||
---
|
||||
created: 2023-01-14T17:24:28+01:00
|
||||
updated: 2025-05-14T14:14
|
||||
---
|
||||
|
||||
### 25-10 Cockpit Seats
|
||||
|
||||
| Item | Ref |
|
||||
|----------------|----------|
|
||||
| Safety Harness | 25-11-63 |
|
||||
|
||||
### 25-20 Passenger Cabin
|
||||
|
||||
| Item | Ref |
|
||||
|------------------------|---------------------------------|
|
||||
| Center Ceiling Stowage | 25-24-01 -- EB-SR 00140536/004 |
|
||||
| Repl Curtain | 25-26-41-04 |
|
||||
|
||||
| Item | Ref |
|
||||
|---------------------|---------------|
|
||||
| Heated Floor Panels | \[\[EO 342978\]\] |
|
||||
|
||||
### 25-30 Galleys
|
||||
|
||||
| Item | PN | Ref. |
|
||||
|----------------|-----------------|--------------------|
|
||||
| Aft Max Galley | 601539-101 | CMM 25-36-62 REV 8 |
|
||||
| Oven New | 8303-06-0000-01 | CMM 25-37-39 REV 4 |
|
||||
|
||||
### 25-40 Toilets
|
||||
|
||||
#### NEW F/G
|
||||
|
||||
Dispenser Toilet Paper Spindle Assy
|
||||
A081112-507 25-40-17-26/25 CMM
|
||||
|
||||
### 25-50 Cargo Loading System
|
||||
|
||||
#### PDU Roller
|
||||
|
||||
ALT AMM: 25-50-00-200-018-A
|
||||
NEU AMM: 50-20-03-200-804-A01 / EO367283
|
||||
|
||||
| Version | Durchmesser | Breite | Ausbrüche |
|
||||
|---------|-------------|--------|-----------|
|
||||
| alt | 40,8 | 48.8 | 2 |
|
||||
| neu | 39 | 25 | 3 |
|
||||
|
||||
### 25-60 Emergency Equipment
|
||||
|
||||
| | |
|
||||
| --------- | ------------ |
|
||||
| Life Vest | 25-66-52-04 |
|
||||
| EMK/FAC | SPM 25-00-05 |
|
||||
|
||||
#### Lifevest expiration date
|
||||
|
||||
![[life_vest_exp_date.png]]
|
||||
|
||||
### 25-80
|
||||
|
||||
| Insulation Blankets | |
|
||||
|----------------------------|--------------------|
|
||||
| repair insulation blankets | 25-80-00-350-001-A |
|
||||
|
||||
## CRAS
|
||||
|
||||
### Tape Repair
|
||||
|
||||
Die folgenden Hinweise ersetzen nicht das Originaldokument (CRAS 00146367) und dienen als
|
||||
ergänzende Hinweise. Wichtige Änderungen und Hinweise zum CRAS 00146367 Revision 5:
|
||||
a) Eine Reparatur gemäß CRAS 00146367 REV 5 ist für 180 Tage gültig.
|
||||
b) Für Tape-repairs ist ausschließlich das in 1. Material aufgeführte Tape zu verwenden.
|
||||
|
||||
Tabelle 1; Material für eine Reparatur mittels Tape.
|
||||
Manufacturer: 81205
|
||||
|
||||
| Item | Description | P/N | Remarks |
|
||||
|-------------------------------------------------------------------------------------------|----------------------------------|-------------------|----------------------------------------------------------------------|
|
||||
| 1 | Pressure sensitive adhesive tape | PATCO D9100-1INCH | 33m x 25mm |
|
||||
| 2 | Pressure sensitive adhesive tape | PATCO D9100-2INCH | 33m x 51mm |
|
||||
| 3 | Pressure sensitive adhesive tape | PATCO D9100-XINCH | X in suffix denotes tape width in inch. Max width of 4 in is allowed |
|
||||
|
||||
|
||||
c) In Kapitel 2. Accomplishment ist die Durchführung und der zulässige Umfang für das
|
||||
Reparaturverfahren beschrieben. Die integrierte Tabelle zeigt eine Liste der Defekte, die
|
||||
mit Tape repariert werden können. Zusätzlich werden bestimmte Bereiche (HIC path
|
||||
area) von dem Reparaturverfahren ausgeschlossen.
|
||||
|
||||
|
||||
**Tabelle 2; Zulässige Bereiche für die Anwendung der CRAS.**
|
||||
a) Cracks in Mirrors
|
||||
b) Cracks in small seat fairings
|
||||
c) Coverage of sharp edges of broken parts if they are still fixed well without tape
|
||||
d) Um das CRAS anzuwenden sind für die Beschädigungen folgende Limits definiert:
|
||||
Tabelle 3; Limits für die Anwendung des Reparaturverfahrens.
|
||||
|
||||
| | Spiegel | Sitze |
|
||||
|----------------------------|------------------|-------------------|
|
||||
| Gesamtfläche | 1 sqft / 900 cm² | 36 sqin / 253 cm² |
|
||||
| Fläche Beschädigung | 9 sqin | |
|
||||
| Mindestabstand Reparaturen | 12 in | |
|
||||
|
||||
Sollte die vorgefundene Beschädigung nicht abgedeckt sein ist das TCC unter
|
||||
069/69643711 zu kontaktieren.
|
||||
0
AMM/26 - Fire Detection.md
Normal file
0
AMM/26 - Fire Detection.md
Normal file
21
AMM/27 - Flight Control.md
Normal file
21
AMM/27 - Flight Control.md
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
### Elevator
|
||||
| Doc | Ref | Description |
|
||||
| --- | ------------ | -------------- |
|
||||
| CMM | 55-21-15/036 | Elevator Assy |
|
||||
| EO | 333322/01 | Elev PN -> A/C |
|
||||
| AMM | 27-34- | Elevator SCU |
|
||||
|
||||
|
||||
|
||||
### Flap/Slat PPUs Position
|
||||
**Flaps:** AMM 27-50-00-860-801-A PB201
|
||||
**Slats:** AMM 27-80-00-860-801-A PB201
|
||||
|
||||
- retracted position:
|
||||
APPU to FPPU: +- 0.9 deg.
|
||||
APPU to APPU: +- 0.7 deg.
|
||||
|
||||
- extended position:
|
||||
APPU to FPPU: +- 1.3 deg.
|
||||
APPU to APPU: +- 0.7 deg.
|
||||
15
AMM/28 - Fuel.md
Normal file
15
AMM/28 - Fuel.md
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
created: 2023-07-16T06:15:05+02:00
|
||||
updated: 2023-07-16T07:17:51+02:00
|
||||
---
|
||||
## -42 Capacitance Values
|
||||
|
||||
| Grid | Fin | LRU | Dry | Tolerance | Wet Max |
|
||||
|:---- |:----- |:----------- |:------ |:--------- |:------- |
|
||||
| A03 | 21QT1 | L/H Probe 1 | 64.516 | ± 0.62 | 135.45 |
|
||||
| B03 | 92QT1 | L/H Probe 2 | 63.122 | ± 0.60 | 132.62 |
|
||||
| | | | | | |
|
||||
| | | | | | |
|
||||
| | | | | | |
|
||||
| | | | | | |
|
||||
| | | | | | |
|
||||
7
AMM/31 - Indication & Recording.md
Normal file
7
AMM/31 - Indication & Recording.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
created: 2023-01-13T07:28:21+01:00
|
||||
updated: 2023-01-14T17:13:46+01:00
|
||||
---
|
||||
|
||||
AIDS Passwort DMU: SFIMP
|
||||
|
||||
39
AMM/32 - Landing Gear.md
Normal file
39
AMM/32 - Landing Gear.md
Normal file
@ -0,0 +1,39 @@
|
||||
---
|
||||
created: 2024-11-18T04:01
|
||||
updated: 2025-05-02T07:27
|
||||
---
|
||||
### -41 WHEELS
|
||||
|
||||
| Item | Reference | Notes |
|
||||
| ---------- | --------- | ------------------------- |
|
||||
| Main Wheel | 32-41-11 | 220/110 lbft 300/150 lbft |
|
||||
| Nose Wheel | 32-41-12 | 160/80 lbft |
|
||||
|
||||
```ad-info
|
||||
[[SL 2019-32-004 Radial Tire Sidewall Undulations.pdf]]
|
||||
```
|
||||
|
||||
### -42 BRAKE
|
||||
Table 1 (Ref. MS-Task 32422701-01)
|
||||
|
||||
| BWI Length | FC |
|
||||
| ---------- | --- |
|
||||
| 3.5 - 3.9 | 70 |
|
||||
| 3.0 - 3.4 | 60 |
|
||||
| 2.5 - 2.9 | 50 |
|
||||
| 2.0 - 2.4 | 40 |
|
||||
| 1.5 - 1.9 | 30 |
|
||||
| 1.1 - 1.4 | 20 |
|
||||
|
||||
```ad-note
|
||||
FOR BWI LENGTH < 1.0 MM BRAKE CHANGE REQUIRED. BUT MAY BE DEFERRED FOR
|
||||
MAX. 10 FC BASED ON 0.1 MM = 1 FC.
|
||||
E.G. BWI LENGTH 0.6 MM = 6 FC.
|
||||
```
|
||||
|
||||
```ad-note
|
||||
| Brake 1 | Brake 2 | Brake3 | Brake4 |
|
||||
| ------- | ------- | ------ | ------ |
|
||||
| 2643GM | 2641GM | 2644GM | 2642GM |
|
||||
```
|
||||
|
||||
33
AMM/33 - Lights.md
Normal file
33
AMM/33 - Lights.md
Normal file
@ -0,0 +1,33 @@
|
||||
---
|
||||
created: 2024-02-16T09:53:53+01:00
|
||||
updated: 2025-04-04T22:57
|
||||
---
|
||||
|
||||
``` ad-note
|
||||
Access Code CAP Test: 3351
|
||||
```
|
||||
|
||||
### Cabin
|
||||
| Task | Ref |
|
||||
| -------------- | ----------- |
|
||||
| Light Unit | 33-21-11-04 |
|
||||
| Handrail Light | 33-21-21-04 |
|
||||
| Reading Light | |
|
||||
|
||||
|
||||
### Service
|
||||
| Task | Ref |
|
||||
| - | - |
|
||||
| Service Areas | 33-31-11 |
|
||||
| Air Cond Area | 33-32-00 |
|
||||
| Cargo Tubes | 33-34-11 |
|
||||
| Loading | 33-34-12 |
|
||||
|
||||
|
||||
### Cabin Emergency
|
||||
| Task | Ref |
|
||||
| --------- | ------------------ |
|
||||
| Ops Check | 33-51-00-710-001-A |
|
||||
|
||||
|
||||
|
||||
8
AMM/35 - Oxygen.md
Normal file
8
AMM/35 - Oxygen.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
created: 2024-10-18T03:17
|
||||
updated: 2024-10-18T03:17
|
||||
---
|
||||
Portable Bottle AMM 35-32-42
|
||||
Refilling SPM 35-00-08
|
||||
Portable Oxygen Bottle MEL C 35-30-01B
|
||||
|
||||
36
AMM/36 - Pneumatic.md
Normal file
36
AMM/36 - Pneumatic.md
Normal file
@ -0,0 +1,36 @@
|
||||
---
|
||||
created: 2023-01-04T13:08:36+01:00
|
||||
updated: 2024-02-16T09:53:54+01:00
|
||||
---
|
||||
|
||||
| Task | Ref |
|
||||
|------|-----|
|
||||
| Bleed Check - Ops Test Bleed Air System | 36-11-00-710-003-A |
|
||||
|
||||
#### Bleed Check
|
||||
|
||||
##### CFM
|
||||
|
||||
| N1 % | Druck PSI | Temp °C |
|
||||
|------|-----------|---------|
|
||||
| Idle | 20-39 | 150-200 |
|
||||
| 35-40 | 36 ± 4 | 200 +10 -30 |
|
||||
| 65 | 44 ± 4 | 200 +10 -40 |
|
||||
|
||||
##### V2500
|
||||
|
||||
| N1 % | Druck PSI | Temp °C |
|
||||
|------|-----------|---------|
|
||||
| Idle | 20-39 | 150-200 |
|
||||
| 35-40 | 36 ± 4 | 200 +10 -30 |
|
||||
| 75 | 44 ± 4 | 200 +10 -40 |
|
||||
|
||||
##### PW1100
|
||||
|
||||
| N1 % | Druck PSI | Temp °C |
|
||||
|------|-----------|---------|
|
||||
| Idle | 20-48 | 100-205 |
|
||||
| 35-40 | 50 ± 2 | 200 ± 25 |
|
||||
| 80 | 50 ± 2 | 200 ± 25 |
|
||||
|
||||
### BMC Current Status
|
||||
4
AMM/52 - Doors.md
Normal file
4
AMM/52 - Doors.md
Normal file
@ -0,0 +1,4 @@
|
||||
Repair 52-13-18-08
|
||||
Fwd Door Seal 52-11-18-300-001-A
|
||||
Aft Door Seals 52-13-18-300-001-A
|
||||
Temp Repair High Speed Tape 52-11-18-300-802–A
|
||||
6
AMM/53 - Fuselage.md
Normal file
6
AMM/53 - Fuselage.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
created: 2024-09-06T16:20
|
||||
updated: 2024-09-06T18:55
|
||||
---
|
||||
[[SRM/53 - Fuselage|SRM - 53 - Fuselage]]
|
||||
|
||||
3
AMM/57 - Wings.md
Normal file
3
AMM/57 - Wings.md
Normal file
@ -0,0 +1,3 @@
|
||||
Bushing Repair of Bolt Hole of Tank Panels: SRM 57-21-11-300-009
|
||||
NOTE: When refitting the panel after repair you must use bolts with a grip length 3.2 mm (0.126 in) longer than the standard bolts.
|
||||
|
||||
48
AMM/71 - Engine.md
Normal file
48
AMM/71 - Engine.md
Normal file
@ -0,0 +1,48 @@
|
||||
---
|
||||
created: 2023-01-04T14:01:02+01:00
|
||||
updated: 2024-11-08T21:43
|
||||
---
|
||||
Preservation Tag Form-ID: 31809
|
||||
Missing Part List: 31780
|
||||
Ident-Tag: 31794
|
||||
|
||||
## Preservation
|
||||
Desiccant Bags (500g per Bag) PN: "VA 16"
|
||||
|
||||
| | | | | |
|
||||
| ------------- | ------------------ | ----------------- | ------------- | --------- |
|
||||
| | **FWD (Fan Aera)** | **AFT (Exhaust)** | **Gesamt** | **Limit** |
|
||||
| **PW1100G** | 12,5Kg (25ea) | 12,5Kg (25ea) | 25Kg (50ea) | 40% |
|
||||
| **V2500** | 22,5KG (45ea) | 22,5KG (45ea) | 45Kg (90ea) | 40% |
|
||||
| **CFM56-5A** | 15Kg (30ea) | 15Kg (30ea) | 30Kg (60ea) | 20% |
|
||||
| **CFM56-5B** | 15Kg (30ea) | 15Kg (30ea) | 30Kg (60ea) | 70% |
|
||||
| **CFM56-5C** | 8Kg (16ea) | 8Kg (16ea) | 16Kg (32ea) | |
|
||||
| **CF6-80** | | | | |
|
||||
| **Trent-900** | 65Kg (130ea) | 65Kg (130ea) | 130Kg (260ea) | |
|
||||
| **XWB** | 65Kg (130ea) | 65Kg (130ea) | 130Kg (260ea) | |
|
||||
|
||||
## CFM56
|
||||
Preservation:
|
||||
|
||||
| Preservation | 72-00-00-03 |
|
||||
| ------------ | ------------------ |
|
||||
| -365 | 72-00-00-600-003-A |
|
||||
| -30 | 72-00-00-600-001-A |
|
||||
| -90 | 72-00-00-600-002-A |
|
||||
|
||||
|
||||
## V2500
|
||||
Preservation:
|
||||
|
||||
|
||||
|
||||
## PW1100
|
||||
|
||||
| | AMM |
|
||||
| --------------------------------------- | ---------------- |
|
||||
| POWER PLANT SYSTEM MAINTENANCE | 71-00-00-700-806 |
|
||||
| ENGINE OPERATION LIMITS AND GUIDELINES | 71-00-00-910-803 |
|
||||
| OPERATE THE ENGINE AFTER SURGE OR STALL | 71-00-00-860-819 |
|
||||
|
||||
|
||||
|
||||
2
AMM/71 - Run Up.md
Normal file
2
AMM/71 - Run Up.md
Normal file
@ -0,0 +1,2 @@
|
||||
ATA Codes Noise Control Sheet
|
||||
![[ATA Code Liste Run-Up.jpg]]
|
||||
59
AMM/72 - Fan.md
Normal file
59
AMM/72 - Fan.md
Normal file
@ -0,0 +1,59 @@
|
||||
---
|
||||
created: 2023-07-16T05:22:22+02:00
|
||||
updated: 2025-04-20T05:18
|
||||
---
|
||||
|
||||
# CFM56-5A
|
||||
|
||||
|
||||
|
||||
|
||||
# PW1100
|
||||
|
||||
| Task | Ref |
|
||||
| --------------------------------------- | ---------------- |
|
||||
| Visual Insp Fan Blade Polyurethane Coat | 71-11-03-220-805 |
|
||||
|
||||
|
||||
# CFM 56-5B
|
||||
### Fan Blade Inspection
|
||||
|
||||
#### Leading Edge Tip Curl
|
||||
There is not limit on the quantity of blades damaged when the tip curl does not extend more than dimension X1=0.5 IN. (13 MM) across the blade tip and not more than dimension X=0.5 IN. (13 MM), along the leading edge. Maximum deflection from original contour is dimension Y=0.25 IN. (6.35 MM).
|
||||
|
||||
A maximum of 6 blades can have tip curl up to dimension X1=1.3 IN. (33 MM) across the blade tip and dimension X=2 IN. (51 MM) along the leading edge with maximum deflection from original contour dimension Y=0.6 IN. (15 MM). Not more than 3 blades to these increased limits can be adjacent.
|
||||
|
||||
In all cases, deflection tip angle must not be more than 60 deg (60 deg) 60 degrees from original airfoil. Replace pair of blades if not in the limits Ref. AMM TASK 72-21-00-300-028
|
||||
|
||||
No continued in-service extension is permitted.
|
||||
See sheet 2 of Ref. Fig. Fan Rotor Blades - Local Distortions
|
||||
|
||||
#### Trailing Edge Tip Curl
|
||||
There is not limit on the quantity of blades impacted when the tip curl does not extend more than dimension Z1 =0.5IN. (13 MM) across the blade tip and not more than dimension Z =0.5 IN. (13 MM) with maximum deflection from original contour dimension Y1=0.25 IN. (6.35 MM).
|
||||
|
||||
A maximum of 5 blades can have tip curl up to dimension Z1=1 IN. (25.4 MM) across the blade tip and up to dimension Z=1 IN. (25.4MM) along the trailing edge with maximum deflection from original contour dimension Y1=0.3 IN. (7.62 MM).
|
||||
|
||||
No more than 3 blades to these increased limits can be adjacent. Replace pair of blades if not in the limits Ref. AMM TASK 72-21-00-300-028.
|
||||
|
||||
No continued in-service extension is permitted.
|
||||
See sheet 2 of Ref. Fig. Fan Rotor Blades - Local Distortions
|
||||
|
||||
#### Shingled midspan shrouds
|
||||
**NOTE:** Shingled means that the midspan shrouds are still overlapped.
|
||||
Not serviceable.
|
||||
Refer to over-serviceable-limit extensions Ref. AMM TASK 72-00-00-200-025.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
![[Pasted image 20230716052112.png]]
|
||||
|
||||
![[Pasted image 20230716052432.png]]
|
||||
|
||||
![[Pasted image 20230716052519.png]]
|
||||
|
||||
![[Pasted image 20230716052549.png]]
|
||||
|
||||
![[Pasted image 20230716052642.png]]
|
||||
41
AMM/73 - Engine Fuel.md
Normal file
41
AMM/73 - Engine Fuel.md
Normal file
@ -0,0 +1,41 @@
|
||||
---
|
||||
created: 2023-01-16T08:00:06+01:00
|
||||
updated: 2024-02-16T09:53:54+01:00
|
||||
---
|
||||
## V2500
|
||||
|
||||
## SBs
|
||||
|
||||
| SB | |
|
||||
| ------- | ------------------------ |
|
||||
| 73-1138 | EEC SCN23 Software Stand |
|
||||
|
||||
| EEC Softw | EEC PN | Data Plug |
|
||||
| --------- | ------------------------------------------ | --------- |
|
||||
| SCN21/AA | 824972-xx-022 or 808050-x-068 | 2A3106 |
|
||||
| SCN22/AB | 824972-xx-024 or 808050-x-070 or 2A4346 | 2A4378 |
|
||||
| SCN23/AC | 824972-xx-026 or 808050-x-072 or 2A610 | |
|
||||
|
||||
## 73-10
|
||||
#### Functional Test Fuel Recirculation Cooling
|
||||
Label Call-up
|
||||
- 07C/1/245/01 -- Engine 1
|
||||
- 07C/2/245/10 -- Engine 2
|
||||
Only bits 28 - 14, ignore 13 - 11
|
||||
Add SET Bit Values
|
||||
|
||||
| 28 | 27 | 26 | 25 | 24 | 23 | 22 | 21 | 20 | 19 | 18 | 17 | 16 | 15 | 14 |
|
||||
|---- | ---- | ---- | ---- | ---- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
||||
| 16384 | 8192 | 4096 | 2048 | 1024 | 512 | 256 | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
|
||||
$$
|
||||
\text{Valve Position \%} = \frac{\text{added up Value}} {32768} \times 128
|
||||
$$
|
||||
|
||||
Make sure the calculated value is more than 10%
|
||||
|
||||
![[73-13-42_Functional Test of the Fuel Recirculation Cooling System with AIDS.pdf]]
|
||||
|
||||
______________________________________________________________________________
|
||||
|
||||
|
||||
|
||||
16
AMM/78 - Exhaust.md
Normal file
16
AMM/78 - Exhaust.md
Normal file
@ -0,0 +1,16 @@
|
||||
## 78-30 Trust Reverser
|
||||
### 78-32 T/R Halves
|
||||
78-32-30 Cascade
|
||||
78-32-32 Blocker Door Links
|
||||
78-32-33 Blocker Door
|
||||
78-32-34 Sleeve Translating
|
||||
78-32-41 Thermal Insulation Blankets
|
||||
|
||||
### PW1100
|
||||
Repair Thermal Insulation Blankets 78-32-00-300-802-A
|
||||
RTV88, RTV9910, SS4004P
|
||||
|
||||
Studs CB9461CT3CR8NV
|
||||
Adhesive EA9321
|
||||
|
||||
|
||||
4
AMM/79 - Oil.md
Normal file
4
AMM/79 - Oil.md
Normal file
@ -0,0 +1,4 @@
|
||||
## Oil Service
|
||||
### PW1100
|
||||
- 79-00-00-03 / 79-00-00-610-801-A
|
||||
|
||||
41
AMM/80 - Starting.md
Normal file
41
AMM/80 - Starting.md
Normal file
@ -0,0 +1,41 @@
|
||||
## PW11
|
||||
### 80-11-00 Starting
|
||||
80-11-00-03
|
||||
Fill Starter with Oil 80-11-00-600-801-A
|
||||
Fill 473ml - 591ml (16fl.oz. - 20fl.oz.)
|
||||
|
||||
80-11-01 Starter
|
||||
80-11-02 MagPlug
|
||||
80-11-03 Start Valve
|
||||
80-11-04 Speed Sensor
|
||||
### 80-11-49 Starter Duct
|
||||
#### Inspection GVI LWR STARTER DUCT
|
||||
Ref. AMM 80-11-00-210-801-A
|
||||
[TASK](https://airnavx.lht.ham.dlh.de/airnavx/document/635628_SGML_C/toc?itemId=635628_SGML_C_EN80114900080200&itemType=DATAMODULE&wc=actype:A318;actype:A319;actype:A320;actype:A321;customization:DLH;doctype:AMM;tailNumber:N10304)
|
||||
|
||||
![[lwr_starter_duct.png]]
|
||||
|
||||
| | | |
|
||||
| --------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Lower duct cracks around the clevis weld seam | If the total crack length is equal to 1.50 in. (38.10 mm) or less. Do an inspection of the crack every 1000 flight cycles to measure the crack length | Permitted (continue in service). |
|
||||
| | If the total crack length is equal to 2.30 in. (58.42 mm) or less but more than 1.50 in. (38.10 mm), continue in service. Do an inspection of the crack every 500 flight cycles to measure the crack length | Permitted (continue in service). |
|
||||
| | If the total crack length is equal to 3.00 in. (76.20 mm) or less but more than 2.30 in. (58.42 mm), continue in service. Do an inspection of the crack every 100 flight cycles to measure the crack length | Permitted (continue in service). |
|
||||
| | If the total crack length is more than 3.00 in. (76.20 mm)<br><br>Ref. Fig. Total Crack Permitted | Not permitted (Remove the duct from service within ten flight cycles) [Ref. AMM TASK 80-11-49-000-802](https://airnavx.lht.ham.dlh.de/airnavx/document/635628_SGML_C/toc?itemId=635628_SGML_C_EN80114900080200&itemType=DATAMODULE&wc=actype:A318;actype:A319;actype:A320;actype:A321;customization:DLH;doctype:AMM;tailNumber:N10304) and Ref. AMM TASK 80-11-49-400-802. |
|
||||
|
||||
| | | |
|
||||
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| Round bottom dents | Dents in zone 1 that are less than 0.100 in. (2.540 mm) in depth and 3.000 in. (76.200 mm) or more to the nearest edge of a different dent are permitted | Permitted. |
|
||||
| | Dents in zone 1 that are 0.100 in. (2.540 mm) in depth and less than 0.250 in. (6.350 mm), and more than ten times the depth across, and 3.00 in. (76.200 mm) or more to the nearest edge of a different dent are permitted with a 1000 flight cycle reinspection | Not permitted. Replace the duct Ref. AMM TASK 80-11-49-000-802 and [Ref. AMM TASK 80-11-49-400-802](https://airnavx.lht.ham.dlh.de/airnavx/document/635628_SGML_C/toc?itemId=635628_SGML_C_EN80114940080200&itemType=DATAMODULE&wc=actype:A318;actype:A319;actype:A320;actype:A321;customization:DLH;doctype:AMM;tailNumber:N10304). |
|
||||
| | Dents in zone 2 that are 0.250 in. (6.350 mm) in depth or less and more than ten times the depth across, and 3.00 in. (76.200 mm) or more to the nearest edge of a different dent are permitted | |
|
||||
| | Dents in zone 1 and zone 2 that are more than 0.250 in. (6.350 mm) or less than ten times the depth across are not permitted<br><br>Ref. Fig. GVI of the Engine Starting System | |
|
||||
| Nicks or scratches | Up to 0.025 in. (0.63 mm) depth or less | Permitted. |
|
||||
|
||||
|
||||
| EXAMINE | DAMAGE | DISPOSITION |
|
||||
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| The starter ducts (upper and lower) for: | | |
|
||||
| Looseness or incorrect assembly | Any amount | Not permitted. Tighten or reassemble as necessary [Ref. AMM TASK 80-11-49-400-802](https://airnavx2.lht.ham.dlh.de/airnavx/document/658069_SGML_C/toc?itemId=658069_SGML_C_EN80114940080200&itemType=DATAMODULE&wc=actype:A318;actype:A319;actype:A320;actype:A321;customization:DLH;doctype:AMM). |
|
||||
| Round bottom dents | Dents in zone 1 that are less than 0.100 in. (2.540 mm) in depth and 3.000 in. (76.200 mm) or more to the nearest edge of a different dent | Permitted. |
|
||||
| | Dents in zone 1 that are 0.100 in. (2.540 mm) in depth and less than 0.250 in. (6.350 mm) and more than ten times the depth across, and 3.00 in. (76.200 mm) or more to the nearest edge of a different dent | Permitted with a re-inspection interval of 1000 flight cycles. |
|
||||
| | Dents in zone 2 that are 0.250 in. (6.350 mm) in depth or less and more than ten times the depth across, and 3.00 in. (76.200 mm) or more to the nearest edge of a different dent | Permitted. |
|
||||
| | Dents in zone 1 and zone 2 that are more than 0.250 in. (6.350 mm) or less than ten times the depth across<br><br>Ref. Fig. GVI of the Engine Starting System | Not permitted. Replace the duct [Ref. AMM TASK 80-11-49-000-802](https://airnavx2.lht.ham.dlh.de/airnavx/document/658069_SGML_C/toc?itemId=658069_SGML_C_EN80114900080200&itemType=DATAMODULE&wc=actype:A318;actype:A319;actype:A320;actype:A321;customization:DLH;doctype:AMM) and |
|
||||
37
AMM/AMOS.md
Normal file
37
AMM/AMOS.md
Normal file
@ -0,0 +1,37 @@
|
||||
---
|
||||
created: 2024-02-16T09:53:54+01:00
|
||||
updated: 2024-02-16T09:53:54+01:00
|
||||
---
|
||||
### 5\.11 Ad Hoc JIC
|
||||
|
||||
Mit dieser Funktion werden Taskcards für wiederkehrende Nachkontrollen (O-Items) erstellt. Dies erfolgt bei LHA durch die CAMO ( TCC ) !
|
||||
|
||||
#### Erstellung bei LHA
|
||||
|
||||
Wir erstellen eine W/O der Ursprungsbeanstandung und stellen diese mittels Transfer zurück. Wir informieren die CAMO mittels Eintrag in den Action-Text (TLB oder AMOS) *„ATT TCC: INITIATE REPETITIV INSPECTION ITEM WITH INTRVAL X” oder“ATT. TCC: INITIATE MMP WITH INTERVAL X”.* Es wird ein TAQ (Query) erstellt in dem dann das TCC auf die Erfordernis eines Ad Hoc JIC aufmerksam gemacht wird. (plus Tel. und/oder CAMO-App). Hier sollten grundlegende Infos über MEL-Ref, Documents, Maßnahme und Timeframe, wenn möglich, enthalten sein.
|
||||
|
||||
#### Durchführung
|
||||
|
||||
Die Durchführung eines Ad Hoc JIC wird mittels W/P beauftragt. Es handelt sich um eine Taskcard mit der jeweiligen Aufgabe. Die Ausführung wird im W/S durch das Symbol bescheinigt und dann die Taskcard mit (links) geschlossen. Damit wird das Ad Hoc JIC nicht etwa gelöscht, sondern wird mit dem nächsten Termin wieder neu beauftragt. Im Ad Hoc JIC existiert in der Planning View eine Verlinkung zum Ursprünglichen DD.
|
||||
|
||||
#### Erledigung
|
||||
|
||||
Wird das auslösende DD erledigt (Repair/Change), wird die CAMO automatisch mittels Mail darüber informiert. Zur Sicherheit, kann man dem TCC auch telefonisch und Query darüber informieren, dass ein bestehendes Ad Hoc JIC gelöscht werden kann.
|
||||
|
||||
#### Änderungen
|
||||
|
||||
Ergeben sich bei der Durchführung eines Ad Hoc JIC ́s Befund-Änderungen: Die zum Ad Hoc JIC zugehörige Transfered W/O ist als Verlinkung in der Planning View sichtbar. Diese W/O muss von der CAMO bzw. der Rolle LMA (BL, PPS) ins W/P eingefügt werden, damit man sie bearbeiten darf. In dieser Ursprungs-W/O wird eine neue Action erstellt, in der die Befundänderung festgehalten wird. Hierbei ist zu beachten, dass eine Befundänderung ggf. Limits und Vorgaben (z.B. auch CRAS) beeinflussen kann und Berücksichtigung finden muss! Hier muss das TCC telefonisch über den neuen Befund informiert werden, um sicherzustellen, das die Ursprungs-W/O weiter als DD verbleiben kann, oder ggf. der Termin angepasst werden muss. Mit dem Wortlaut im Action Text *„ATT TCC. CORRECT RELATED AD HOC JIC“* wird dem TCC zusätzlich kenntlich gemacht, dass das Ad Hoc JIC an sich, für zukünftige Kontrollen, angepasst werden muss. Die Ursprungs-W/O muss nun auch einen neuen „ACTIVE TRANSFER“ erhalten. Der Termin bleibt unverändert, oder wird gem. TCC, CRAS etc. entsprechend angepasst. Hier ist auch wieder das Approval durch die CAMO, mittels Deassign vom W/P erforderlich, wie bei jedem anderen Transfer. Die Taskcard des Ad Hoc JIC wird, wie zuvor beschrieben, bescheinigt.
|
||||
|
||||
### 5\.12 Schedule W/O & Briefing Card
|
||||
|
||||
Mit der Funktion „Scheduled W/O“ können W/O ́s für einmalige Nachkontrollen oder Instandhaltungs Tätigkeiten erstellt werden. z.B. Fuel Filter Wechsel, nach Tankarbeiten, o.ä.
|
||||
Mit der Unterfunktion „Briefing Cards“ können Additional Crew Infos generiert werden. Anders, als mit „normalen“ DDs, wird das Due Date hier bis zum letztmöglichen Zeitpunkt ausgereizt, bevor die W/O zur Erledigung geplant wird, bzw. Briefing Cards werden von der CAMO selbst gelöscht.
|
||||
|
||||
Beide werden über die APN1418 und den Schalter „New System W/O“ erstellt. (***Nicht*** über die APN 58 ! ) Im Wizard Step 6 „Work performed“ >>> „NO“ anhaken!
|
||||
|
||||
Achtung! Beim Step 7 „Initial Due Information“ wird KEIN Time-Frame eingetragen, sondern das Datum des Endtermins, die Total Aircraft-Hours und/oder die Total Aircraft-Cycles! (nutze hierzu auch die Instant Information durch Links-Klick auf die A/C-Reg im entspr. Wizard-Step) Der zu vergebende Termin ist entweder über den Auftrag angewiesen, oder wird mit der CAMO (TCC ) abgesprochen. Soll sie auf z.B. unbestimmte Zeit laufen, trägt man im Feld Due Date „No Limit“ ein.
|
||||
|
||||
Und bitte **keine Classification (M,I,H)** eintragen! Sonst landet es in der HIL nicht unter "Additional Crew Info"!
|
||||
|
||||
### Dent & Buckle Chart
|
||||
APN 786
|
||||
78
AMM/PW1100 - Fan Blade inspection.md
Normal file
78
AMM/PW1100 - Fan Blade inspection.md
Normal file
@ -0,0 +1,78 @@
|
||||
Use this procedure to do a visual inspection of the flow path surface of the fan blade polyurethane-coat.
|
||||
|
||||
For visual examination of the polyurethane-coated area of the fan-blade root, refer to TASK 72-11-03-210-801-A.
|
||||
|
||||
For more information about fan blade examination, refer to TASK 72-11-03-220-803-A.
|
||||
|
||||
For more information about the fan rotor assembly, refer to 72-11-00-00
|
||||
|
||||
SUBTASK 72-11-03-220-056-A
|
||||
|
||||
A. Inspection of the Fan Blade Polyurethane Coat (Flow Path only)
|
||||
|
||||
For the inspection limits, refer to Table 1: Visual Inspection of the Fan Blade for Erosion:
|
||||
|
||||
``` ad-note
|
||||
The flow path surface is the part of the blade that you can see when the blade is installed in the engine.
|
||||
```
|
||||
|
||||
``` ad-note
|
||||
Area D extends 0.5 in. (12.7 mm) from the top of the platform along the blade and 0.5 in. (12.7 mm) from the side of the blade along the platform.
|
||||
```
|
||||
|
||||
``` ad-note
|
||||
The polyurethane coat is black, the primer is green and the base metal is silver or gray in color.
|
||||
```
|
||||
|
||||
(a) If the missing coat areas do not show the base metal, you can extend the cycle limits by ten more cycles.
|
||||
|
||||
(b) Repair the blades that you removed from service because of the missing coat and put them back in service.
|
||||
|
||||
![[PW_Coating_01.jpeg]]
|
||||
|
||||
![[PW_Coating_02.jpeg]]
|
||||
|
||||
![[PW_Coating_03.jpeg]]
|
||||
|
||||
| EXAMINE | DAMAGE | DISPOSITION |
|
||||
| --- | --- | --- |
|
||||
| The polyurethane coat of the fan blade (1): | | |
|
||||
| All areas for: | | |
|
||||
| Missing polyurethane coat without the primer or the base metal shown | Any quantity. | Permitted for local FOD. For erosion Ref. AMM TASK 72-11-03-210-802. |
|
||||
| Missing polyurethane coat with the primer or the base metal shown | The primer or the base metal you can see less than 1.00 in.2 (645.16 mm2). | See the specified area shown in this procedure. |
|
||||
| | More than 1.00 in.2 (645.16 mm2) of the primer or the base metal that you can see for each side of the fan blade. | Not permitted. Repair or replace the blade in 750 cycles. The repaired coat must not be more than a total of 10.0 in. (254.00 mm) of the radial height on the full blade set, all quantities axially. See additional requirements for Areas D, E, X and Y. |
|
||||
| | More than 9.00 in.2 (5806.44 mm2) of the primer or the base metal that you can see for each side of the fan blade. The limits for Areas A thru E above stay applicable. | Not permitted. Repair or replace the blade in 50 cycles. The repaired coat must not be more than a total of 10.0 in. (254.00 mm) of the radial height on the full blade set, all quantities axially. See additional requirements for Area D. |
|
||||
| | Polyurethane coat that is lifted or has loss of bond. | Not permitted. In ten cycles, cut away the coat that is lifted or has loss of bond by the requirements specified in Para. 4.A.(2) Ref. AMM TASK 72-11-03-320-804. Examine the primer or the base metal that you can see to the limits specified above. |
|
||||
| ==NOTE==: <br>For the repair procedures of the fan blade polyurethane coat, refer to Para. 4.B. | | |
|
||||
| Nodules in the coat area (a nodule is a small, rounded, raised lump of coat material that can occur during the manufacturing process) | Nodules in coat must be smooth, continuous and not move with light pressure. | Permitted. |
|
||||
| Scuff marks or streaks in the coat area (scuff marks and streaks are superficial marks caused by the coated surfaces that rub against each other) | All quantities that do not show primer or base metal. | Permitted. |
|
||||
| Blend areas on the coat (can occur during the manufacturing process and can have a matte gray finish) | All quantities that do not show primer or base metal. | Permitted. |
|
||||
| Coat nicks, pits and scratches | All quantities that do not show primer or base metal. | Permitted. |
|
||||
| Area A | All the primer or the base metal that you can see, 1.00 in.2 (645.16 mm2) or less. | Not permitted. Repair or replace the blade in 2600 cycles. See "Area A adjacent to the blade tip". For areas more than 1.00 in.2 (645.16 mm2), see the "All Areas" section. |
|
||||
| Area A adjacent to the blade tip | All the primer or the base metal that you can see is not more than 0.0078 in.2 (5.03 mm2) for each side of the blade that is immediately adjacent to the blade tip. The total area does not include the plasma spray tip treatment surface area. It is not necessary for the edges of the plasma coat on the fan blade tip to have polyurethane coat. | Permitted. If the damage is not in the limits, repair or replace the blade in 2600 cycles. |
|
||||
| Area B | All the primer or the base metal that you can see, 1.00 in.2 (645.16 mm2) or less. | Not permitted. Repair or replace the blade in 1100 cycles. For areas more than 1.00 in.2 (645.16 mm2), see the "All Areas" section. |
|
||||
| Area C | All the primer or the base metal that you can see, 1.00 in.2 (645.16 mm2) or less. | Not permitted. Repair or replace the blade in 1100 cycles. For areas more than 1.00 in.2 (645.16 mm2), see the "All Areas" section. |
|
||||
| Area D | All the primer or the base metal that you can see. | Not permitted. If the galvanic isolation is not done or it is not checked, repair or replace the blade in five cycles. If the galvanic isolation is done, repair the blade in 35 cycles. Do a check for the galvanic isolation Ref. AMM TASK 72-11-03-210-803. |
|
||||
| Area E | All the primer or the base metal that you can see, 1.00 in.2 (645.16 mm2) or less. | Not permitted. If the galvanic isolation is not done or it is not checked, repair or replace the blade in 50 cycles. If the galvanic isolation is done, repair the blade in 1100 cycles. Do a check for the galvanic isolation Ref. AMM TASK 72-11-03-210-803. For areas more than 1.00 in.2 (645.16 mm2) and with the galvanic isolation, see the "All Areas" section. |
|
||||
| Area E adjacent to the blade tip | All the primer or the base metal that you can see is not more than 0.0031 in.2 (2.00 mm2) for each side of the blade that is immediately adjacent to the blade tip. The total area does not include the plasma spray tip treatment surface area. | Permitted. If not in limits and if the galvanic isolation is not done or it is not checked, repair or replace the blade in 50 cycles. If the galvanic isolation is done, repair the blade in 1100 cycles. Do a check for the galvanic isolation Ref. AMM TASK 72-11-03-210-803. |
|
||||
| Area E adjacent to the Leading Edge (LE) sheath | Gaps between the polyurethane coat and the LE sheath not more than 0.010 in. (0.254 mm) in width and is not more than the length of the LE sheath. Erosion coat must be firmly attached with no visible primer or base metal. | Permitted. If not in limits and if the galvanic isolation is not done or it is not checked, repair or replace the blade in 50 cycles. If the galvanic isolation is done, repair the blade in 1100 cycles. Do a check for the galvanic isolation Ref. AMM TASK 72-11-03-210-803. |
|
||||
| Area X of the platform, 2.0 in. (50.8 mm) or less from the ground tab | All the primer or the base metal that you can see. | Not permitted. If the galvanic isolation is not done or it is not checked, repair or replace the blade in 50 cycles. If the galvanic isolation is done, repair the blade in 1100 cycles. Do a check for the galvanic isolation Ref. AMM TASK 72-11-03-210-803. |
|
||||
| Area Y airfoil area at the Trailing Edge (TE) tip | All the primer or the base metal that you can see. | Permitted. In ten cycles, cut away the coat that is lifted or has loss of bond by the requirements specified in Para. 4.A.(2) Ref. AMM TASK 72-11-03-320-804. |
|
||||
| Area Z | Coating cracks or gaps. | Not permitted. Remove the blade from service immediately. |
|
||||
| Gaps or cracks in coating may be a sign of disbond on the fan blade cover. Refer Para. 4.E. for details Ref. AMM TASK 72-11-03-220-802. | | |
|
||||
| Area Z cover transition area for bubbled coating (air bubble under polyurethane coating). Completely or partially in the cover transition area. An air bubble can have burst showing an area of coating disbond | One bubble total of 0.500 in. (12.700 mm) maximum length parallel to the cover edge. | Not permitted. Remove the blade from service in ten cycles. Every two cycle inspect the blade for signs of disbond as specified in Para. 4.E. Ref. AMM TASK 72-11-03-220-802. Make sure there is no growth of the bubble currently identified or any additional bubbles on the cover perimeter. If the blade is found with any of the above damage, remove the blade from service immediately. |
|
||||
| | More than one bubble or any bubble beyond 0.500 in. (12.700 mm) length parallel to the cover edge. | Not permitted. Remove the blade from service immediately. |
|
||||
|
||||
Table - Table 1: Visual Inspection of the Fan Blade for Erosion
|
||||
|
||||
SUBTASK 72-11-03-320-053-A
|
||||
|
||||
B. Repair the polyurethane coat of the fan blade (1) as follows:
|
||||
|
||||
(1) Damage to the polyurethane coat that does not go through the coat and does not show the primer or the base metal is permitted. No repair is necessary Ref. AMM TASK 72-11-03-210-802.
|
||||
|
||||
(2) If the damage shows the primer but does not show the base metal, do an erosion coat touch-up repair of the fan blade assembly with the coating, polyurethane, erosion resistant (Material Ref. P05-154) Ref. AMM TASK 72-11-03-320-804.
|
||||
|
||||
(3) If the damage shows the primer or the base metal, do an erosion coat touch-up repair of the fan blade assembly with the epoxy (Material Ref. P05-492) Ref. AMM TASK 72-11-03-320-805.
|
||||
|
||||
(4) For the fan blades that must be removed and replaced in Table 1 [Ref. AMM TASK 72-11-03-000-801](https://airnavx.lht.ham.dlh.de/airnavx/document/699554_SGML_C/toc?itemId=699554_SGML_C_EN72110300080100&itemType=DATAMODULE&wc=FSN:109;actype:A318;actype:A319;actype:A320;actype:A321;customization:DLH;doctype:AMM;tailNumber:N8383) and Ref. AMM TASK 72-11-03-400-801.
|
||||
23
AMOS.md
Normal file
23
AMOS.md
Normal file
@ -0,0 +1,23 @@
|
||||
---
|
||||
created: 2024-10-24T11:09
|
||||
updated: 2024-10-24T11:09
|
||||
---
|
||||
# AMOS
|
||||
|
||||
## APNs
|
||||
| Description | # |
|
||||
| ---------------------- | ---- |
|
||||
| Certificate Management | 2740 |
|
||||
| eSealing | 1747 |
|
||||
| eSealing | 2524 |
|
||||
| Swap Rotable | 2130 |
|
||||
| Staff Report | 146 |
|
||||
| CR Teile | 1206 |
|
||||
| Dent & Buckle Chart | 786 |
|
||||
| | |
|
||||
|
||||
NOTE: IF "S/N: P772449" IS NOT INSTALLED TRY TO FIND ON ALL POSSIBLE POSITION. IF "S/N: P772449" IS FOUND ON OTHER POSITION, SWAP ROTABLE VIA APN 2130. OTHERWISE REPORT INSTALLED P/N AND S/N OF ALL OTHER POSITIONS PER TAQ TO E_LABELBOOK.
|
||||
|
||||
### Ausbauteil Form 1 erstellen
|
||||
AMOS Manual Seite 946
|
||||
|
||||
9
Alpha Call-Up List.md
Normal file
9
Alpha Call-Up List.md
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
## 21
|
||||
|
||||
| Call-Up | Cont | Unit | Comment |
|
||||
| ------- | ---- | ------ | --------------------- |
|
||||
| COT | ACSC | DEG C | Pack Comp Outlet Temp |
|
||||
| PDC | CPC | PSI | Cabin Diff Pressure |
|
||||
| VSCB | CPC | ft/min | Cabin v/s |
|
||||
| OVP | CPC | % | Outflow VLV Pos |
|
||||
1
Aviatar.md
Normal file
1
Aviatar.md
Normal file
@ -0,0 +1 @@
|
||||
<http://www.aviatar.com/en/Login-AVIATAR>
|
||||
8
EO/EO 340636.md
Normal file
8
EO/EO 340636.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
Title: A321 V2500 - Bleed System Configuration
|
||||
---
|
||||
|
||||
|
||||
Bleed System Config A321 - V2500
|
||||
|
||||
![[eo340636r03.pdf]]
|
||||
10
EO/EO 342978.md
Normal file
10
EO/EO 342978.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
Title: Deactivation Heated Floor Panels
|
||||
created:
|
||||
---
|
||||
|
||||
REV 04
|
||||
|
||||
Deactivation Procedure of Heated Floor Panels
|
||||
|
||||
!\[\[eo342978r04.pdf\]\]
|
||||
7
EO/EO 343265.md
Normal file
7
EO/EO 343265.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
Title: V2500 C-Check
|
||||
created: 2024-02-16T09:53:54+01:00
|
||||
updated: 2024-02-16T09:53:54+01:00
|
||||
---
|
||||
|
||||
![[eo343265.pdf]]
|
||||
13
EO/EO 356329.md
Normal file
13
EO/EO 356329.md
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
Title: A320 Technical Markings
|
||||
created: 2023-01-04T13:41:39+01:00
|
||||
updated: 2024-02-16T09:53:54+01:00
|
||||
---
|
||||
|
||||
Defering of Missing Placards:
|
||||
- EASA Required: 3 days
|
||||
- Caution / Danger / Warning: 10 days
|
||||
- Other Placards: 30 days
|
||||
- Panel numbering: 24 months
|
||||
|
||||
![[eo356329.pdf]]
|
||||
9
EO/EO 367283.md
Normal file
9
EO/EO 367283.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
created: 2023-12-19T17:32
|
||||
updated: 2023-12-19T18:16
|
||||
Title: Telair Cargo Loading System
|
||||
---
|
||||
|
||||
Title: Telair Cargo Loading System
|
||||
|
||||
Revision 03
|
||||
8
EOs.md
Normal file
8
EOs.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
updated: 2024-02-16T09:54:04+01:00
|
||||
created: 2023-01-04T13:40:44+01:00
|
||||
---
|
||||
|
||||
```dataview
|
||||
TABLE title AS "Title" FROM "EO"
|
||||
```
|
||||
172
Excalidraw/Drawing 2024-05-31 01.28.22.excalidraw.md
Normal file
172
Excalidraw/Drawing 2024-05-31 01.28.22.excalidraw.md
Normal file
@ -0,0 +1,172 @@
|
||||
---
|
||||
|
||||
excalidraw-plugin: parsed
|
||||
tags: [excalidraw]
|
||||
|
||||
---
|
||||
==⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠== You can decompress Drawing data with the command palette: 'Decompress current Excalidraw file'. For more info check in plugin settings under 'Saving'
|
||||
|
||||
|
||||
# Excalidraw Data
|
||||
## Text Elements
|
||||
## Embedded Files
|
||||
39e9f134d8521c5ad6e64e26cada0ffa4a7d9e9e: [[Pasted image 20230814214018.jpg]]
|
||||
|
||||
%%
|
||||
## Drawing
|
||||
```compressed-json
|
||||
N4KAkARALgngDgUwgLgAQQQDwMYEMA2AlgCYBOuA7hADTgQBuCpAzoQPYB2KqATLZMzYBXUtiRoIACyhQ4zZAHoFAc0JRJQgEYA6bGwC2CgF7N6hbEcK4OCtptbErHALRY8RMpWdx8Q1TdIEfARcZgRmBShcZQUebTiAZho6IIR9BA4oZm4AbXAwUDAiiBJuCAB2ACliAEYADQAhAGUAFmSiyFhEMsJ9aKR+YsxuZx4WgE5ByBgRhIBWGqmIChJ1
|
||||
|
||||
bjmABg2lyQRCZWluAA4E7QTx8bmeBJaEmp5xloA2cqXrZWDubfyBKFI2ADWCAAwmx8GxSGU/tZmHBcIFMu1ippcNgAcp/kIOMRQeDIRJoRxYfCMlAkZAAGaEfD4JqwT4SSSojSBckQZh/QEIADqq0k3EWP3ZnKBdJgDPQgg8bMxBw44WyaEFHQgbDh2DUMyVWyWmOx8uYitQHCENKWYQQxG4t3GGz4QsYLHYXCVCVeDqYrE4ADlOGIBS0HjxNi1Q
|
||||
|
||||
0shHBiLgoJaBeUavGagm5uVNsrioRmAARVIxq1oCkEMJLDHCOAASWIRpyAF0lpphNiAKLBdKZat1oVEDgA7gms1dtho2MFosIJZU4KVsrnBDjCk1G7EI5XGrYOa4YhPBBPFoIHhPPBRjYUwstXDlYjjOcDIXMdziVB5DpgdNFGo/TsqwjYrBlXAbBA+QAL6DIUGb5ug2BogAqg0DQxgAEgAKvoAAyAL4AASrgADi+D6ARbJdI+EAUoElrkFQSzDG
|
||||
|
||||
gzhzKcqZLFqqCjAkTzaEcWzXEcPBHLcVy7ksKzEGs2pzDsewHGSaBzC0bwcB8j7fCqHL/ECuIQmUADENQIHpelsiiaKlliOJglpBLkEScIImSE7UrS9KkVKpTmiKPJ8tw9qqR5YoSuyYJuUKsqSAaRpvqq6qagKOpCqZFZVrkX7FORuDpNOaD9vgSw/sQf4SLgNQyo2xDhX2po5XeCAjqgNRPBs4zlOMRxPE8RxLI6XouqgQkek6Pp+o+TxBnaTz
|
||||
|
||||
3Ll2a5rVfxCOOQoNmZLZpKSRrZeGkbRrVCY7UmK4tBsDFLN2vZZZVx1DkCkGFvgxZCnAbA/lkuQ/GAz4vipH2vSlRTvR0zhvkUzgbNoczfVMb2vWAAOgxD0Mfi+P2Qy+0M+S+MNg4jEN/UDaP/Tw4OvTjqNwxjhMvsToxwzUoPkx0lNxBJUMcZjHRI5TpxMyji5079UPOPJUM1OMvPI+jnNw9cosM7DUPBrTWNE/zgNgAeCts9jQuyyjPDlOrRTs
|
||||
|
||||
1DXMvmrrMG5rKOTHLnPS0LEtC+M+tgIb3Ms9TZvOxbL41B1QsIxrSvc47xsdEcts6zTIdFB7Lsm/bOtO7HHTy1HYAgzHXvJ08cPp+HJvZ1rGeB/n2svi0efJ3rqflBXRQPKXHRJrXYAJPH3tFxTUNutTYeK53KMHdTIt9/TUOBkPzehg377DwH/dl0c0+vrP5vFx0VxLz7ieZ9Hcyb1XzdzL7ruH1b3Md6PKNzMH1MtNva/RzfQvlyPfMow1t/3/
|
||||
|
||||
PHQNZvTzN+NTevc56XxfCNJePANgALbsnRmADU5jAAW7OWF835gLPibPeqCxYdHKAkSW2DiblGPibF+IC0Gh3wdbZuRx3Q6zga/HBRRbQQIYeQphYBxgwLrmw1e39mEFx1gkZuLVJZkL4aAjoFxJb/0YcTGoWwl53GbgolWCRgESIoe+RRqdngiMXqnK431PxLDgIEQ0IhwgvQ+toDYzULgON4ntBqbUIYgzsQ4xxPBnEbFca9dxDFyi7nKPGF4G
|
||||
|
||||
wFEJDsW42x4xIEMXqlseMboHgYKKCDBR4SGpHCOFw3WglGrRN8T7BMB5rjePjIdVJadbETFakfGoKZsmbHKM8QpB1dx2OIScS42T6pR3cc8DYRwkw1BaHMBq7FxkkLSbY6+Tx5j1WuAxBY4zgyFJGq1coviQlyQPHU9ZgYNjqL4imBIPADxcIOSNa+Ps6mQPUYIjo7i2rjCeFcFpCxdYvGaoUrZHiWpNTuHcH2vzNg3EgSuS4qZdZ42qXYtqdwjl
|
||||
|
||||
cOGXaco5zfkjXmMGLZOTFxcSoTYoZtxumBh9u1M5txokKOvkfcavFrhtXjILGxSZW45KOamCYEwUxUsXLuA6LQkzeK2A1QG6T6o3FbuMtqOSJiLl5Ryu4ALWqHRuHQp5tjiGpmyRC8YeKjlis1YK+YLTInDPGa89VMy7FzEaeylpQymUEo1R4vpqjDqLkiTy/xRr4y8XtWi4ZlxflHMOUmFpTVQzjx9b4pq1wiVTKangx51rQmtyGeMolvF2KFNe
|
||||
|
||||
dmwMgqti0KPv0mJwyDqLjknY0MxDDWNS4sGJqmTGrjQabm7JbpbWhjkviloVq4UXG5S0faYwLi7N5UfdiK57gtS4raUtoz7gRLOZ8lctrnUzNGYKvtXzaEnAtRu6pe1/U+wmGNdqubiHeIUTkvN7V5Uxo7amc4WyDwMSaYUlFTUIlvIYscqp7jtXhKTLEoZUrsmgomU1dqYyWn3H7YBoJKZamCtifxXivym3jRCUmOSB1u6PunUfV9eDWVrMfbEr
|
||||
|
||||
Zmwk2PAYnxT9XCUzzPau1S4BHCXQcFaMu05y5KPGZRq3DMHQyWouTkhD2hF0bDGXcKjbpHitSpQseZBrznSfYi2ql5x+MGpOIMhlWm506oUTadqsL0nBknV8hpB4FHENzZ8m1tb6VxLaQitFMrTWerkm4kxd5eimi2gABXMcwSx3Abp3RVPgUIUBQT6H0GoPMQXHqIjQDjFq08jFsxAmBIUpQJDKDYFAHgAAxAA8rgbkABBBoWFrwAC1NAADVvTA
|
||||
|
||||
yEDMJYJEyjkRqp4aiQpaKsQTPEEOEAWIAxG5Eu0xz+JYr6iqESYk6qfUgLsfYhwlQpogO8CUq3hTqRBBZfE6BdL6XO0ZVE6I9TmTxFCayxI7JsknE5cULkgpWncod3kol+RoDxgdrk/l3vSl1MIOUCoBRLDVKiGK2p9sJUrB2Cc5AMqQXWvl38Q2ds8BKmZcqZ0ByqT6wKLhNxr7qP211Z0xxOqemdL6Dg/o0CpkeB4sYk0czBDzNwWa80VSLWbK
|
||||
|
||||
2VaFUifFAjFGHnSp4yJh9gxNqAOTqi6qtFy6tVIv8+KA9J61YH5pxzs3Zw3DobCLkfzO+qd6KG8tzXM3KMAaraBvVYx5CIBmIVJY3XhL7GeKcWS3xKa4XMfObOoJ0mkkCeteNG4M3skAtiT5mNboBUPE2CmQ6Jwbi+dd6wfQgWYwhY96yUct1NeQBixyeLiWZCWhS09ax/0FEQwBrIg2uX8jgUgAV9AABFCkDXCCkAANIAigACACpWKBBeBEFqAT
|
||||
|
||||
RcCROIvAUivXKKUDZENhp2gmJCgm/VReXFY98QEgeSPywvKukjpJDbMlUB4IUkpL4X2uSaROxAM7BlbwC6u6ZbEr/7swi2SkjPaOTA5lCuSfZ3geQ/bLYA5qRA7OTgEfZ44Q6GhQ5Cgw4aiwCxQI6YiJTI5ChpRo7K65RY7/hJBg746Q6E4q7FAWiQRlJxJjIA7U6cDHDTIMD06DRM6PjcZ2KLITT5ZTTc4zSkBzT1ilTLRtjPQ0EbSS7bQy4jIr
|
||||
|
||||
hnKPDHQ/inTGjnSDjDjXRjimKpYyFPh66O5pyG6HrQziKex65G5Lz0RfySJAyR5Ay27sKUyW4rxWH8LQyB7wyRyG5VLww2x27oyjKkxb6EL8znK2EjYRH26ty2GQKG5jIJG5zBH/TjJhEaKeEOHeEW5hEW6G7tTRF+FpFAxPABHOAeFJxlHTJAyxHoxvKkypGuH8zXxwwFGlHQxHRCxQKdECwGLUyt6aIcICxYKSy8LZFaIWF5FywGJJFjFdym4t
|
||||
|
||||
H27DpwzsT2FTH0TmGCqFEmHJH1H/RbJwybAbEjFcTHETHVHQzZJLwLCnGUyXBLzDqG4KKwpgC3AvFRJdwuHDGUxJgmFnIvEKIQI/GTEjEKJPwRz3HKy+KbxYKfFX5QzBz+EzEDzQn243GpzNG/H8wYaRHonoypi2EHFlGQkNEEn/TzK2GglXH0TIL24Hx9ETDUlmFkn/QdHLHoz1yW7+w4n27eIQIvG6L+FPHW7tEvFKLNzpySwUnvibyyktzUyH
|
||||
|
||||
w5wKn9qmGdEDH8zYlgnEwVHalXFslpIqLSlCwqJvEEydFtpjwKkxFwwszNyQJwxzGdHeJwzIkukmmWwKmQJLxVE7yqyekvjOmcmNyGlgDwmWlVxKmWmMykyWFXE+GVEqJhGXH+kYz5EKlG5hEkkWHZnW7RHxlplqkAwWkhlAwVF+nWHAmW72l9FhkCyZlRnm6Jx+Yqju4WLmIN6pqeIXB+4qp+Le49ktTXr9mB4DILA+4PCLq9mHqAZBjZINTEIm
|
||||
|
||||
rlESbUpYporConC7h1qxJ8QK4Vq3AhJjm2InCZ45KrJTrnCzknnTY2h7LzC+LhKfqQKQLlHBgwqPD1SfrzLZJBIvC/r8a1HuLKFjAlqHkhLPDHk2p9pXDxLBJmbmaap4ZvK2i1ojmlpDKHQLBXnpqNRoq/K6y8TwrnkMpNSFITnNTzBQq2itSRJOHuJ3Coa7jXyPC2j1RQXXAx7DqCq6wHTxocXPAFqtT3BXCRI/Ixr4b3B3lHKlKtwHKQULnnIM
|
||||
|
||||
rvm5oK62rlLNSPk5o+ojJ9rsT8aHmopUrCq1K+IwXzJcL0WSbBhErCwNKLnMFWUZIWXwbCzDrlpWVDJcTxjXzeKrhkpAWarzLBi1KrhnLNQSaNR6opjBgLlOItKrl8Q8QHRNRMaLpOW4ZbAvoUqrJfEsqorxKvEpLlF2gObzLtK2rCaJi5rh6QKBiZoph4IAaSbSaooNKXD3DqYTr1IPA/m3Dk7Hn3BtSfIiV4IepjJabTa0LzJuW2WrkJgNpjIN
|
||||
|
||||
TeJmrNWsq+LBhiW2oXAvC8pLI8WXBXD8QgZUqNTgWJiCpXA0WnUtR3CirqKLjhIQY6XwZ5q3Aep6rSYTqtRtRDJ6o4aya8rtTbINTvWtyDU+yphHLzJHyZ5AqnX6W3D8onIvmfqiXIXlENKPVQXZKYXzD4ZnrbII3qKnK2jH7vrXlJjvXeVcZhLtQLpXnmXmr9WbCIUNK0K2hnLhJHxbB9qDWsaLi1q7hTnHJUpvKHn1TCznJjLDqU2wW0Ktxob3
|
||||
|
||||
KTq8oJjSbPC0K6xKFs1ZXSYXDOXTo63nA2oJ6PCYreospjDTqC3aYvA3CDUCp9r8RbC0YIoLqBhKrg1/pyTMVKZqqaV+p2LCWU1a3wq7iPC8WhE6WtyJjMYB5I0hJi2vK9mxIVrlGwVUp7pCorjYqK2rE6WbLsWpjarsQ+xs38RW01qCpOIPBKY/lDLjQXBh6HmTU50lVjK8RJoh3zIPUtS1rhLzDGUnBa0SqvrAbGWvJeU+0LBjJJiGa1qgbQV9
|
||||
|
||||
KDXlIJhJIhIroZ7rK2j9XhLSZHxm2IV2inLDJx7J3/H9JuJX3+Ktl0EBYxYF6hbhYl5RbFAV5xYGDV7JYGFdnQxNnowcnOzt5FCd4lCQQlCYDAiIR1A96SAwRNAACamgTQVwpWuACD9A2ADQRgS+3QEgq+/WG+3ko2zEIwWNZw3Es2J+C2xQS2f2vA1+0k3kD+e2z+Gkx2Okn+hk9YP+N2/+VkgBJIiIDkNIYBEgEBbI8BQIMB9DcBfkiB4jyBlB
|
||||
|
||||
qBEU0O0U2B8OJYeBSOyUKO6UCAmUmhYuXeZBhUbQlB+o1BRjtBAgJOSotCw6atQSdOA0PUqSnBrjjOzOvUKYqFmwHBmYXOCAUuqAfOEhS0wu7YJBQoEuW0kEO0suOd1w7jSush2hV0EWeh90BhXuORJhvRZZ8MYREpPJmZiJ/JLxpMpZfJNipTMct9kA7ZYWnZ6WMaPuXiPiA5Lq7TvZI5LiK9JV4eeqqVdoUdltfGzUQalSySbSwskak9Dyz6Yq
|
||||
|
||||
DT7I99wWT9xeqAGux0sWVeSWteP9rTtTzeJRbeRQoEHe+W4D3oxATYxAMEbAWEwIAAVlAEIDwM1uWP8E8MhDAE8Ag7gyvhRIQzRAKCQ7vmQxvIfjxMfvNmfnQ9aA3FIFJJtqgIGZALtspGw0dndhIB/hdjwyZHwxwwIzZEI/ZIQaAQo5KEo1Ad9hfgw3SwgW9kgaDiFODmFFY5FJgXDitrgWWDo+lj9GRKjgY+jlod+KY+gLgHMHjpY2gWk8TttB
|
||||
|
||||
MtLXVS491NwFah491F47wbuA5YId+MIcE6IeIQtJIZE4YRjiqLEyEwk0oQsK1Ck+odE6rjoZk6XvoTrr/cTPk4buizMjmQDCqTmcbgU2c5om7hs1Ykc900OX2f08ZZmtlXUtRkckpi1LGsMmZiEi0tnpG7nvnggIXh2Y+Ns12Ls5/fs8QHXmlkYS+NwuGzWMAwUFc2UOVsoBwN6IhAAPpwBNBwD6CYCEA9v0AbDKANBNiEAwTlaAs9bAtUREP/Y0
|
||||
|
||||
zkYqh75TzTYwtzaCTwsMvlPFDrZMNoDos7aKSsNMvsO4unZcNf7Ii8OlT8PoCEiPbAEiOvYBQSPYsyPMMXsIBiM0tssqihQE51RqOw4aN8taMCtJRCt6PEGKsZhSs7ZPBytlRWPWt0F2OoCG1ujDIsFcE9RausFdtDTHBJgsavJn6BPTSQRhPmsRMrRRMIeQC2sKG7Ry42YcGpPWMXTusv1l5u45M+tQx+t9Eqzhs6lalLwSdXEBvQz6krNNOe6/
|
||||
|
||||
2Abxt9MB7RLeKhgIWTovDvoYX23DqzrnC+WWX5uTGrN54P3FvRseuv3l6VsJbVu1u344wBvAz6zNvnN5bfjgOkA1BwCWDAhVotYcAJD4C4S4TECYDjDEANBzv4MLvr6gvS7b5jbrs0zQtUNwvCQMswLIs35fBIuYtP6/uPvv43uXZEsPsktPsPZAHCOUuiPUuBSAd0HQEMtyOHb/utfBRAccsgfcvqMsQZJQcRiCtPjCtEFiuuuIf5TY4XiocgcY
|
||||
|
||||
e2PbSBis6zpn7EfcDuPEe6sCinKgUjT7bUciG0diECeC63OWtrQSvi6bR2uKF7QLBy5qE9izfl5q66GevZPeuxtTGieFMedYllMhslNg99Fyf6n+lvEyeKfRu5Pdk9kJsadtNqedMr2a1Zd4UXBH2DosU0XXwGoXpJ6S0jQHRNX0rnDmfCuFvWclvNNltZPRaOdf0HP17/eqw08tugPd4QDITIR1D4AACy3IAAjpUOWD3rgGL8QEYC0IRN4LhMhA
|
||||
|
||||
l+gAQ4uyl3VHrDvmu2Qy0hQ0ftu6frl79gGEi4e6i32iw1i2V7VxV+dtwwtPe2ZOV8+w1xSyqC9j15+7+9+/9ti977S/134Jywq6BxgcNzgWN/gbo4QaK4YytyUEh7gEcEt+h3d6t/E16vGGMNpSqNt2gJEuqwzqR2gC8AeHaIcpzjR7zhd+E0Lox1axnxAKx/E093Lgmm9xoYn+CHx1s8z1rkJ5z76wbpD9J5U1J0G/u43uD8rJmW8aMIbgv0sT
|
||||
|
||||
U43qTBGYUyrJUQqeYQDIA5J1fGEe6YU4mYgp0fSVyUMQf2AgkRv6v0UKf/v1cU4ajLydf8nHmZ0SYc4LWUD7GXLJmVRIvhj+9/bwtTCCJA81S9URspvErJeFnAtRAMjAIQRv9aSF/ZOKgLTIIIFOruJTi03rZxtke6nLppuj4gJgDosadRJZTko6VTU+9biEpSKRs1WcrabxHqm+RnUqUrOZJIflhqLlAqyYNFMLFxpBouaq5IFFxlTzGpv0qtWj
|
||||
|
||||
K1SuAUCD629N5PHQTwphBI5FBRONCuDnJ7K4eQKupiaSbV9KXEPEoSj7RbIxqAkdDAZgkoz1t2mbIZPZV+QTBLg3iXjCVQrrPlhmh1TaqKjyrdM3koyBtArUXDPA602bYDIdBUwvoDBwydNC+QWAApJkn6V4sLDRRbBKkuKVIeR21R7k3BZFNpucAp7tQTgzUPiInRjSsZv0sqY+g2igq+M6U2FI+ManKJQUbQISXsukKDpUZCkblSFGThvSNRK0
|
||||
|
||||
hSO0GNGag1pO6aKcGjT3NBrNH6ReJnj9xZ6V4q2NeGtocwIF1EIYPpM2F5zAAXMQGbbCQJUCaDjAe21QNgOMHwCkAe22AYEFWB5DjByslQNCKrxFZ9YNeg2bgG6DS6kM6IoyR2Fl39TUNd2pvJUIw1Rb5cSux7bFuV3xaO9v81XF3nbzd7ksQCzXFlooza6/B6W4Ixlr5G64tcfewfFRugRVA8sIOo3eKNoxg6Tc4OM3Zjkn3m7/hxgafMPon3oL
|
||||
|
||||
rA+0XCNFLEmL5sEWcAokjjwQFAjRIEvI/OkayCYhM6OAuC1o31u7GMW+D3NjokxDBHEuwLrJkb3wyb8cvWTHLYRwkB6gCTCmA4whD035VMWyuAhHip01To9/cJAo9F6kXqGdyiz1fKlwlRR2JMkGtQ6LMP8xWd1miwuzgJ3fp7N1hLnX+oDFGCeceexw9AFcKaDNYcICEfQEcGqzegYIRgYXoQCaBYQKQ3oHvO8PV7JdvhhfPWKu2KB74Tim7bLj
|
||||
|
||||
uxN7LYz8FvW/P/xVAwi0WcIu3giNvaQBjI12Grle2gD1d0Rb7QPjiMBzSNOuAfYkUH2KDAcuWYHLAiNzigqhEcdI2sAyIT7N88oBUaVtVnZFKibG7ILDu0mO5ootuBHHbsKP27/YwMWwYWEMmr5nda+ZreUQx2kLHi5CcTOMOx34gXB2Mb9bUTx3Sbq4B+jTIfkaJH4icpSlo0AcD3gnv8gYcnc0V4RVhoScixuMmIjHh6LDEecKHpsOQx6YYiBJ
|
||||
|
||||
EtHmRKdGDVfE8SMYBGl+oTAj6m1RcJR1ZQU5lmOeeYTZ1DH6iK2qwpzlGM2E4xuEOEiNocNba+cygTwYXkICaD0AcMkgYXuUGQgIMh8egegEPkwANYKQpYpLgNhVBDYf+IMHXjWJGASiDeW7UEU2PoavJIRt+D+EKE7H7YpGOLSyKdgQAGo7gVXQcSiOHFoins44ucZOJcl+8CR7XIkViIA59cFxA3JcRH3A6rj+W43TcVN3j7itlRe4hbvFwsZo
|
||||
|
||||
cORzfLkVtlAwvAck+HVxtwAcn58COd43gFJUaR3UXxJrc7u+ORAKivxH3FUfITb7/jT60aaLCBJ75fcwxBowwjjBgkowZOaZbCamWsJAD2SSRYkpmRrKADbCWRWkrvwUSz97cTcL/mEVOagCt+20wpu2JCITS9cs0oGMGVAHoC6iCpRAQDBoRLxVp/pTUtzEZKFMXppCW6RAkunITOEaxPab9Kbxdxpp6Et4q3BUQ+E7g3pOTgeAdKpxhYDpAIjz
|
||||
|
||||
E6I0CUYb00AUBI6AQDQBB0eUjmUpSFxJ45094pPB8JwCcizwP+KTIgT4zrpLcFfr9Kt5dwQBjM/+mXGxm/TNg7RO/pzONx6JOiR8bmQAmOkdBAwCpIoqnDdDNw82cscmVMWagQJoeeuE4OAJoQ+EeZVxTEqTAZkGk5OCAkRFvzlkcIWENuW6XdMwlTF+IvpW6SrHOTSy2ZWMp/v6RMmiydZzsvmTSXdlPEfpVxPBE8Sf54TS2BE1TpRNHKnVi0mQ
|
||||
|
||||
ypKDV9o6VIERyTYI+JlrzBUZgmB4FzT3q7InWFtQTKGBx591Zs2SAQY60FTjRtkRaONKdWvQxUPU0mXiOJUJQvAbMviLiD7D1ThVCkSqCtPxG9qT1PKUtFqOukgrNR2oLsuFHcB7S70M8eFfiG0leSjpyUkCRcA+kJSTpQwU1diBSnKLrJARYaUlHgiCSRVTUoSStCNDswFIY03oynKJTqr4oF0CacvorTjmRpeUNwUZI0hYkL0F0cuNufeluqPB
|
||||
|
||||
7MOletNcEDBzpiUvQtpqcluB9pqUY0asdaneR2IVqNFfqnqk8oHglUj5PtM8FfmRVRkLwOeW8mwzhIHgBg9qj3T5oVChqieQlOmkBGcVX55SL6lUIgrPA8krFJ2juRXJJCxgXyBZGtVGR4IraDSc4KOl6mCZDo3FfBa/LuropAFyaOPCIsFrvJeUzBRqNWjGEk15qZNHJK3Htpa0FgN1TIYyliSUdGMuaO6mEOYJBpeInlIJFp3Pr1IPMdaRueX3
|
||||
|
||||
L5HJW4daODG8n3TQYGoNE3NCjVMVxpoqENPVPGjPT4o/Ug1V+Z9TMpqYQFC6ShQ41agLkmowyXNLaHVrBgb0twXWJFS/SaUG6LSU+VBWIT4K7MM6E+kfVzYpL00TtGVNUoiS2pxk3KVubtUAXh5YK9UYpauErnbkSklgzCjPMfShhzkUqO0K1FloGDKKeCUMBKkIVLICK6GdDL2R9qlLcMT82NMMzaIxoFgWwdSpMh9jqJryrVMoXgh+qp5y0GFI
|
||||
|
||||
5VxgVq0Itkw6fpCszp4hjS2Q0viR/QEnf0OeRov2VHCnh7CExkkiQA1n3BZhMAnbZwKQBaxGAeAQ+crE2B4DlYgs5WcoO8McDpROAkBAyWQ3uB/CIWdEPyhZIbHG8hQCLNALaDsnHB3GTk7scOO0geSgUxUQlj5L/yojRxAUpru+xBzRTcRXIUKV12ZYft5xkARcWHyG4JSo+NI6DgQU95pT2pmU/8MCCPHcBO8nQZfN5B+DiTM+AoLdE2kpzCiB
|
||||
|
||||
QjpfqDq1L51RgU9NabA1NlF196ODfNqUyNb5/jZcyKMYJFG44DS++GuIFRBDKBBYNgdQfQHMGYD6AgstFcoIQEkCaA6gNQYXsLyeANZdJnw8sTirohEkXZ42MhiwnrEgj5sAOclagHWJjZWx1oSKLStt70rGVS87yb/luxuSRxgjTlZ7ypaRTeu2K8KfyoZYnsXJE43lRADFWqN4pK4qVeuNpGyrUo8qpkYqsKhZgVVTIgqbwEOh4VuKhqpUGM2K
|
||||
|
||||
B7czVwqRBdcC/JCEZRprS7q1JFyOrVRXUl1cckFRd92puo8CcsMH5/doJInUfoUxhlSlbicEpEpmVQluyqyn8KfnCVB5Cwr+tJVCb/wQmoT0Zv0s0U9OMKwCVEis5uOYQFL4zxiypOWNU1+k+E7ZnRB2XXABkGlJYFsjhHPTlhKz0J5hYWDaWJkIzLSPhLeDmQTA9wVEiAmIioiRmey9cVG+GeBt+nGqT4HpKmS6QwkayYebxBpA6Uo1Oy9cHOZ+
|
||||
|
||||
HDPAHekFi3MX9V4QPDUwQZORNTXbAdL0aOZVxLTdzGk2qa6Z4RHTX/G9ImbYNxm2ARZsVm2aUB9m8Yo5utgWaxErmlBIpogQgaYeCCXjfppf66xvSyGn2WJrWKnTVNcnKGYxrDLgzLSARG4CxrWJGaci0AyWYxuJnzAbS0/IoEWoemSzONXhOmb8JzJKaG2BWimWsVE0yalEhZLjWsUw2gaIELM2kiLLrhQa1pNM5aQglq3wDiZOGoHtgMzL0ajZ
|
||||
|
||||
lMKAVZpyIIDqY7WtMhxszJhkEwnxKbSKR43IDBiXWwYv603jJapiL/PFTmQ+mNxwtKWt4iFq43EzptXGumRdvQmIDytUxbjccWhntFoZopQTZLJe2SyHSJhDTfdvm02kDtgbFRHhvk42lEyxG+RFNONIJE8tVTaWQkXFnaz0NcRBUi/xsKMbtZ362wipom1b8GtaZbLSDpzJvrcJto/CfaP+S+5iBUFdiAJDGT+N1EfaaTNTqowqZZ6uc4ZHWmKF
|
||||
|
||||
GdAwAKf4sGl2WRJc+5SOQQCnIp4ZBkvIynM1DrR4ZG0KFWjJRwMHrdipsFSYTLXaFboJmHtQtCXLaS0UOasGcjvBjF39KBF4acaDBXIqpg3K5wfgbSgaFQ1u5ySf8gBM8rp595i5XNntEirjI8E5wcgSJjXkGCLdita+NCjORSVt6XaStPclLoGKqhSaYDOgrdDjUQ0HaSBK+kYpuhIqMGRzDHhLRbJmqNElQoWkrTFKDkNFCEg1FomD02mWFNqO
|
||||
|
||||
0jgVwoVwndfgn8hiqFDCU4meqOtwmUJh/qNVTqtNhUFzIRoLgxlAeChqVpAw1SopJ+QTDDUHgz4qodoLGTTzdYeqddfAu8W8LpdRKWursrVp6ZDKQ1S8ZoP0pB1YM8wW1ORTKTvV8eWgzYA0Ir6Lk40cGY3VUKWStoA8SlOyusl1h3BukoSKBVKJdTLJLxw8/GiElR4rzrkqdZ2hagmANDpqzcuobxWX0NzGoXNBXNFS2TOjnkZ1IJMijmxop4w6
|
||||
|
||||
yaIWqiM7zByiZtf/ThhorEH+IMshuSJkhQH02UkSE5YQsdZvpQacaYPbaiIPxy1MeCo+m8gmH6smqlwCucws92g0052aI+uWjcH4ZIkbQncswVIyLJIklHSKk1DnlsYGkqKa4HoZQp0Vngw5Y5fkuHTJNZlQSBcqPMAwz7Dqrcaur+lsUh4dkjGLjDJl+QTD9D0hjzK4dzT+ixoCYKipLRuo9oFMVGYWD+WMrhJHl7AuNAkkppnJWM1B/FLUKcq0
|
||||
|
||||
LhmFAzGi1BXphLJ92nCcvxmMpBIy6dGRFI8oEGC6gkYlbBcxVUIvVfqxC5alxAah6pK51gpA1sqcGqUYq6eVmkBkppHINqbyOJFuh1Thyx0AivWr3spqAjrd7A95C0nSUvUIUYwow21DwVF7Lga8tFLakhSdpP0+KSxbhlmURD00eBp/ZajkgYVekMuOJOHgcqnVcMcy/BQcauqnVHWsNUaodHjBrVfRZ6LQWzguR3zbg9lSWjvSlT/7fEDOyJM9
|
||||
|
||||
yyTkUDjIC8JEkkeC17vcSVflHsouR9IMUZyEmjbubSPGW0w6SwWmwOhxDclKVMJf7RaNd7r07EYuqRnAqYYBFLwbdB4qRq/JQFNh0lMWn5NuDJ9SGXssMo4xjB9WKmdPfVGBMV9mkglGk8KY6XjHhFAKaXbQl+P+6sK5OZZPRheoy16U9wL1LGmMrnJyiCdNWrorWohV2BMeIVCxjZrJM5INwXiLsbolLG4MCycGmMGIq/Hr0jKUJGCi30Do9l7S
|
||||
|
||||
adPYa5QZKkDDSMPZeOiqBmXkCJkyg4wnQOpAku4SVKUlOpWnWKZyM+gzufLXwVw6i3JU1VBRr66MeKNVPMjF0Jnh0i5F9BgZdTPBSzlqHvZym1NJ4ZqkB4RaaZXAcVQ0gYS1Y+Q3L0VnlXEhns/X773qHO/EtnhsJ+Vudp41TfYeJN57gNyszAGCHUGiCggAQlQFcNgBgAJB9A9ABrKJB0ldYNViXZNfpKGAjA3k+K3XgCIYjErc1gkfNXl3N4ot
|
||||
|
||||
7JpwSOUBcjkbpT2j+WERWvrUMrPJzKp3siLZV+SOVr7Llb2vbV8rpx+I7tfI1bUkiYpIfQbsuN5bUjR1Mq2PnKv0Y7iMpyfJsHOtAlKsGCVp8ZC0tXWFrQLm60UUqC4Ti1EFVHY1jauan9jj1hoxPk6ulzsdXVV6rUe9x1GDTeJbZKCaNOfWwSdpInBUmaM/Xcw1LksDSw23fWGI1Lj0rS3bFsTAXgLfEHS43CrimWgL2OgHqwhMvWXMhtlkjZLD
|
||||
|
||||
1iOWQLCGyWXEHctOXPLaxFmD5aOQOk1ijsQK0FZdLtEaYYV5y8TFa3vFGYgVmKwAN0R3xorDpJ4hxDSsulvZDl9y0lYTi6Jg4iV9K4YiivFXsrhiQC+VaOm3E94WVmq4YjcvVXQBbxa+Llccv5WTYdpdxM1b412kyrPlzq8nCXjgJ6rGMka1VcGsu5I2eAmNkaJDmU7yJg5UOYmyqE2ZiMqYIITLSL086pap9LZKftk00K3VoqWlK/Jb2FI9yGmP
|
||||
|
||||
muxRdpF6UkeFMPSxTtAHGO5a9IukifFrZsO57yPytyhZ1M6fr9NVKiZnTzU8k8gkBxBQZEU0NrUyc+6guVbjZKj6NwWJCTVqH3UDO+tTZCHnBSDJ2h/8lKu4p2QqEGh8tGGlCaOrnyV5PsRJD7hOCV92hEwFQqeXsp/I6026SdMXSSEblZmFdHJOHXuC4pPKUJ/lBzTIFXAiUbSCnOMqKk4YVwbSc5QriCRrzea7QoQVGm7lzMS0t+5pZymITwoz
|
||||
|
||||
FAuhxuUQepYH9Deum4KMpWpr170bSNgYQsPIU3ZFhKESsnJEUrUVaN9TicGIWFvK5Lb9Vns5yEmvRuEVJMaxuZ86+qJA9ACgML2BD6AoAiEcFeUDYDAgjg5YcsDADqA8BEIuAEsbebwZq89JS7ViLalfOmS01esYEbC1gruMC1wsKlcu2K5nsbehIl/D2KrVeSWVta13khca7NrMRwq4KR10wtIse1QUvtQOvJHFBKRiU6PhNy3Fx8KL6Uk8dOul
|
||||
|
||||
alZaLnIrDqohMUz6qc14wvgfc8ZmrPyyGHitasPX19ruio9qaJa17iXL17q/qc31vXfd7OgnR9YpfGkvqINm8CftzAAfexMd8MvS00W9JxkkNthZrf6WJkAwqtXhHkiNqNhVMjtUxJBwqVK2N47tHCOmSWVVIskNSsOoh6aQ1L/3OiARcjSlr1l46uNC/RjdhOQfnxoiP2kjXg9M2Rloi12lLebPG33bzZNJQOYz2DkOiVrMBwgYtaokWnpdFwBE
|
||||
|
||||
7m1Tpi1f0ckaXaUOGanVI5o58I8KjDPAVOjMpmzDKlUrtJYkAe+2mPt2WMTwkryP9PchEqXW+It6eJPHTXqjDkUwizCsLTGUi21a5yKjEHTscQLFkS5N9KyhVmPopK5wfiBWktNMKu9T43DHJCXTfpPFNoaIUciaQqDSlf6QCSmDmYyoi9DRw5CxlGrroCKDSGtNMNTbU2XUv1f+egv9Plpqlx+N+Q2kbTdoGMbApE1wjYobVTqgaTWr7suomG9q
|
||||
|
||||
KRg62/JKSGoqavVJZFulrNOUjFaqEheKKXnkUnBb6VDEIImSTmfbRbGc5s3LYrDPlS56MZzxBSvQAYPxSO5c2BXoAagU7UrOWAaxPA2sGwB59VjQh6pMAcADYCmKTVr5HzkAQyWMHBZvnhsh0T87XcbTWSBQB2grke1QC3AW74FrsZBbfzQWmVNa4lohcbXIXB73K1ln2pCldrx72F4e1PdinirCLVItccUA3HjrKQk6ui3N33E7ZcIW9/KTvZ6R
|
||||
|
||||
hJeaLFq0pVJPscXzVtGYRecX3U180AcolqZ+JPVMuWOZ651SMgkvP3pLsriAG/feXyWv7Fo5S0DwJ0Ea0y5pTMtsSSKPag2WD7RKtqFjcPNipGnWAg5x0ZaetOOumQdBeLA6xZU/AHe8T01CPlOnPBax0ykcUTJHYc5hYWZFQvWZ06bT/UHVYpmVMkWeKoUHQ3kSi553csXY6hbS86e0e6mhT3VKHG17TLSTyh4rTzTCHgLAjuboIkXcRhaM1Azk
|
||||
|
||||
jcKOIoInnel1CIqvLNIET6iT0U8inO+3uJ/tucx/YjFrDvldbHGADAB2IvAV3na59HfQAAhnmlQGCLhCeClZgQLQHvEFizAtAsw2AMXn8waBi8e2fzkFhWNYj1w4FmatNacBrtG8dli2Pdlg7heosXbxQcte3cvZQWu7sFpEayrrVv5/JuL1KC2rJdoWpxnkMe2Ngns4WRV/ail4OopGR9NG0q5KfS5FYr2FVyfRCOy+VELqRMVAilCxaOsbqqpZ
|
||||
|
||||
q2268lGT8aMwfFq+3apvsOrVX99+1iBifvXqZLXqiCZ/cNHf2Pov96DUhNk78ehP+JdHfzG83Vb3CKO6InpudlhEcHupFImaSqb6uuNU01T+hLgfeIVEGDxjea/hgKehYPJWT2duiJoOSNu/Pzf6UNYAMVEB0rLYJ+s/2f6mpOoOeTqIko98DtiRlL42GZRVvKiVSVIIdToyVr0mGK00kxUJ1L1kuyYhNPRlz1SLHYlB1MUmExMmwDwYFQWzn3Qw
|
||||
|
||||
Ui98ub5G6pXS4dPKHSDzIke/R+7PFXECgYWgeAyZDTHGDNPjQOO80HHDmMZbHsSMVuMKe9jPcUNNOdI+nTGW0DKi0EeJfjHSWSm8lfmN2L5k6RJ1DVQo5Jplbc+M8oXWNnIj6CcmGgCj3rBGY0O0QJHpQiqTNc3TyQMapGnO2cA7C5o58HZXOvRbXjeeMbO6OE3OW+wvLCA89wjNYEGFAGAGhHKBKSKQaEBrMCGQhwAAX0AO88XYfOl3Rgd8DNRN
|
||||
|
||||
mGQQv739dvdiLJfdtikX57T965LRc/vMXQ4+tUB4Hsgeh7PK8D0S6g+zjYPk46exCKHVEWaXkAOl2RYnWYep1yfcsLh5PELrhYDEAPM4xNU05tQt40+0LZp2xOaPB6pqUeulfCXm+zH9vkq/Y+qv1XN37jyNO1fjSLLcpINqhIgeqWStthKh1MQqLg6hYC/VAb6/wGrmKdgb0Nyym8w1ftlfEWyTpQ1rp0TM9wbxOY/MG2oyUR5bNlE/S9pJr6X0
|
||||
|
||||
HZ/T2u9DvwxQdwSQ9+9iwp7pOWV7xJPncQAe8zzUfC0GcB+BygZwigJgGcDPNcAwvGoBQDwinuvhqa1iC8ArvTARgQSTiJQy/NQuyVDLABSqBLVKgAcH7jtV+4J8wWifvkkn/3Y97k/8X2Iwl6PeWxYWIpYHlAqH0Q+z3kPkHVDzH1g7L34Oqr9eztkqC8/zQO9nQQLVhvatRfi68X4K7YknGAcp3RqW+Pl/2qZXIl+V2JYvVtR/fwElV56r1Gx/
|
||||
|
||||
hpBEmNKR+r6o55waoDpaTkOhTAFo0IaxDaTG4EnuhJhkfDhwimwbpEhr6eTDmXD6eG0gLI0alvu/BxWSYOLJIytDl4R/K6mtLKsa5nkQiICVRLb5zW9vh55U6pEiG6rWzvnMqlmw9IuQXIuaNSge0jUMfjCoShmEIL6R8BKKH4h8tuTdoTur+gkeUeDhjEIrFObrV6mGMdRmoqeB5hd+LqC1CUmYyAyZhC40BOiLIFfAzZ8UmMkehDKqYA8YpeXy
|
||||
|
||||
BiglyuSEzrGoYinDYa20KHuTl8D7i6jWY/jFjSFyTBiW6VoaYGphU8iboShjAzNnUieYyaE8pR+ryozwaugdoub3e47q9BaBzCJ+A+qXeOAzPM1WAgANYuEEIBQADQAgxYQPeMhAJARgDAAIM3IE8CrufYtD5F2Hwv87w+L5le4TYRRHe4n4ngZAAFqKPsWr/mZvGNj9+6Fvj46QhPj3ZYuY/ji5k+lIKB6U+kjLP70M8/kKrzByjMv4z2kAHPYj
|
||||
|
||||
qtLmOrs+DLpz67+yfEPiH+1UNtA+iQ5tR6QABfDVJX+3jFLqvoDXjL7iuoTLaofiz/or7Kiyvo/af+iuC/bKiGvv/6/cPHjr7ABCErDxmE4/EySm+i0tET5kdTHCHEOA2oiFgh0RDvzQhennjJIakWijrwBmDi/yYBP8OJpm+uDkjIaeORMwZJ+qpPRqXE9ASI4O+vTEtYSOjvmwHiKQqN7rbqDNpM6Oo6aOLToKSBvM506wQoyh4UAgdvSjmQaG
|
||||
|
||||
ZhLojwVHiV8M2GUbK20vqmhboIJuxRx4s3vlQQk7vngjNKLSmtSw02usBhaOoBpuiTKhVCVIyUmKEpgJUktBKJWYZgoJiIoDepdRUUEwIfK482KLuS/kDaLMwJUcGBWgC+GgjGivkHaHxglU0poLL+IF3nfT9uezksLDu8fmO6ucqQYHh7aGQWn5bmZQHUDlgmAD3hNAWYL4DPMRwD2yaAygOMBCAuAE8CVAAIDwD8ghdkCxw+mvB5xI+IwCcCo+
|
||||
|
||||
XQej74ikSH+aFcaALjJDBrdqVx4+8IuMFwW/7n3bTBE/rMEU+BLlT6LBRXNB6kuqweyz4WcUkh6SqKHiRZoeewRh47+ifHv64AbwjlLLcHLrVBxydEjcjbY1wdKHn+3BN4xzM4Qsdy8Wsvo/7X2UhC/5K+b/g/Yf+CuGr6/+d6h/ba4wIV4QmiAnsb6baIPIxrScmDlBGMaBOsSHyIdMtQFka6IQ6RwOZIVMSBaluKQGaa9ZKw7EwRfPzBDWdcPW
|
||||
|
||||
QmeqmhUQIBmmubJIROsMDot4ZmlhF4RHmlhEEhdcHA4JaLpKjrqIqEdrIwOMmqjquuHETxHekbESxGqw+nkbiCOrnsI7uejok77iKDEEZx5otNo7Zp6iyOMjUot6BsaNeDtptzlUT1L8giUK4AlRuqgKEXqnymSKOiPkspjF5kCXblUaZeGSkraTMpSHMiTOSCnEjlUFOJRy8oISPGibU5qEEK8oWJh7TrGCbtnKboait4hEUr1JN5cC21DRR1KB
|
||||
|
||||
0FcCZ0CtCOYL6QYM4FHogErzT+omNDYYLoqdHgqJgHpjlSZ0EetCg9oGlPfgF06iM1AtC6ivchrUlFKeiNI1dKRirkf5KRhE8MlI1QLoRBlLTKYkSpdRcCL5BvRhhpFJ5Sb6cGJRgHg40BKLrInBtHjBU/1AKhRhAgFd48SgIYc6RiiYb/QpwzeFLKp+BwlHZZBZQDSDHuJAEIA9sQgE2CIQ5YPHYwANQM4AIMRwADDV+Kak+b2MILpXbDYPpDmq
|
||||
|
||||
Qu3Qefj4ifLgewDBSoLNJgWuPgP6jBeLCOF/uvduyoThGIlP5RSs4XiJz+JLgv5LhpIusGM+a4cOobhOwaRZb+5FruG7iyfMLwnB9FuVLxycymd5XBh9rwCXhZHtf5bkNFDnSX2cvq+E3cd9p+EsewsOxA/hUlt3yv2slltEPqQEXkzCe/pN9rgR2lmJzyxurtTAgO0ZCAE6uporCEQBluERGKkrRFA41kk8KTBWeZ0rYTGxiDkbHQRluPa5TEiZ
|
||||
|
||||
NtocIxZIxEowd0vBFIkMpIxpycjGm8RmxKWuYTIB8iC/yrStITJFiOXnvSHESQbt7haokToBJ5o3kUnjloB8kiZDItmG5ELUHopRg96QdFpgMQbOKyYeiLyDkaIGWSAIFmoioUejxO1ejOgmRBMl6LqYdio6hOIHvhxh8YghoKgNGVNPsYXBt1v/L2Iq5L6JIoEdP2TuK4cjEIOolPNLQI0C+kwYZI2KD2b5UtUVSZ+iA8n3HRC6lEvrsCa8uo4l
|
||||
|
||||
y5yMMjW6wVH3G2OLaJEIjQlyIAoiKG9FjQvo4CvlRumdqDNR3kzituQDxgKCIoTAHcoOjNO0GL0jRuoIbTwbRg7gc6JBd3gn4pB3sE4QaIG5uABfgO2HAD9sUQDGCqq+QNAC7A6QGdGFcgwAwCEACABQANAzvAhZQWp4IQk3mSCdgAiAdkOWAxg+gHSCHYw4cP4YJpCaQDkJlCbgnwWAHgARksTapAAMJTCWkClYcwTOFIgEANwmkgFCWkDUJnaj
|
||||
|
||||
T4kJZCSImUJ4iaKCT27akInSJmQKIn6AWEAh4z2SiYwkyJaQOVhr+xFlwnKJUAKomlYnAFABoMiWPgAjc9CUYkmJZiU0CEARgI+DUeWiTwn6AyEFgBQA1WEQCdsZ0QgAUgE/q4k6JVCVECkAXiYwlsAFALsCbgs3EEkqJlCU2DYg1WBElRJIQOAzwg/wI+bsg2AP8A0gdQD8J9oaXD5aPI2Sbkn4AALIXwXAbYTlxIJRgGwAGAiCfnwEAc0GCxDk
|
||||
|
||||
bSb2QtscScYmUJ6iVQRh88HmZCCJGICQAOJTibEnDJbCWgCgMDQGCDgM2kMCDjACyQsmlYm9ksBYQCAMoCBYaLk2BZgOyTskrJQEGn5dJciQgB6JUAM6DfiSCe7hmAwgMwC4QpACMmOJj4Bhw7hCAOsm/gDyYpCNJxQBkC4AmgMEBcxQoNgBEAcAC+FCgHAPoxgpFIoUHdgj4HzidJdgM8wIA2AFkBNAEKXADC8bAPlCJJfyQClhi4AIcJkQ1IHN
|
||||
|
||||
bAAwECADAQQAA===
|
||||
```
|
||||
%%
|
||||
13
FINs.md
Normal file
13
FINs.md
Normal file
@ -0,0 +1,13 @@
|
||||
## 21
|
||||
|
||||
| FIN | | |
|
||||
| ---- | -------------------- | ----------- |
|
||||
| 14HG | RH Recirculation Fan | 21-21-51-04 |
|
||||
| 15HG | LH Recirculation Fan | |
|
||||
|
||||
## 32
|
||||
|
||||
| FIN | Description | |
|
||||
| ------ | ------------- | ----------- |
|
||||
| 2659GM | LH Nose Wheel | 32-41-12-04 |
|
||||
| 2660GM | RH Nose Wheel | |
|
||||
27
Flughafen.md
Normal file
27
Flughafen.md
Normal file
@ -0,0 +1,27 @@
|
||||
---
|
||||
created: 2023-01-13T07:25:15+01:00
|
||||
updated: 2025-04-22T22:38
|
||||
---
|
||||
|
||||
### Funkfrequenzen
|
||||
|
||||
| Vorfeld | Frequenz |
|
||||
|---------|---------:|
|
||||
| LH Company | 131\.550 |
|
||||
| MUC AP 1 | 121\.780 |
|
||||
| MUC AP 2 | 121\.710 |
|
||||
| MUC AP 3 | 121\.930 |
|
||||
| MUC GRD N | 121\.980 |
|
||||
| MUC GRD S | 121\.830 |
|
||||
| MUC ATIS | 123\.120 |
|
||||
```ad-attention
|
||||
Marshaller required on Apron Positions
|
||||
308-313
|
||||
321-330
|
||||
232-234
|
||||
```
|
||||
|
||||
|
||||
##### Airport Community
|
||||
|
||||
Anmeldung: http://www.munich-airport.de/aca
|
||||
40
IT-Service.md
Normal file
40
IT-Service.md
Normal file
@ -0,0 +1,40 @@
|
||||
**Reminder: Kontaktmöglichkeiten für den IT Service Point Line Maintenance**
|
||||
|
||||
Wie Anfang des Jahres bereits kommuniziert, wurden die operativen IT-Services für die Line Maintenance in FRA und MUC beim neu aufgestellten Service Point Line Maintenance (SPLM) gebündelt. Dieser ist nun der Single Point of Contact bzgl. eurer iPhones, iPads und KFZ-Laptops.
|
||||
|
||||
Nachstehend findet ihr zur Erinnerung nochmals eure Kontaktmöglichkeiten zum SPLM:
|
||||
|
||||
🕒 an Werktagen von 08:00 – 17:00 Uhr
|
||||
|
||||
📍 Werkstattgebäude (Geb. 154.02), Raum 1.71
|
||||
|
||||
📧 [MUC-SPLM@dlh.de](mailto:MUC-SPLM@dlh.de)
|
||||
|
||||
📞 00 80000 340 300
|
||||
|
||||
### Register iOS Device
|
||||
|
||||
Sehr geehrte Kolleg:innen,
|
||||
|
||||
wir haben heute gute Neuigkeiten für Sie: Wenn Sie in Zukunft Microsoft Office Apps auf Ihrem EMM-Mobilgerät| nutzen möchten, müssen Sie nur noch alle sieben Tage eine Multi-Factor-Authentication (MFA) durchführen - und nicht mehr jeden Tag.
|
||||
|
||||
Um von diesem Vorteil profitieren zu können, müssen Sie mit ihrem Gerät einmalig die Verbindung von Ihrem Microsoft Account mit der Intelligent Hub App herstellen. Technisch gesehen wird dabei Ihr Gerät im Active Directory der MS Azure Cloud als EMM-managed Device registriert. Für diesen Vorgang müssen Sie auf dem EMM-
|
||||
|
||||
Gerät die MS Authenticator App bereits eingerichtet haben und haben dann zwei Möglichkeiten:
|
||||
|
||||
1. Sie klicken auf Ihrem EMM-Gerät auf das von uns bereitgestellte Icon „Register Device*, hinter dem sich ein Weblink verbirgt, der den Registrierungsvorgang für Sie einleitet. Falls Sie das loon nicht finden, können Sie den Weblink auch aus dem EMM App Store installieren und dann starten; oder
|
||||
2. Öffnen Sie folgenden Link direkt aus dieser E-Mail heraus auf Ihrem EMM-Gerät, z.B. über die Outlook App:
|
||||
airwatch://conditionalaccess?partnoramicrosoft
|
||||
|
||||
Nach Klick auf das Icon bzw. den Link öffnet sich automatisch erst die App „Intelligent Hub* und anschließend die „Microsoft Authenticator" App. Klicken Sie in der Authenticator App bitte auf Ihren dienstlichen Account. Sie erhalten danach eine kurze Meldung, dass das Gerät erfolgreich verbunden wurde. Sollte eine Fehlermeldung erscheinen, wiederholen Sie den Vorgang bitte etwas später nochmal, bis Sie eine erfolgreiche Bestätigung für den Vorgang erhalten. Bitte stellen Sie sicher, dass Sie hierbei eine Internetverbindung haben.
|
||||
|
||||
Wichtig: Sofern Sie mehrere Geräte im EMM-Service registriert haben, müssen Sie diese Aktion für jedes Gerät einmal ausführen. Sofern Sie ein Gerät neu im EMM-Service einrichten, müssen Sie diese Aktion erneut einmalig auf dem neuen Gerät ausführen.
|
||||
|
||||
Für welche Geräte gilt diese Änderung?
|
||||
|
||||
Die Optimierung gilt für alle individuell genutzten iOS-Geräte von Lufthansa Mitarbeitenden, die im EMM-Service verwaltet werden.
|
||||
|
||||
Mit freundlichen Grüßen
|
||||
|
||||
Ihr EMM-Team, FRA GI/TE-M
|
||||
|
||||
30
Journal/2023/2023-11.md
Normal file
30
Journal/2023/2023-11.md
Normal file
@ -0,0 +1,30 @@
|
||||
---
|
||||
created: 2023-12-19T17:32
|
||||
updated: 2024-02-29T15:39
|
||||
---
|
||||
### 15.
|
||||
#### D-AIJA
|
||||
- S-Check
|
||||
- Ctr Tank xfer Fault
|
||||
- IDG Filter
|
||||
- Engine Hydr Rod Insp
|
||||
- Main Wheel #4
|
||||
### 16.
|
||||
#### D-AIWJ
|
||||
- NLG Torque Pin Inspection
|
||||
- R-Check
|
||||
|
||||
#### D-AIDJ
|
||||
- Lightning Strike Inspection
|
||||
- RunUp After LSI
|
||||
### 17.
|
||||
#### D-AIBD
|
||||
- Engine Change
|
||||
- Hydr Accus
|
||||
- Oxygen Containers 3RH / 33WR
|
||||
- Engine 2 Start Valve
|
||||
- MLG Door Actuators
|
||||
|
||||
### 18.
|
||||
#### D-AIZT
|
||||
- LPTCC Valve
|
||||
82
Journal/2023/2023-12.md
Normal file
82
Journal/2023/2023-12.md
Normal file
@ -0,0 +1,82 @@
|
||||
---
|
||||
created: 2024-01-02T07:24
|
||||
updated: 2024-02-29T15:40
|
||||
---
|
||||
|
||||
## 01
|
||||
- #### D-AIWF
|
||||
- S-Check
|
||||
- Portable Oxygen Bottle
|
||||
## 02
|
||||
|
||||
## 03
|
||||
|
||||
## 04
|
||||
|
||||
## 08
|
||||
- #### D-AIRN
|
||||
- LGCIU 1 Fault 40GA
|
||||
## 09
|
||||
- #### D-AIZE
|
||||
- smell WO 1672015
|
||||
- ceiling light
|
||||
- ceiling panel insp
|
||||
## 10
|
||||
- #### D-AIWA
|
||||
- S-Check
|
||||
- OGV Repair WO 106257414
|
||||
- Handrail repl WO 1535752
|
||||
- G33 Corrosion Inspection
|
||||
## 15
|
||||
- #### D-AISZ
|
||||
- BRAKE #4 Temp Indication
|
||||
- ENG #2 - VSV Lub
|
||||
- ENG #2 - Compresser Bleed VLV Test
|
||||
## 16
|
||||
- #### D-AINR
|
||||
- IGD #1 Low Oil Level WO 1615727
|
||||
- AO IDG #1 WO 106347135
|
||||
- R-Ceck
|
||||
## 17
|
||||
- #### D-AINQ
|
||||
- Engine #1 Installation
|
||||
## 18
|
||||
- #### D-AINQ
|
||||
- Run-up
|
||||
- #### D-AIEO
|
||||
- Engine #2 konservation
|
||||
## 22
|
||||
- #### D-AISL
|
||||
- Smell
|
||||
## 23
|
||||
- #### D-AIDM
|
||||
- M/S Bleed
|
||||
- Replace bleed ctl solenoid 10HA1
|
||||
- Replace MLG Door Actuators
|
||||
- HYDR Sample Blue System
|
||||
## 24
|
||||
- #### D-AIDH
|
||||
- VSV actuator ENG #1
|
||||
## 25
|
||||
- #### D-AIEI
|
||||
- PW tube fitting inspection
|
||||
- HYDR Rod inspection
|
||||
- LWR starter duct ENG #2
|
||||
## 26
|
||||
- #### D-AIUG
|
||||
- Return tube aft cargo door selector valve
|
||||
- Blue HYDR pressure indication
|
||||
- Nose wheel steering fault
|
||||
|
||||
|
||||
## 30
|
||||
- #### D-AINL
|
||||
- HYDR Pressure Line ENG #1
|
||||
- #### D-AIEG
|
||||
- Ozone Converter 101HM (RH)
|
||||
- Armrest SB
|
||||
## 31
|
||||
- #### D-AINW
|
||||
- G33 Placards
|
||||
- Window insp
|
||||
- Door 2L seal repair
|
||||
106
Journal/2024/2024-01.md
Normal file
106
Journal/2024/2024-01.md
Normal file
@ -0,0 +1,106 @@
|
||||
## 01
|
||||
- D-AINO
|
||||
- 275144-01-1 DVI Flap interconnecting strut
|
||||
- 275100-02-1 OPS Check Flap interconnecting strut
|
||||
- 291900-02-1 HYDR Blue Sys internal leak check
|
||||
- 274451-08-1 THS integrity check ball screw shaft
|
||||
- 273400-02-2 elevator free play check
|
||||
## 02
|
||||
- D-AINO
|
||||
- Leak check both packs — WO 106553479/6496
|
||||
- 384242-01-1 Water compressor filter repl
|
||||
- 215000-03-2 pack ram air inlet play
|
||||
- 293400-01-1 HYDR Reservoir pressurization indicating test
|
||||
- 341300-07-1 air data flushing pressure lines
|
||||
- 342200-02-1 air data flushing standby system
|
||||
- WO 106517564 fuel sampling
|
||||
|
||||
## 03
|
||||
- D-AINO
|
||||
- WO 106544286 APU Pilot fuel nozzles repl
|
||||
- 254000-04-2 Toilet floor pans
|
||||
## 04
|
||||
- D-AINO
|
||||
- Run-up — WO 106559081
|
||||
- Aft RH Attendend Seat inst — WO 7072271
|
||||
- D-AIBD
|
||||
- ENG #1 Fuel Pump repl
|
||||
## 08
|
||||
- D-AIEO
|
||||
- ENG #2 inst and Tests
|
||||
## 09
|
||||
- D-AIUF
|
||||
- ENG #1 Fan insp — 722000-C1-1
|
||||
- ENG #1 Fan Blade #8 Mid Span Shroud reinsp — WO 17285842
|
||||
- ENG #1 Blades #2,20 repl — WO 106614118
|
||||
- LWR Wing panel AOT insp — 572130S0010
|
||||
## 10
|
||||
- D-AIWF
|
||||
- LH Fixed Window — WO 1620709
|
||||
- R-Check
|
||||
- Emergency Generator Test
|
||||
## 11
|
||||
- D-AIUF
|
||||
- RUNUP
|
||||
- Door Lining FWD Doors
|
||||
- Exit Sign
|
||||
- Fwd Attendant Seats
|
||||
- Cover Plate 1R
|
||||
## 12
|
||||
- D-AIEO
|
||||
- Engine change final
|
||||
- D-AIEL
|
||||
- R-Check
|
||||
- Lav E Door
|
||||
- Dry Cleaning
|
||||
## 13
|
||||
- D-AIDC
|
||||
- sealing Floor Panels
|
||||
- Bracket Smoke Hood
|
||||
- PAX Seat reinstalled
|
||||
- D-AIWG
|
||||
- Runup
|
||||
## 18
|
||||
- D-AIEN
|
||||
- oil smell WO 1683205
|
||||
- check engine
|
||||
- replace reheated, condenser
|
||||
- replace filter
|
||||
## 19
|
||||
- D-AIEN
|
||||
- install blind plug condenser
|
||||
- D-AIBA
|
||||
- ICTV trouble — WO 1543363/5
|
||||
- noise RH overwing exit — WO 1543367
|
||||
- D-AIEG
|
||||
- dry wash
|
||||
- D-AIEE
|
||||
- remove Lav D
|
||||
## 20
|
||||
- D-AIEN
|
||||
- engine wash #1
|
||||
- run up
|
||||
- leak check N1 pad ENG #1
|
||||
- leak check fuel filter ENG #2
|
||||
## 21
|
||||
- D-AILY
|
||||
- FWD Pressure Bulkhead vertical ports — TC 531184-02-1
|
||||
## 22
|
||||
- D-AUWI
|
||||
- R-Check
|
||||
- Drain PWS
|
||||
- D-AIUG
|
||||
- ENG #1 Bleed fault during t/o
|
||||
- Fueling caps lanyards
|
||||
## 25
|
||||
- D-AILA
|
||||
- cockpit door adjustment — WO 1616295
|
||||
## 26
|
||||
- D-AINK
|
||||
- Parking up to 1 month — BP00001320_ST-00
|
||||
## 27
|
||||
- D-AINK
|
||||
- Slat lubrication
|
||||
- 2x Bonding Flap Fairing
|
||||
- Aft Doors Winter OPS
|
||||
|
||||
83
Journal/2024/2024-02.md
Normal file
83
Journal/2024/2024-02.md
Normal file
@ -0,0 +1,83 @@
|
||||
---
|
||||
created: 2024-02-16T12:02:40+01:00
|
||||
updated: 2024-02-29T15:42
|
||||
---
|
||||
|
||||
## 04
|
||||
|
||||
- D-AIDA
|
||||
- VSV Lub - ENG #2 ESN V13076
|
||||
|
||||
## 07
|
||||
|
||||
- Jacxson Einweisung
|
||||
|
||||
## 08
|
||||
|
||||
- D-AIEN
|
||||
- ENG #1 removal - ESN P772646
|
||||
|
||||
## 09
|
||||
|
||||
- D-AIEN
|
||||
- ENG #1 Installation - ESN P772613
|
||||
|
||||
## 10
|
||||
|
||||
- D-AIEN
|
||||
- ENG #1 Installation - ESN P772613
|
||||
|
||||
## 11
|
||||
|
||||
- D-AIEN
|
||||
- ENG #1 Tests und Run up
|
||||
|
||||
## 17
|
||||
|
||||
- D-AIEE
|
||||
- Main Wheel #4 — WO 107224233
|
||||
- S-Check
|
||||
|
||||
## 18
|
||||
|
||||
- D-AINH
|
||||
- removal R/H Sharklet
|
||||
|
||||
## 19
|
||||
|
||||
\- Streik
|
||||
|
||||
## 20
|
||||
|
||||
\- Streik
|
||||
|
||||
## 21
|
||||
|
||||
- D-AIEG
|
||||
- Elevator neutral check
|
||||
- Elevator adjustment
|
||||
- ENG #1 Hydr Component Insp
|
||||
|
||||
## 22
|
||||
|
||||
- D-AIEG
|
||||
- S-Check
|
||||
- Rutsche 1R Component Change
|
||||
|
||||
## 26
|
||||
|
||||
- D-AIBC
|
||||
- A/O Slat Wing Tip Brake Fault (SFCC1 BLUE L/H)
|
||||
|
||||
## 28
|
||||
|
||||
- D-AIDN
|
||||
- ENG #1 change
|
||||
- OFF V16122
|
||||
- ON V15247
|
||||
- ENG #1 c-check
|
||||
|
||||
## 29
|
||||
|
||||
- D-AIDN
|
||||
- ENG #1 change
|
||||
65
Journal/2024/2024-03.md
Normal file
65
Journal/2024/2024-03.md
Normal file
@ -0,0 +1,65 @@
|
||||
## 09
|
||||
- D-AINT
|
||||
- S-Check — 106319864
|
||||
- hydr accus — 107388061
|
||||
- Fuel sample
|
||||
|
||||
## 10
|
||||
- D-AING
|
||||
- Engine Change #2 P771001 -> P770624
|
||||
|
||||
## 11
|
||||
- D-AING
|
||||
- Engine Change
|
||||
|
||||
## 14
|
||||
- D-AIEE
|
||||
- Engine Change #1 P770886 -> P771683
|
||||
|
||||
## 15
|
||||
- D-AIEE
|
||||
- Engine Change
|
||||
|
||||
## 16
|
||||
- D-AIEI
|
||||
- Beverage Maker G12
|
||||
- Lav A Faucet dripping
|
||||
- Brake Accu Reading
|
||||
|
||||
## 17
|
||||
- D-AIWD
|
||||
- R-Check
|
||||
- D-AIEE
|
||||
- Engine Change
|
||||
|
||||
## 18
|
||||
- D-AIEE
|
||||
- Engine Change
|
||||
|
||||
## 19
|
||||
- D-AINH
|
||||
- L/H Inboard Flap installation -- WO107292816
|
||||
|
||||
## 23
|
||||
- D-AINK
|
||||
- Engine Change #2 P771231 -> P772026
|
||||
- VHF Receiver Readout
|
||||
|
||||
## 24
|
||||
- D-AINK
|
||||
- Engine Change
|
||||
- Basic Cleaning
|
||||
|
||||
## 25
|
||||
- D-AINK
|
||||
- Engine Change
|
||||
|
||||
## 28
|
||||
- D-AIEE
|
||||
- WO 1631183 -- VMO Limit Exceedance
|
||||
- IDG Filter replacement
|
||||
- S-Check
|
||||
|
||||
## 31
|
||||
- D-AIUV
|
||||
- Rudder Trim Actuator
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user