📝 Update and organize project documentation and assets

This commit is contained in:
2026-01-26 22:46:14 +00:00
parent 4194dcfeff
commit b20e2185b2
1433 changed files with 64484 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"attachmentFolderPath": "/attachments",
"alwaysUpdateLinks": true,
"newFileLocation": "current",
"promptDelete": false,
"readableLineLength": false
}

View File

@@ -0,0 +1,3 @@
{
"cssTheme": "Things"
}

View File

@@ -0,0 +1,4 @@
[
"obsidian-importer",
"obsidian-advanced-uri"
]

View File

@@ -0,0 +1,33 @@
{
"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,
"footnotes": false,
"bases": true
}

View File

@@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-advanced-uri",
"name": "Advanced URI",
"description": "Advanced modes for Obsidian URI",
"isDesktopOnly": false,
"js": "main.js",
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "1.46.1",
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-importer",
"name": "Importer",
"version": "1.8.2",
"minAppVersion": "0.15.0",
"description": "Import data from Notion, Evernote, Apple Notes, Microsoft OneNote, Google Keep, Bear, Roam, Textbundle, CSV, and HTML files.",
"author": "Obsidian",
"authorUrl": "https://obsidian.md",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,173 @@
.modal.mod-importer {
max-height: var(--modal-height);
padding: var(--size-4-4) 0 0 0;
position: relative;
overflow: hidden;
}
.modal.mod-importer .modal-title {
padding: 0 var(--size-4-4);
}
.modal.mod-importer .modal-content {
overflow: auto;
padding: var(--size-4-4);
margin-bottom: calc(var(--input-height) + var(--size-4-8));
border-top: var(--border-width) solid var(--background-modifier-border);
}
.modal.mod-importer .modal-button-container {
margin: 0 0 0 calc(var(--size-4-4) * -1);
padding: var(--size-4-4);
gap: var(--size-4-2);
position: absolute;
bottom: 0;
background-color: var(--background-primary);
border-top: var(--border-width) solid var(--background-modifier-border);
width: 100%;
}
.importer-progress-bar {
width: 100%;
height: 8px;
background-color: var(--background-secondary);
overflow: hidden;
box-shadow: inset 0px 0px 0px 1px var(--background-modifier-border);
border-radius: var(--radius-s);
}
.importer-progress-bar-inner {
width: 0;
height: 100%;
background-color: var(--interactive-accent);
}
.importer-status {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: var(--size-4-2) 0;
}
.importer-stats-container {
display: flex;
justify-content: space-evenly;
margin-top: var(--size-4-5);
margin-bottom: var(--size-4-5);
}
.importer-stat {
text-align: center;
}
.importer-stat-count {
font-size: var(--font-ui-large);
}
.importer-log {
overflow: auto;
flex-grow: 1;
font-family: var(--font-monospace);
font-size: var(--font-ui-smaller);
color: var(--text-muted);
border: 1px solid var(--background-modifier-border);
padding: var(--size-4-4);
background-color: var(--background-secondary);
border-radius: var(--radius-s);
max-height: 300px;
user-select: text;
}
.importer-log .list-item {
display: inline-block;
line-height: var(--line-height-normal);
white-space: pre;
margin: var(--size-2-1);
}
.importer-error {
color: var(--text-error);
}
/* Template configuration styles */
.importer-frontmatter-header {
display: flex;
flex-direction: column;
gap: var(--size-4-2);
}
.importer-frontmatter-header h4 {
margin: 0;
}
.importer-select-all-setting {
padding: 0;
border: none;
}
.importer-select-all-setting .setting-item-info {
padding-inline-end: var(--size-4-2);
}
.importer-column-list {
display: flex;
flex-direction: column;
gap: var(--size-4-1);
padding: var(--size-4-3) 0;
}
.importer-column-header-row {
display: flex;
align-items: center;
gap: var(--size-4-2);
font-size: var(--font-ui-smaller);
color: var(--text-muted);
padding: var(--size-2-1) 0;
}
.importer-column-row {
display: flex;
align-items: center;
gap: var(--size-4-2);
background-color: var(--background-primary);
border-radius: var(--radius-s);
}
.importer-column-name-col {
flex: 0 0 150px;
min-width: 0;
}
.importer-column-value-col {
flex: 0 0 200px;
min-width: 0;
}
.importer-column-property {
width: 100%;
}
.importer-column-example-col {
flex: 1;
min-width: 0;
font-size: var(--font-ui-smaller);
color: var(--text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: var(--size-2-1) var(--size-4-1);
}
.importer-column-delete-col {
flex-shrink: 0;
width: 32px;
display: flex;
align-items: center;
justify-content: center;
}
/* Fixed width buttons to prevent resizing during loading */
.notion-load-button {
width: 70px;
}
.notion-toggle-button {
width: 95px;
}

View File

@@ -0,0 +1,3 @@
{
"folder": "templates"
}

View File

@@ -0,0 +1,7 @@
{
"name": "Blue Topaz",
"version": "2025071401",
"minAppVersion": "1.0.0",
"author": "WhyI & Pkmer",
"authorUrl": "https://github.com/whyt-byte"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
{
"name": "Minimal",
"version": "8.1.2",
"minAppVersion": "1.9.0",
"author": "@kepano",
"authorUrl": "https://twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,7 @@
{
"name": "Things",
"version": "2.1.20",
"minAppVersion": "1.0.0",
"author": "@colineckert",
"authorUrl": "https://twitter.com/colineckert"
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
{
"openExternalURLs": true,
"enableAdblocking": true,
"searchEngine": "google"
}

View File

@@ -0,0 +1,161 @@
{
"main": {
"id": "2c1257aca1513630",
"type": "split",
"children": [
{
"id": "7e92419a36179d19",
"type": "tabs",
"children": [
{
"id": "f1c69d76fb041853",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Our story.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Our story"
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "3d75710a1eb00275",
"type": "mobile-drawer",
"children": [
{
"id": "fb5e8b31532d68bc",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "f4f62730cb8857dc",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "d1347a1931227149",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "fd38b4aeca67db33",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
],
"currentTab": 0
},
"right": {
"id": "d91b0f39d8edd1fc",
"type": "mobile-drawer",
"children": [
{
"id": "beb239baa25881f4",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Our story.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks"
}
},
{
"id": "2cacace8674d5157",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Our story.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links"
}
},
{
"id": "13dfcdfda0102440",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Our story.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline"
}
}
],
"currentTab": 0
},
"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,
"bases:Create new base": false
}
},
"active": "f1c69d76fb041853",
"lastOpenFiles": [
"Our story.md"
]
}

View File

@@ -0,0 +1,228 @@
{
"main": {
"id": "65118307aef94695",
"type": "split",
"children": [
{
"id": "fb78540f6b0817b8",
"type": "tabs",
"children": [
{
"id": "6bd06c473a6df9f7",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Random & To Sort/The Tower.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "The Tower"
}
},
{
"id": "db667fd073afcf6d",
"type": "leaf",
"state": {
"type": "release-notes",
"state": {
"currentVersion": "1.11.4"
},
"icon": "lucide-book-up",
"title": "Release Notes 1.11.4"
}
}
],
"currentTab": 1
}
],
"direction": "vertical"
},
"left": {
"id": "87ef67fcdb70cca7",
"type": "split",
"children": [
{
"id": "51896b8d031f12a7",
"type": "tabs",
"children": [
{
"id": "16c60370ceca95ef",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "67df3fa6c50b7b8f",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "4735c1046deb84d5",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "fa8d807905c5f186",
"type": "split",
"children": [
{
"id": "15acd1bca30e4e69",
"type": "tabs",
"children": [
{
"id": "ec633bee723e26ed",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks"
}
},
{
"id": "76553812ae09d02a",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Welcome.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Welcome"
}
},
{
"id": "a90689d024131f8e",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "b05875d99c295b3e",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Welcome.md"
},
"icon": "lucide-list",
"title": "Outline of Welcome"
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"left-ribbon": {
"hiddenItems": {
"bases:Create new base": false,
"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-importer:Open Importer": false
}
},
"active": "16c60370ceca95ef",
"lastOpenFiles": [
"Icon\r",
"Apple Notes/Gift ideas ChristmasBirthday.md",
"Random & To Sort/The Tower.md",
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
"Christina/Feelings Conversations",
"Apple Notes/-250.md",
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
"Apple Notes/Animal Crossing/Ribbot.md",
"attachments/100 1.png",
"Apple Notes/Animal Crossing/Retro Action Items.md",
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
"Apple Notes/13.99+10.99+10.99+2.79=38.76.md",
"Apple Notes/Greg Feelings - Dec 4 2025.md",
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
"Apple Notes/Charlie advocating.md",
"Apple Notes/Most password is.md",
"Apple Notes/I have worked with the people below and they can attest to my work….md",
"Apple Notes/Parking.md",
"attachments/IMG_1115.jpeg",
"Apple Notes/New Note 20.md",
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
"attachments/Drawing 2.png",
"Apple Notes/Home events.md",
"Christina/Feelings Conversations/Christina Feelings - Oct 14 2025.md",
"attachments/IMG_6415.heic",
"attachments/Drawing 1.png",
"attachments/Drawing.png",
"attachments/Image.png",
"attachments/Feelings Chat 0528.jpeg",
"attachments/Pasted Graphic 2 1.png",
"attachments/mapstogpx202101793729.gpx",
"attachments/FavoriteLists_iTools_202101793649.json",
"attachments/Pasted Graphic 5.png",
"attachments/Pasted Graphic 4.png",
"attachments/iSpooferLicense.txt",
"attachments/Naka.gpx",
"attachments/Pasted Graphic 1.pdf",
"Apple Notes/Milwaukee 2025 Staff Notes",
"Apple Notes/Christina 1",
"Apple Notes/Christina"
]
}

View File

@@ -0,0 +1 @@
DÕ!,I,'剹8¡tꤪ>03É4Qêó

View File

@@ -0,0 +1,54 @@
# IgnoreList is a UTF-8 encoded .txt file that helps you specify single files, paths and rules
# for ignoring during the synchronization job. It supports "?" and "*" wildcard symbols.
#
#
# OS generated files #
$RECYCLE.BIN
$Recycle.Bin
System Volume Information
ehthumbs.db
desktop.ini
Thumbs.db
lost+found
.DocumentRevisions-V100
.TemporaryItems
.fseventsd
.icloud
.iCloud
.DS_Store
.DS_Store?
.Spotlight-V100
.Trashes
.Trash-*
.trashed-*
~*
*~
.~lock.*
*.part
*.filepart
.csync_journal.db
.csync_journal.db.tmp
*.swn
*.swp
*.swo
*.crdownload
.@__thumb
.thumbnails
._*
*.tmp
*.tmp.chck
.dropbox
.dropbox.attr
.dropbox.cache
.streams
.caches
.Statuses
.teamdrive
.SynologyWorkingDirectory
@eaDir
@SynoResource
#SynoRecycle
#snapshot
#recycle
.!@#$recycle
DfsrPrivate

View File

@@ -0,0 +1,8 @@
# StreamsList is a UTF-8 encoded .txt file that helps you specify alternate streams,
# xattrs and resource forks white list. It supports "?" and "*" wildcard symbols.
#
#
#
com.apple.metadata:_kMDItemUserTags
com.apple.ResourceFork
com.apple.metadata:kMDItemFinderComment

View File

@@ -0,0 +1,21 @@
<span style="color:#000ff;"><div ng-controller="loginController"></span>
<span style="color:#000ff;"><div ng-switch on="isUserLoggedIn()"></span>
<span style="color:#000ff;"><div ng-switch-when="false"></span>
<span style="color:#000ff;"><div class="jumbotron text-center"></span>
<span style="color:#000ff;"><h1>Login</h1></span>
<span style="color:#000ff;"><form ng-submit="login()"></span>
<span style="color:#000ff;"><input type="text" class="input-medium" placeholder="User Name" ng-model="username"></span>
<span style="color:#000ff;"><input type="password" class="input-medium" placeholder="Password" ng-model="password"></span>
<span style="color:#000ff;"><button id="loginButton" class="btn">Login</button></span>
<span style="color:#000ff;"></form></span>
<span style="color:#000ff;"></div></span>
<span style="color:#000ff;"></div></span>
<span style="color:#000ff;"><div ng-switch-when="true"></span>
<span style="color:#000ff;"><div class="jumbotron text-center"></span>
<span style="color:#000ff;"><h1>Logged In</h1></span>
<span style="color:#000ff;"><div>Welcome, {{user.firstname}} {{user.lastname}}! You are already logged in. Do you want to log out?</div></span>
<span style="color:#000ff;"><button id="loginButton" class="btn" ng-click="logout()">Logout</button></span>
<span style="color:#000ff;"></div></span>
<span style="color:#000ff;"></div></span>
<span style="color:#000ff;"></div></span>
<span style="color:#000ff;"></div></span>

View File

@@ -0,0 +1 @@
!4*&!shiny&!mime&!+togep&age0-320&!burm&!hound&!pinsir&!riolu&!shadow&!larv&!audino&!chime&!happ&!ching&!sable&!&!gible&!klink&!bagon&!.&!snorl&&!tyna&!absol&!mantine&!vull&!mank&!scyth&!paras&!shuck&!beld&!legendary&!mythical&!deino&!+stee&!aero&!&!oma&!hipp&!&!noiba&!goom&!dod&!arch&!shield&!lileep&!scraggy&!feeb&!ditto&!lapr&!mare&!mien&!drud&!ruff&!electab&!dratini&!&!Stant&!cry&!magma&!glace&!munch&!axew&!eleki&!berg&!mr&!karra&!pawn&!mawi&!&!gole&!poli&!timbur&!$&!sand&!panc&!shed&!mudk&!yama&!mag&!&!chatot&!flygo&!costume&!tyranit&!hera&!sewaddle&!tirt&!kanga

View File

@@ -0,0 +1 @@
<span style="font-family:Menlo-Regular;font-size:11pt;color:#191919ff;">"<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>500 Internal Server Error</title> </head><body> <h1>Internal Server Error</h1> <p>The server encountered an internal error or misconfiguration and was unable to complete your request.</p> <p>Please contact the server administrator at [no address given] to inform them of the time this error occurred, and the actions you performed just before this error.</p> <p>More information about this error may be available in the server error log.</p> <hr> <address>Apache/2.4.10 (Ubuntu) Server at time.gregrjacobs.com Port 80</address> </body></html> "</span>

View File

@@ -0,0 +1,13 @@
<p style="text-align:center;margin:0">
</p>
!addcom -cd=5 hai $(eval a={`:fraggi7HAI:`:`<:fraggi7HAI:770683282656329738:>`,};b=decodeURIComponent(`$(querystring)`);(`$(provider)`==`discord`?b.split(` `).map(x=>a[x]||x).join(` `):b).slice(0,400)||`No input!`)
$(eval a=decodeURIComponent(`fraggi7Hai`);`$(provider)`==`discord`&&a==`:fraggi7HAI:`?`<:fraggi7HAI:770705395450511451>`:a)
$(eval a=decodeURIComponent(`fraggi7Hai`);`$(provider)`==`discord`&&a==`fraggi7HAI`?`<:fraggi7SAD:770708500081803264>`: `fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI`)
$(eval a=decodeURIComponent(`:fraggi7Hai:`);`$(provider)`==`discord`&&a==`:fraggi7HAI:`?`<:fraggi7SAD:770708500081803264>`: `fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI fraggi7HAI @$(touser)`)

View File

@@ -0,0 +1 @@
!shiny& !shadow& !legendary& !mythical& !traded& !4*& !.& +skarm, +foon, +basti, +scragg, +ruff, +stunfisk, +licki, +zang, +skrelp, +clau, +bina, +beldum, +chansey, +ferro, +chinc, +maw, +sands, +pancham, +litwick, +sableye, +goomy, +turt, +gible, +deino, +zigzag, +noibat, carv, toget, stunky, unown, mienfoo, +charmand, +emolg, +torch, +bron, +num, +oddis, dweb, +squirtl, +bell, snorlax, +slak, +hitmon, nosepa

View File

@@ -0,0 +1 @@
!spin&!gas&!misd&!ted&!trub&!daru&!osha&!shup&!dusk&!drow&!fril&!see&!sudo&!rat&!drif&!4*&!bunn&!lit&!gulp&!.&!weed&!nido&!+eevee&!woo&!krab&!fletch&!psyd&&!reli&!wing&!&&!chinc&!tenta&!dweb&!hors&!bas&!carv

View File

@@ -0,0 +1,8 @@
<span style="color:#000ff;">//var text = JSON.parse(data);</span>
<span style="color:#000ff;">this.people = data;</span>
<span style="color:#000ff;">alert(this.people[0].first);</span>
<span style="color:#000ff;">});</span>
<span style="color:#000ff;">1t$@fuzzyM@tt3r</span>

View File

@@ -0,0 +1,6 @@
Top light above door,
Door and door lite
California shutters and window above it
Window facing out downstairs
Picture has the door that picture taken

View File

@@ -0,0 +1,2 @@
<span style="color:#000ff;">For August Bill Date</span>
<span style="color:#000ff;">Confirmation of Payment -</span>

View File

@@ -0,0 +1 @@
kobioshi

View File

@@ -0,0 +1,10 @@
(43.0018940, -81.2931301)
(42.9984492, -81.2304985)
(42.9995600, -81.2685309)
**"axios": "^1.8.4",**

View File

@@ -0,0 +1,4 @@
- https://themeforest.net/item/remark-responsive-bootstrap-4-admin-template/11989202?ref=cirvitis
- https://themeforest.net/item/fuse-angularjs-material-design-admin-template/12931855?ref=cirvitis&ref=cirvitis&clickthrough_id=809693669&redirect_back=true
- https://themeforest.net/item/angulr-bootstrap-admin-web-app-with-angularjs/8437259?ref=milkakula
- https://themeforest.net/item/material-design-admin-with-angularjs/13582227?ref=milkakula

View File

@@ -0,0 +1,3 @@
<span style="color:#000ff;">56.50 - Cell BB Classic</span>
<span style="color:#000ff;">598</span>

View File

@@ -0,0 +1,15 @@
1. Archiving Messages works but I do not see a section to view those that have been deleted in the API GET response
2. DONE - Deleting a task we need to see the archived tasks
3. Log when a user has read a message
4. Password protected a folder in photos/scrapbook -saving and update
5. Expenses - Adjust for 3 -4 payers and re-work who is on top (aggregate API call) to reflect this
6. Commenting on journal entries needs to be done
7. Profile field level permissions need to be thought of and implemented
8. Expenses Payments (and possibly the expenses themselves) need to have a proposed status and accepted by the other parent
9. Need permissions to work on the backend and only show items that has the original owner matching or else the people that have read access
10. somehow in the backend we will need to accomplish joining the permissions row to the object to quickly show what the item is in the UI
11. remove requirement for category id on contact saving
12. File Vault permissions needs to be changed over to scrapbook or whatever we want to call it for Photos/Files section as that merged Photos and File Vault
13. Interacting with journal entry that is archived needs to restore it to the active list
14. Interacting with task entry that is archived needs to restore it to the active list
15. TBD

View File

@@ -0,0 +1 @@
0011010000110010

View File

@@ -0,0 +1 @@
Canada

View File

@@ -0,0 +1,10 @@
360 but is 323.88 for the year
500 but would be 480
2 years is 25 percent off which would be
611 but is 489 for two years
887 now it's 710
Coming up in two months
Those were used

View File

@@ -0,0 +1,7 @@
ldn
40k people
older app
Angular Spring Java
ADP
CDK Global
$38-39

View File

@@ -0,0 +1,2 @@
Dominique
Looking for her

View File

@@ -0,0 +1,10 @@
- [ ] 2
- [ ] 6
- [ ] 10
- [ ] 11
- [ ] 14
- [ ] 17
- [ ] 21
- [ ] 22
- [ ] 24
- [ ] 25

View File

@@ -0,0 +1 @@
<span style="color:#000ff;">1440</span>

View File

@@ -0,0 +1 @@
Gerry Degeeere

View File

@@ -0,0 +1,3 @@
**(unknown attachment: com.apple.notes.inlinetextattachment.calculateresult)**
38.76/2 **(unknown attachment: com.apple.notes.inlinetextattachment.calculateresult)**

View File

@@ -0,0 +1,5 @@
143.92
[Cooperators_st_thomas@cooperators.ca](mailto:Cooperators_st_thomas@cooperators.ca)
519.633.5347
Include date of pickup on bill of sale

View File

@@ -0,0 +1 @@
<span style="font-family:LucidaGrande;color:#191919ff;">1436846399</span>

View File

@@ -0,0 +1,7 @@
<span style="color:#000ff;">HS51 - HS22s</span>
<span style="color:#000ff;">250GB hard drives</span>
<span style="color:#000ff;">LTE</span>
<span style="color:#000ff;">Generator without fuel 2-3 days</span>

View File

@@ -0,0 +1,32 @@
136 Seen/Caught
——————————
Can not get yet:
——————————
Region Exclusives:
——————————
#083 - <a href="http://bulbapedia.bulbagarden.net/wiki/Farfetch%27d_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;"><u>Farfetch'd</u></a>
#115 - <a href="http://bulbapedia.bulbagarden.net/wiki/Kangaskhan_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;">Kangaskhan</a>
#122 - <a href="http://bulbapedia.bulbagarden.net/wiki/Mr._Mime_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;"><u>Mr. Mime</u></a>
——————————
Not Yet in Game:
——————————
#144 - <a href="http://bulbapedia.bulbagarden.net/wiki/Articuno_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;"><u>Articuno</u></a>
#145 - <a href="http://bulbapedia.bulbagarden.net/wiki/Zapdos_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;">Zapdos</a>
#146 - <a href="http://bulbapedia.bulbagarden.net/wiki/Moltres_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;"><u>Moltres</u></a>
#132 - <a href="http://bulbapedia.bulbagarden.net/wiki/Ditto_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;">Ditto</a>
#150 - <a href="http://bulbapedia.bulbagarden.net/wiki/Mewtwo_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;">Mewtwo</a>
#151 - <a href="http://bulbapedia.bulbagarden.net/wiki/Mew_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;"><u>Mew</u></a>
——————————
still need
---------------------
#065 - [Alakazam](http://bulbapedia.bulbagarden.net/wiki/Alakazam_(Pok%C3%A9mon)) - 77 / 100 Candies
#105 - <a href="http://bulbapedia.bulbagarden.net/wiki/Marowak_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;">Marowak</a> - 32 / 50 Candies
#139 - <a href="http://bulbapedia.bulbagarden.net/wiki/Omastar_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;"><u>Omastar</u></a> - 36 / 50 Candies
——————————
nice to haves:
——————————
#129 - <a href="http://bulbapedia.bulbagarden.net/wiki/Magikarp_(Pok%C3%A9mon)" rel="noopener" class="external-link" target="_blank" style="color:#dca0dff;"><u>Magikarp</u></a> - 163 Candies

View File

@@ -0,0 +1 @@
<span style="color:#000ff;">playpen high chair fridge</span>

View File

@@ -0,0 +1,8 @@
- [x] 2063 - Need to figure out the find accounts sosl query to add in type of account filter
- [x] 1697 - Attendance form needs to save attendance - DONE tested by Greg
- [ ] 2015 - Need to have apex for renewing membership
- [ ] 1724 - Need to have apex for cancelling membership
- [ ] 1669 - Need to know how to get information on third party account and who they owe money to
- [ ] 1670 - Need to have button on dashboard
- [ ] 2013 - Need button on dashboard
- [ ] 1758 - tell what facilities at a location are for childcare

View File

@@ -0,0 +1 @@
18003871963

View File

@@ -0,0 +1 @@
Homewood - Ask to speak to council right away

View File

@@ -0,0 +1 @@
Scotia fraud dept

View File

@@ -0,0 +1 @@
377WE69ZJRN

View File

@@ -0,0 +1 @@
18554462667

View File

@@ -0,0 +1 @@
<span style="color:#000ff;"><span class=“label label-xs bg-primary”>New</span></span>

View File

@@ -0,0 +1,20 @@
<span style="color:#000ff;">US FEDEX</span>
<span style="color:#000ff;">Austin Te Flintrock Terrance to O Werz</span>
<span style="color:#000ff;">print a PDF Copy</span>
<span style="color:#000ff;">sharon@flintrocksuites.com</span>
<span style="color:#000ff;">cc Mike</span>
<span style="color:#000ff;">greg s, mike and bk, alex</span>
<span style="color:#000ff;">9AM Sydny Time</span>
<span style="color:#000ff;">CANADA FEDEX:</span>
<span style="color:#000ff;">Va</span>
<span style="color:#000ff;">Dealervu</span>
<span style="color:#000ff;">B00tstrap</span>
<span style="color:#000ff;">36859804</span>
<span style="color:#000ff;">85077483</span>

View File

@@ -0,0 +1 @@
<span style="color:#000ff;">————————————</span>

View File

@@ -0,0 +1,12 @@
Traceback (most recent call last):
File "/usr/src/app/pogom/account.py", line 123, in rpc_login_sequence
request.call()
File "/usr/local/lib/python2.7/site-packages/pgoapi/pgoapi.py", line 251, in call
response = request.request(self._api_endpoint, self._req_method_list, self.get_position(), use_dict)
File "/usr/local/lib/python2.7/site-packages/pgoapi/rpc_api.py", line 131, in request
self.request_proto = self.request_proto or self._build_main_request(subrequests, player_position)
File "/usr/local/lib/python2.7/site-packages/pgoapi/rpc_api.py", line 213, in _build_main_request
self._hash_engine.hash(sig.timestamp, request.latitude, request.longitude, request.accuracy, ticket_serialized, sig.session_hash, request.requests)
File "/usr/local/lib/python2.7/site-packages/pgoapi/hash_server.py", line 50, in hash
raise BadHashRequestException("400: Bad request, error: {}".format(response.text))
BadHashRequestException: 400: Bad request, error: Unauthorized

View File

@@ -0,0 +1 @@
# 2037

View File

@@ -0,0 +1,2 @@
Nashville, TN
[37203](tel:37203)

View File

@@ -0,0 +1,8 @@
2273
2271
2277
2285
2283
2278
2276
2036

View File

@@ -0,0 +1,11 @@
112 jysk
13.54 Dairy Queen
8.98 disney
1.67 mr sub
New York
14.68 sunrise
60 metro metro
18.88 GCB
74.47 crabby joes
10.93 r sub
39.84 digitalocean

View File

@@ -0,0 +1 @@
<span style="color:#000ff;">24315</span>

View File

@@ -0,0 +1 @@
28.25

View File

@@ -0,0 +1,4 @@
29 weeks since June 20th = 1276hr at 44hr / wk
1501 - 1276 = 225hrs of overtime
getPackageItemInfo {"locationId": "a0H58000001sfboEAA", "packageId":"a0L58000005bk0PEAQ"}

View File

@@ -0,0 +1 @@
#2G892GV9

View File

@@ -0,0 +1,5 @@
$25 LCBO gift card
- [ ] Appreciate you clothing the kids and making sure laundry is done
- [ ] I appreciate you making sure our bed is warm for the winter!

View File

@@ -0,0 +1,17 @@
3 people =
- [ ] Stuart
- [ ] Shrink
- [ ] Lawyer
Permissions and Messaging Example
———
Stuart invites shrink and lawyer as private
Stuart shrink and lawyer contact and makes both visible to each other
If both are not visible to each other then on msg sent Check permissions for each other and if not allowed to see then send back a notification that they will be prompted to allow to see
—————————————————————————————
My profile - hidden from shown to for people you have permissions to see
- So I would be able to allow people to see me or not see me. I think this needs a new route to show as well as one to update. I can do the FE for this as soon as the scheduler is done

View File

@@ -0,0 +1,7 @@
<span style="color:#000ff;">Adam Frank</span>
<span style="color:#000ff;">306.203.1295</span>
<span style="color:#000ff;">adamf@ffun.com</span>
<span style="color:#000ff;">HDY-Parts03 - Troys</span>
<span style="color:#000ff;">WPA2 Mix Mode</span>

View File

@@ -0,0 +1,3 @@
Missreavus nests:
35.116116,136.990772
36.491031,139.997397

View File

@@ -0,0 +1,8 @@
<span style="color:#000ff;">132</span>
<span style="color:#000ff;">252</span>
<span style="color:#000ff;">132</span>
<span style="color:#000ff;">99</span>
<span style="color:#000ff;">90</span>
<span style="color:#000ff;">220</span>
<span style="color:#000ff;">248.2</span>
<span style="color:#000ff;">116</span>

View File

@@ -0,0 +1 @@
335 cash no invoice

View File

@@ -0,0 +1,3 @@
500 for the wave
[[IMG_2050.jpg]]

View File

@@ -0,0 +1 @@
500 for the wave

View File

@@ -0,0 +1 @@
Branden Thomas

View File

@@ -0,0 +1 @@
Dads mom pays for cloths but dad wont claim that expense and mom doesnt need to reimburse dad for that expense

View File

@@ -0,0 +1,6 @@
!shiny& !shadow& !legendary& !mythical& !traded& !4*& !.& +skarm, +foon, +basti, +scragg, +ruff, +stunfisk, +licki, +zang, +clau, +bina, +chansey, +ferro, +maw, +pancham, +litwick, +sableye, +goomy, +turt, +gible, +deino, +zigzag, +noibat, toget, stunky, unown, mienfoo, +emolg, +bron, +num, +oddis, dweb, +bell, snorlax, +slak, +hitmon, nosepa,+swinu,+tang, +chik
Delete
age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched& !4*& !xs& !xl& !.& !+skarm& !+foon& !+basti& !+scragg& !+ruff& !+stunfisk& !+licki& !+zang& !+clau& !+bina& !+chansey& !+ferro& !+chinc& !+maw& !+sands& !+pancham& !+litwick& !+sableye& !+goomy& !+turt& !+gible& !+deino& !+zigzag& !+noibat&!toget&!stunky&!unown&!mienfoo&!+emolg&!+bron&!+num&!+oddis&!dweb&!+bell&!snorlax&!+slak&!+hitmon&!galar&!nosepa&!+swin&!tang&!+chik

View File

@@ -0,0 +1,67 @@
40.724721,-73.703405, 2.5min
40.747064,-73.701348, 4min - Set 1
40.706586,-73.737671, 6min
40.699425,-73.845210, 3min
40.699440,-73.882031, 0.1min - Set 2
40.701288,-73.887472, 3min
40.675929,-73.903023, 3min
40.661843,-73.869097, 6min - Set 3
40.623150,-73.937670, 0.1min
40.618476,-73.946524, 3min
40.644401,-73.964913, 3min - Set 4
40.669483,-73.951000, 1.5min
40.680405,-73.948089, 1.5min
40.694012,-73.940451, 1.5min - Set 5
40.692843,-73.920901, 2.5min
40.711281,-73.934510, 1.5min
40.718244,-73.949958, 0.1min - Set 6
40.712053,-73.951160, 1.5min
40.702303,-73.957714, 2.5min
40.721458,-73.974311, 4min - Set 7
40.742151,-73.933889, 1.5min
40.742030,-73.920660, 2.5min
40.760768,-73.932537, 2.5min - Set 8
40.776284,-73.910706, 1.5min
40.782857,-73.924688, 2.5min
40.787594,-73.950447, 2.5min - Set 9
40.804521,-73.937123, 3min
40.835344,-73.919159, 2.5min
40.836462,-73.888959, 1.5min - Set 10
40.848145,-73.897640, 0.1min
40.852808,-73.894695, 2.5min
40.862962,-73.920601, 0.1min - Set 11
40.866077,-73.929535, 0.1min
40.859942,-73.929016, 3min
40.826464,-73.941936, 1.5min - Set 12
40.815419,-73.955891, 2.5min
40.796015,-73.974714, 1.5min
40.786375,-73.971532, 3min - Set 13
40.757528,-73.976953, 0.1min
40.753001,-73.972020, 1.5min
40.750039,-73.990258, 0min - Set 14
40.747539,-73.986659, 0.1min
40.742021,-73.990431, 0.1min
40.743181,-73.997301, 0min - Set 15
40.741895,-73.999471, 0.1min
40.736180,-74.003905, 1.5min
40.722820,-73.994326, 0.1min - Set 16
40.718597,-74.002686, 3min
40.688515,-74.016057, 1.5min
40.696018,-73.995849, 0min - Set 17
40.699436,-73.994718, 0min
40.695928,-73.993845, 1.5min
40.690664,-73.975399, 0.1min - Set 18
40.686011,-73.980726, 1.5min
40.668132,-73.979154, 1.5min
40.661621,-73.993315, 0.1min - Set 19
40.656729,-73.995779, 1.5min
40.639818,-73.998674, 2.5min
40.623334,-73.983849, 1.5min - Set 20
40.610102,-73.974965, 3min
40.575922,-73.988908, 4.5min
40.618237,-74.026192, 5min - Set 21
40.634878,-74.104857, 5min
40.619751,-74.173587, 7min
40.532247,-74.136507, END - Set 22

View File

@@ -0,0 +1,3 @@
**(unknown attachment: com.apple.notes.inlinetextattachment.calculateresult)**
225+236+247+258+269+280 **(unknown attachment: com.apple.notes.inlinetextattachment.calculateresult)**

View File

@@ -0,0 +1 @@
Agam

View File

@@ -0,0 +1,5 @@
<span style="color:#000ff;">b jacobs</span>
<span style="color:#000ff;">5198548747</span>
<span style="color:#000ff;">jan8 1968</span>
<span style="color:#000ff;">n6n 1c7</span>
<span style="color:#000ff;">M00n$ho7</span>

View File

@@ -0,0 +1,231 @@
42.984137,-81.251698
42.984043,-81.250816
42.984097,-81.250269
42.98401,-81.249673
42.983706,-81.249945
42.983489,-81.250715
42.983285,-81.250675
42.982938,-81.250156
42.982789,-81.249805
42.982743,-81.250508
42.98244,-81.250918
42.982152,-81.251216
42.982188,-81.251503
42.981983,-81.251542
42.982051,-81.25175
42.981928,-81.251837
42.981631,-81.251769
42.981501,-81.251151
42.981856,-81.250791
42.982034,-81.250288
42.98232,-81.250192
42.981706,-81.2493
42.98179,-81.24884
42.982002,-81.248738
42.982269,-81.24888
42.98273,-81.248693
42.982847,-81.248165
42.98256,-81.24806
42.982081,-81.247609
42.981708,-81.247508
42.981512,-81.246937
42.98213,-81.24655
42.982048,-81.246168
42.982497,-81.24677
42.982741,-81.246887
42.982608,-81.247247
42.983051,-81.247474
42.983644,-81.247374
42.983747,-81.247116
42.984099,-81.247349
42.984477,-81.24749
42.984736,-81.247628
42.985053,-81.247772
42.985165,-81.247255
42.984557,-81.246944
42.984542,-81.246363
42.984145,-81.246759
42.983286,-81.246659
42.983417,-81.246103
42.98338,-81.245519
42.983701,-81.245474
42.983919,-81.245562
42.984432,-81.245531
42.984383,-81.245251
42.984731,-81.245597
42.984882,-81.244937
42.98513,-81.245125
42.985284,-81.245687
42.985876,-81.246249
42.985834,-81.246746
42.986164,-81.246717
42.986498,-81.246096
42.987151,-81.246162
42.987524,-81.246364
42.987337,-81.246728
42.987559,-81.247046
42.987666,-81.246825
42.987666,-81.246825
42.987894,-81.246147
42.988343,-81.246615
42.988568,-81.246909
42.988892,-81.246558
42.988963,-81.24753
42.988149,-81.247562
42.988062,-81.247416
42.987958,-81.247501
42.987958,-81.247501
42.987585,-81.24784
42.987615,-81.248547
42.987204,-81.248762
42.987026,-81.249217
42.986845,-81.250003
42.987043,-81.250097
42.986891,-81.250831
42.987724,-81.251131
42.98774,-81.25055
42.988062,-81.249704
42.988018,-81.249675
42.988039,-81.248915
42.988396,-81.248743
42.988396,-81.248743
42.988565,-81.248609
42.988565,-81.248609
42.988833,-81.248787
42.989098,-81.24913
42.989028,-81.249436
42.989419,-81.24926
42.989746,-81.249717
42.989746,-81.249717
42.989979,-81.249438
42.989979,-81.249438
42.990354,-81.249362
42.990482,-81.249296
42.990482,-81.249296
42.990482,-81.249296
42.990317,-81.248826
42.990549,-81.248387
42.990763,-81.248456
42.989736,-81.248404
42.989603,-81.248611
42.988598,-81.24923
42.98899,-81.250122
42.9886,-81.250858
42.989349,-81.250901
42.989884,-81.251384
42.990405,-81.250885
42.990252,-81.250203
42.98759,-81.252761
42.986528,-81.253798
42.986161,-81.253265
42.985727,-81.252549
42.985093,-81.252471
42.98553,-81.251396
42.9853,-81.250681
42.985086,-81.250568
42.984981,-81.250778
42.985211,-81.250146
42.985511,-81.250181
42.98581,-81.24991
42.985603,-81.249648
42.985764,-81.249282
42.985969,-81.25029
42.985882,-81.250757
42.984953,-81.24965
42.984481,-81.249155
42.98454,-81.248629
42.984083,-81.248519
42.983923,-81.248653
42.983975,-81.248993
42.983565,-81.248543
42.983617,-81.248207
42.983501,-81.248149
42.983672,-81.248035
42.983173,-81.249121
42.982551,-81.25139
42.982849,-81.251553
42.983222,-81.251625
42.983184,-81.252258
42.983325,-81.252682
42.983757,-81.252761
42.983745,-81.253671
42.983809,-81.254789
42.983809,-81.254789
42.983154,-81.254497
42.982822,-81.254426
42.982554,-81.254494
42.982403,-81.254769
42.982335,-81.254199
42.982342,-81.254187
42.98219,-81.253982
42.982189,-81.253966
42.982119,-81.254246
42.982413,-81.253778
42.982413,-81.253778
42.982413,-81.253778
42.98267,-81.253895
42.982854,-81.253375
42.982898,-81.253035
42.981282,-81.25318
42.98017,-81.252215
42.980577,-81.25078
42.981166,-81.250717
42.980926,-81.249633
42.98103,-81.249299
42.981167,-81.248714
42.981182,-81.248549
42.980996,-81.248517
42.981507,-81.248233
42.983399,-81.245046
42.98312,-81.244729
42.982755,-81.244387
42.983558,-81.244377
42.983738,-81.24379
42.983793,-81.243324
42.984221,-81.24331
42.984423,-81.244487
42.98513,-81.243812
42.985256,-81.243383
42.985337,-81.243003
42.985337,-81.243003
42.985496,-81.242585
42.985496,-81.242585
42.985278,-81.242494
42.98564,-81.242235
42.986182,-81.242457
42.985767,-81.241442
42.986269,-81.241079
42.986323,-81.240898
42.986868,-81.240961
42.987419,-81.242803
42.986405,-81.24428
42.986359,-81.244936
42.985398,-81.244217
42.984967,-81.241859
42.984679,-81.241785
42.982955,-81.243147
42.985596,-81.254622
42.985274,-81.255108
42.98498,-81.255363
42.98456,-81.255161
42.984544,-81.255178
42.985548,-81.255449
42.985933,-81.256576
42.987862,-81.255867
42.987958,-81.255634
42.98806,-81.254742
42.988887,-81.256615
42.982936,-81.255891
42.982458,-81.255467
42.982064,-81.255759
42.981902,-81.255898
42.981825,-81.255555
42.981499,-81.255566
42.981245,-81.255885
42.981415,-81.256058
42.981487,-81.256509
42.981027,-81.256487
42.980674,-81.256245
42.980453,-81.256429
42.980673,-81.255612
42.9838,-81.2515

View File

@@ -0,0 +1,130 @@
42.984137,-81.251698
42.984043,-81.250816
42.984097,-81.250269
42.98401,-81.249673
42.983706,-81.249945
42.983489,-81.250715
42.983285,-81.250675
42.982938,-81.250156
42.98232,-81.250192
42.982034,-81.250288
42.981856,-81.250791
42.981501,-81.251151
42.981631,-81.251769
42.981983,-81.251542
42.982551,-81.25139
42.982849,-81.251553
42.983184,-81.252258
42.983325,-81.252682
42.983757,-81.252761
42.983745,-81.253671
42.983809,-81.254789
42.983809,-81.254789
42.983154,-81.254497
42.982822,-81.254426
42.982403,-81.254769
42.982335,-81.254199
42.98219,-81.253982
42.982413,-81.253778
42.982413,-81.253778
42.982898,-81.253035
42.98244,-81.250918
42.981706,-81.2493
42.98179,-81.24884
42.982269,-81.24888
42.98273,-81.248693
42.982847,-81.248165
42.98256,-81.24806
42.982081,-81.247609
42.981708,-81.247508
42.981512,-81.246937
42.98213,-81.24655
42.982048,-81.246168
42.982497,-81.24677
42.982608,-81.247247
42.983286,-81.246659
42.983417,-81.246103
42.98338,-81.245519
42.98312,-81.244729
42.982755,-81.244387
42.983558,-81.244377
42.983738,-81.24379
42.983793,-81.243324
42.984221,-81.24331
42.984423,-81.244487
42.984882,-81.244937
42.98513,-81.245125
42.985398,-81.244217
42.98513,-81.243812
42.985337,-81.243003
42.985337,-81.243003
42.985496,-81.242585
42.985496,-81.242585
42.986405,-81.24428
42.986498,-81.246096
42.985876,-81.246249
42.985834,-81.246746
42.985165,-81.247255
42.984736,-81.247628
42.984557,-81.246944
42.984542,-81.246363
42.984145,-81.246759
42.984099,-81.247349
42.983644,-81.247374
42.983672,-81.248035
42.983617,-81.248207
42.983565,-81.248543
42.983975,-81.248993
42.984481,-81.249155
42.98454,-81.248629
42.985211,-81.250146
42.9853,-81.250681
42.984981,-81.250778
42.98553,-81.251396
42.985882,-81.250757
42.985969,-81.25029
42.985603,-81.249648
42.985764,-81.249282
42.986845,-81.250003
42.987043,-81.250097
42.986891,-81.250831
42.98774,-81.25055
42.988018,-81.249675
42.988039,-81.248915
42.988396,-81.248743
42.988565,-81.248609
42.988833,-81.248787
42.988598,-81.24923
42.989028,-81.249436
42.98899,-81.250122
42.9886,-81.250858
42.989349,-81.250901
42.989884,-81.251384
42.990252,-81.250203
42.989746,-81.249717
42.989746,-81.249717
42.989979,-81.249438
42.990482,-81.249296
42.990482,-81.249296
42.990482,-81.249296
42.990317,-81.248826
42.990549,-81.248387
42.990763,-81.248456
42.989736,-81.248404
42.989603,-81.248611
42.988963,-81.24753
42.988892,-81.246558
42.988343,-81.246615
42.988062,-81.247416
42.987958,-81.247501
42.987585,-81.24784
42.987666,-81.246825
42.987337,-81.246728
42.987524,-81.246364
42.987151,-81.246162
42.987204,-81.248762
42.987026,-81.249217
42.984432,-81.245531
42.981507,-81.248233
42.981282,-81.25318
42.983803,-81.251573

View File

@@ -0,0 +1,3 @@
<span style="color:#000ff;">839</span>
<span style="color:#000ff;">not updatable</span>

View File

@@ -0,0 +1 @@
# 4536

Some files were not shown because too many files have changed in this diff Show More