├── .github └── ISSUE_TEMPLATE │ ├── 📜-Docs.md │ ├── 🔍-Feature.md │ ├── 🚨-Bug.md │ └── 🧹-Chore.md ├── .gitignore ├── .swiftlint.yml ├── .tuist-version ├── Plugins └── coffice │ ├── Package.swift │ ├── Plugin.swift │ ├── ProjectDescriptionHelpers │ └── LocalHelper.swift │ └── Sources │ └── tuist-my-cli │ └── main.swift ├── Projects ├── Coffice │ ├── .swiftlint.yml │ ├── Project.swift │ ├── Resources │ │ ├── Asset.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 1024.png │ │ │ │ ├── 114.png │ │ │ │ ├── 120.png │ │ │ │ ├── 180.png │ │ │ │ ├── 29.png │ │ │ │ ├── 40.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ └── Contents.json │ │ │ ├── COFFICE.imageset │ │ │ │ ├── COFFICE.png │ │ │ │ ├── COFFICE@2x.png │ │ │ │ ├── COFFICE@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CofficeImages-100px │ │ │ │ ├── Contents.json │ │ │ │ └── ic-placeholder.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic-placeholder.png │ │ │ │ │ ├── ic-placeholder@2x.png │ │ │ │ │ └── ic-placeholder@3x.png │ │ │ ├── CofficeImages-14px │ │ │ │ ├── Contents.json │ │ │ │ └── pencil-line-14px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pencil-line-14px.png │ │ │ │ │ ├── pencil-line-14px@2x.png │ │ │ │ │ └── pencil-line-14px@3x.png │ │ │ ├── CofficeImages-18px │ │ │ │ ├── Contents.json │ │ │ │ ├── apple-logo-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── apple-logo-18px.png │ │ │ │ │ ├── apple-logo@2x-18px.png │ │ │ │ │ └── apple-logo@3x-18px.png │ │ │ │ ├── arrow-drop-down-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-down-line-18px.png │ │ │ │ │ ├── arrow-drop-down-line@2x-18px.png │ │ │ │ │ └── arrow-drop-down-line@3x-18px.png │ │ │ │ ├── checkbox-circle-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── checkbox-circle-fill-18px.png │ │ │ │ │ ├── checkbox-circle-fill@2x-18px.png │ │ │ │ │ └── checkbox-circle-fill@3x-18px.png │ │ │ │ ├── close-circle-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── close-circle-fill-18px.png │ │ │ │ │ ├── close-circle-fill@2x-18px.png │ │ │ │ │ └── close-circle-fill@3x-18px.png │ │ │ │ ├── error-warning-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-fill-18px.png │ │ │ │ │ ├── error-warning-fill@2x-18px.png │ │ │ │ │ └── error-warning-fill@3x-18px.png │ │ │ │ ├── error-warning-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-line-18px.png │ │ │ │ │ ├── error-warning-line@2x-18px.png │ │ │ │ │ └── error-warning-line@3x-18px.png │ │ │ │ ├── file-copy-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── file-copy-line-18px.png │ │ │ │ │ ├── file-copy-line@2x-18px.png │ │ │ │ │ └── file-copy-line@3x-18px.png │ │ │ │ ├── global-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── global-line-18px.png │ │ │ │ │ ├── global-line@2x-18px.png │ │ │ │ │ └── global-line@3x-18px.png │ │ │ │ ├── home-6-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── home-6-line-18px.png │ │ │ │ │ ├── home-6-line@2x-18px.png │ │ │ │ │ └── home-6-line@3x-18px.png │ │ │ │ ├── information-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── information-fill-18px.png │ │ │ │ │ ├── information-fill@2x-18px.png │ │ │ │ │ └── information-fill@3x-18px.png │ │ │ │ ├── information-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── information-line-18px.png │ │ │ │ │ ├── information-line@2x-18px.png │ │ │ │ │ └── information-line@3x-18px.png │ │ │ │ ├── kakao-logo-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── kakao-logo-18px.png │ │ │ │ │ ├── kakao-logo@2x-18px.png │ │ │ │ │ └── kakao-logo@3x-18px.png │ │ │ │ ├── kakao-logo-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── kakao-logo-fill-18px.png │ │ │ │ │ ├── kakao-logo-fill-18px@2x.png │ │ │ │ │ └── kakao-logo-fill-18px@3x.png │ │ │ │ ├── map-pin-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── map-pin-fill-18px.png │ │ │ │ │ ├── map-pin-fill@2x-18px.png │ │ │ │ │ └── map-pin-fill@3x-18px.png │ │ │ │ ├── map-pin-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── map-pin-line-18px.png │ │ │ │ │ ├── map-pin-line@2x-18px.png │ │ │ │ │ └── map-pin-line@3x-18px.png │ │ │ │ ├── more-2-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── more-2-fill-18px.png │ │ │ │ │ ├── more-2-fill@2x-18px.png │ │ │ │ │ └── more-2-fill@3x-18px.png │ │ │ │ ├── more-2-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── more-2-line-18px.png │ │ │ │ │ ├── more-2-line@2x-18px.png │ │ │ │ │ └── more-2-line@3x-18px.png │ │ │ │ ├── pencil-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pencil-line-18px.png │ │ │ │ │ ├── pencil-line@2x-18px.png │ │ │ │ │ └── pencil-line@3x-18px.png │ │ │ │ ├── phone-fill-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── phone-fill-18px.png │ │ │ │ │ ├── phone-fill@2x-18px.png │ │ │ │ │ └── phone-fill@3x-18px.png │ │ │ │ ├── refresh-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── refresh-18px.png │ │ │ │ │ ├── refresh@2x-18px.png │ │ │ │ │ └── refresh@3x-18px.png │ │ │ │ └── time-line-18px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── time-line-18px.png │ │ │ │ │ ├── time-line@2x-18px.png │ │ │ │ │ └── time-line@3x-18px.png │ │ │ ├── CofficeImages-20px │ │ │ │ ├── Contents.json │ │ │ │ ├── bookmark-unselected-20px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-unselected-20px.png │ │ │ │ │ ├── bookmark-unselected@2x-20px.png │ │ │ │ │ └── bookmark-unselected@3x-20px.png │ │ │ │ └── unselected-20px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── unselected-20px.png │ │ │ │ │ ├── unselected-20px@2x.png │ │ │ │ │ └── unselected-20px@3x.png │ │ │ ├── CofficeImages-24px │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow-down-s-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-down-s-fill-24px.png │ │ │ │ │ ├── arrow-down-s-fill@2x-24px.png │ │ │ │ │ └── arrow-down-s-fill@3x-24px.png │ │ │ │ ├── arrow-down-s-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-down-s-line-24px.png │ │ │ │ │ ├── arrow-down-s-line@2x-24px.png │ │ │ │ │ └── arrow-down-s-line@3x-24px.png │ │ │ │ ├── arrow-drop-down-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-down-fill-24px.png │ │ │ │ │ ├── arrow-drop-down-fill@2x-24px.png │ │ │ │ │ └── arrow-drop-down-fill@3x-24px.png │ │ │ │ ├── arrow-drop-down-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-down-line-24px.png │ │ │ │ │ ├── arrow-drop-down-line@2x-24px.png │ │ │ │ │ └── arrow-drop-down-line@3x-24px.png │ │ │ │ ├── arrow-drop-left-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-left-fill-24px.png │ │ │ │ │ ├── arrow-drop-left-fill@2x-24px.png │ │ │ │ │ └── arrow-drop-left-fill@3x-24px.png │ │ │ │ ├── arrow-drop-left-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-left-line-24px.png │ │ │ │ │ ├── arrow-drop-left-line@2x-24px.png │ │ │ │ │ └── arrow-drop-left-line@3x-24px.png │ │ │ │ ├── arrow-drop-right-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-right-fill-24px.png │ │ │ │ │ ├── arrow-drop-right-fill@2x-24px.png │ │ │ │ │ └── arrow-drop-right-fill@3x-24px.png │ │ │ │ ├── arrow-drop-right-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-right-line-24px.png │ │ │ │ │ ├── arrow-drop-right-line@2x-24px.png │ │ │ │ │ └── arrow-drop-right-line@3x-24px.png │ │ │ │ ├── arrow-drop-up-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-up-fill-24px.png │ │ │ │ │ ├── arrow-drop-up-fill@2x-24px.png │ │ │ │ │ └── arrow-drop-up-fill@3x-24px.png │ │ │ │ ├── arrow-drop-up-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-drop-up-line-24px.png │ │ │ │ │ ├── arrow-drop-up-line@2x-24px.png │ │ │ │ │ └── arrow-drop-up-line@3x-24px.png │ │ │ │ ├── arrow-left-s-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-left-s-fill-24px.png │ │ │ │ │ ├── arrow-left-s-fill@2x-24px.png │ │ │ │ │ └── arrow-left-s-fill@3x-24px.png │ │ │ │ ├── arrow-left-s-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-left-s-line-24px.png │ │ │ │ │ ├── arrow-left-s-line@2x-24px.png │ │ │ │ │ └── arrow-left-s-line@3x-24px.png │ │ │ │ ├── arrow-left-topbar-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-left-topbar-line-24px.png │ │ │ │ │ ├── arrow-left-topbar-line@2x-24px.png │ │ │ │ │ └── arrow-left-topbar-line@3x-24px.png │ │ │ │ ├── arrow-right-s-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-right-s-fill-24px.png │ │ │ │ │ ├── arrow-right-s-fill@2x-24px.png │ │ │ │ │ └── arrow-right-s-fill@3x-24px.png │ │ │ │ ├── arrow-right-s-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-right-s-line-24px.png │ │ │ │ │ ├── arrow-right-s-line@2x-24px.png │ │ │ │ │ └── arrow-right-s-line@3x-24px.png │ │ │ │ ├── bookmark-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-fill-24px.png │ │ │ │ │ ├── bookmark-fill@2x-24px.png │ │ │ │ │ └── bookmark-fill@3x-24px.png │ │ │ │ ├── bookmark-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-line-24px.png │ │ │ │ │ ├── bookmark-line@2x-24px.png │ │ │ │ │ └── bookmark-line@3x-24px.png │ │ │ │ ├── checkbox-circle-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── checkbox-circle-fill-24px.png │ │ │ │ │ ├── checkbox-circle-fill@2x-24px.png │ │ │ │ │ └── checkbox-circle-fill@3x-24px.png │ │ │ │ ├── checkbox-circle-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── checkbox-circle-line-24px.png │ │ │ │ │ ├── checkbox-circle-line@2x-24px.png │ │ │ │ │ └── checkbox-circle-line@3x-24px.png │ │ │ │ ├── close-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── close-24px.png │ │ │ │ │ ├── close@2x-24px.png │ │ │ │ │ └── close@3x-24px.png │ │ │ │ ├── error-warning-fill-1-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-fill-1-24px.png │ │ │ │ │ ├── error-warning-fill@2x-1-24px.png │ │ │ │ │ └── error-warning-fill@3x-1-24px.png │ │ │ │ ├── error-warning-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-fill-24px.png │ │ │ │ │ ├── error-warning-fill@2x-24px.png │ │ │ │ │ └── error-warning-fill@3x-24px.png │ │ │ │ ├── error-warning-line-1-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-line-1-24px.png │ │ │ │ │ ├── error-warning-line@2x-1-24px.png │ │ │ │ │ └── error-warning-line@3x-1-24px.png │ │ │ │ ├── error-warning-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-line-24px.png │ │ │ │ │ ├── error-warning-line@2x-24px.png │ │ │ │ │ └── error-warning-line@3x-24px.png │ │ │ │ ├── filter-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── filter-fill-24px.png │ │ │ │ │ ├── filter-fill@2x-24px.png │ │ │ │ │ └── filter-fill@3x-24px.png │ │ │ │ ├── filter-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── filter-line-24px.png │ │ │ │ │ ├── filter-line@2x-24px.png │ │ │ │ │ └── filter-line@3x-24px.png │ │ │ │ ├── list-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── list-24px.png │ │ │ │ │ ├── list@2x-24px.png │ │ │ │ │ └── list@3x-24px.png │ │ │ │ ├── map-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── map-line-24px.png │ │ │ │ │ ├── map-line@2x-24px.png │ │ │ │ │ └── map-line@3x-24px.png │ │ │ │ ├── map-pin-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── map-pin-fill-24px.png │ │ │ │ │ ├── map-pin-fill@2x-24px.png │ │ │ │ │ └── map-pin-fill@3x-24px.png │ │ │ │ ├── map-pin-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── map-pin-line-24px.png │ │ │ │ │ ├── map-pin-line@2x-24px.png │ │ │ │ │ └── map-pin-line@3x-24px.png │ │ │ │ ├── marker-unselected-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── marker-unselected.png │ │ │ │ │ ├── marker-unselected@2x.png │ │ │ │ │ └── marker-unselected@3x.png │ │ │ │ ├── more-2-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── more-2-fill-24px.png │ │ │ │ │ ├── more-2-fill@2x-24px.png │ │ │ │ │ └── more-2-fill@3x-24px.png │ │ │ │ ├── more-2-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── more-2-line-24px.png │ │ │ │ │ ├── more-2-line@2x-24px.png │ │ │ │ │ └── more-2-line@3x-24px.png │ │ │ │ ├── pencil-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pencil-line-24px.png │ │ │ │ │ ├── pencil-line@2x-24px.png │ │ │ │ │ └── pencil-line@3x-24px.png │ │ │ │ ├── phone-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── phone-fill-24px.png │ │ │ │ │ ├── phone-fill@2x-24px.png │ │ │ │ │ └── phone-fill@3x-24px.png │ │ │ │ ├── search-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── search-line-24px.png │ │ │ │ │ ├── search-line@2x-24px.png │ │ │ │ │ └── search-line@3x-24px.png │ │ │ │ ├── share-box-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── share-box-fill-24px.png │ │ │ │ │ ├── share-box-fill@2x-24px.png │ │ │ │ │ └── share-box-fill@3x-24px.png │ │ │ │ ├── time-fill-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── time-fill-24px.png │ │ │ │ │ ├── time-fill@2x-24px.png │ │ │ │ │ └── time-fill@3x-24px.png │ │ │ │ ├── time-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── time-line-24px.png │ │ │ │ │ ├── time-line@2x-24px.png │ │ │ │ │ └── time-line@3x-24px.png │ │ │ │ └── upload-2-line-24px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── upload-2-line-24px.png │ │ │ │ │ ├── upload-2-line@2x-24px.png │ │ │ │ │ └── upload-2-line@3x-24px.png │ │ │ ├── CofficeImages-28-36px │ │ │ │ ├── Contents.json │ │ │ │ ├── bookmark-selected-28-36px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-selected-28-36px.png │ │ │ │ │ ├── bookmark-selected@2x-28-36px.png │ │ │ │ │ └── bookmark-selected@3x-28-36px.png │ │ │ │ └── selected-28-36px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── selected-28-36px.png │ │ │ │ │ ├── selected-28-36px@2x.png │ │ │ │ │ └── selected-28-36px@3x.png │ │ │ ├── CofficeImages-36-47px │ │ │ │ ├── Contents.json │ │ │ │ └── marker-selected-36-47px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── marker-selected-36-47px.png │ │ │ │ │ ├── marker-selected@2x-36-47px.png │ │ │ │ │ └── marker-selected@3x-36-47px.png │ │ │ ├── CofficeImages-36px │ │ │ │ ├── Contents.json │ │ │ │ ├── bookmark-fill-36px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-fill-36px.png │ │ │ │ │ ├── bookmark-fill@2x-36px.png │ │ │ │ │ └── bookmark-fill@3x-36px.png │ │ │ │ ├── bookmark-unselected-36px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-unselected-36px.png │ │ │ │ │ ├── bookmark-unselected@2x-36px.png │ │ │ │ │ └── bookmark-unselected@3x-36px.png │ │ │ │ └── navigation-fill-36px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── navigation-fill-36px.png │ │ │ │ │ ├── navigation-fill@2x-36px.png │ │ │ │ │ └── navigation-fill@3x-36px.png │ │ │ ├── CofficeImages-40px │ │ │ │ ├── CofficeImages-44px │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-navi-selected-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bookmark-navi-selected-44px.png │ │ │ │ │ │ ├── bookmark-navi-selected@2x-44px.png │ │ │ │ │ │ └── bookmark-navi-selected@3x-44px.png │ │ │ │ │ ├── bookmark-navi-unselected-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bookmark-navi-unselected-44px.png │ │ │ │ │ │ ├── bookmark-navi-unselected@2x-44px.png │ │ │ │ │ │ └── bookmark-navi-unselected@3x-44px.png │ │ │ │ │ ├── cafe_size_large-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cafe_size_large-44px.png │ │ │ │ │ │ ├── cafe_size_large-44px@2x.png │ │ │ │ │ │ └── cafe_size_large-44px@3x.png │ │ │ │ │ ├── cafe_size_medium-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cafe_size_medium-44px.png │ │ │ │ │ │ ├── cafe_size_medium-44px@2x.png │ │ │ │ │ │ └── cafe_size_medium-44px@3x.png │ │ │ │ │ ├── cafe_size_small-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cafe_size_small-44px.png │ │ │ │ │ │ ├── cafe_size_small-44px@2x.png │ │ │ │ │ │ └── cafe_size_small-44px@3x.png │ │ │ │ │ ├── groupseat_false-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── groupseat_false-44px.png │ │ │ │ │ │ ├── groupseat_false-44px@2x.png │ │ │ │ │ │ └── groupseat_false-44px@3x.png │ │ │ │ │ ├── groupseat_true-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── groupseat_true-44px.png │ │ │ │ │ │ ├── groupseat_true-44px@2x.png │ │ │ │ │ │ └── groupseat_true-44px@3x.png │ │ │ │ │ ├── home-navi-selected-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── home-navi-selected-44px.png │ │ │ │ │ │ ├── home-navi-selected@2x-44px.png │ │ │ │ │ │ └── home-navi-selected@3x-44px.png │ │ │ │ │ ├── home-navi-unselected-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── home-navi-unselected-44px.png │ │ │ │ │ │ ├── home-navi-unselected@2x-44px.png │ │ │ │ │ │ └── home-navi-unselected@3x-44px.png │ │ │ │ │ ├── mypage-navi-selected-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mypage-navi-selected-44px.png │ │ │ │ │ │ ├── mypage-navi-selected@2x-44px.png │ │ │ │ │ │ └── mypage-navi-selected@3x-44px.png │ │ │ │ │ ├── mypage-navi-unselected-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mypage-navi-unselected-44px.png │ │ │ │ │ │ ├── mypage-navi-unselected@2x-44px.png │ │ │ │ │ │ └── mypage-navi-unselected@3x-44px.png │ │ │ │ │ ├── outlet_few-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outlet_few-44px.png │ │ │ │ │ │ ├── outlet_few-44px@2x.png │ │ │ │ │ │ └── outlet_few-44px@3x.png │ │ │ │ │ ├── outlet_many-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outlet_many-44px.png │ │ │ │ │ │ ├── outlet_many-44px@2x.png │ │ │ │ │ │ └── outlet_many-44px@3x.png │ │ │ │ │ └── outlet_several-44px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outlet_several-44px.png │ │ │ │ │ │ ├── outlet_several-44px@2x.png │ │ │ │ │ │ └── outlet_several-44px@3x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow-left-s-line-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-left-s-line-40px.png │ │ │ │ │ ├── arrow-left-s-line@2x-40px.png │ │ │ │ │ └── arrow-left-s-line@3x-40px.png │ │ │ │ ├── arrow-right-s-line-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow-right-s-line-40px.png │ │ │ │ │ ├── arrow-right-s-line@2x-40px.png │ │ │ │ │ └── arrow-right-s-line@3x-40px.png │ │ │ │ ├── bookmark-fill-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-fill-40px.png │ │ │ │ │ ├── bookmark-fill@2x-40px.png │ │ │ │ │ └── bookmark-fill@3x-40px.png │ │ │ │ ├── bookmark-line-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-line-40px.png │ │ │ │ │ ├── bookmark-line@2x-40px.png │ │ │ │ │ └── bookmark-line@3x-40px.png │ │ │ │ ├── close-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── close-40px.png │ │ │ │ │ ├── close@2x-40px.png │ │ │ │ │ └── close@3x-40px.png │ │ │ │ ├── error-warning-fill-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-fill-40px.png │ │ │ │ │ ├── error-warning-fill@2x-40px.png │ │ │ │ │ └── error-warning-fill@3x-40px.png │ │ │ │ ├── error-warning-line-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── error-warning-line-40px.png │ │ │ │ │ ├── error-warning-line@2x-40px.png │ │ │ │ │ └── error-warning-line@3x-40px.png │ │ │ │ ├── share-box-fill-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── share-box-fill-40px.png │ │ │ │ │ ├── share-box-fill@2x-40px.png │ │ │ │ │ └── share-box-fill@3x-40px.png │ │ │ │ └── user-profile-40px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── user-profile-40px.png │ │ │ │ │ ├── user-profile@2x-40px.png │ │ │ │ │ └── user-profile@3x-40px.png │ │ │ ├── CofficeImages-48-52px │ │ │ │ ├── Contents.json │ │ │ │ └── bookmark-selected-48-52px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark-selected-48-52px.png │ │ │ │ │ ├── bookmark-selected@2x-48-52px.png │ │ │ │ │ └── bookmark-selected@3x-48-52px.png │ │ │ ├── CofficeImages-48px │ │ │ │ ├── Contents.json │ │ │ │ ├── bookmark_floating_selected-48px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark_floating_selected-48px.png │ │ │ │ │ ├── bookmark_floating_selected@2x-48px.png │ │ │ │ │ └── bookmark_floating_selected@3x-48px.png │ │ │ │ ├── bookmark_floating_unselected-48px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bookmark_floating_unselected-48px.png │ │ │ │ │ ├── bookmark_floating_unselected@2x-48px.png │ │ │ │ │ └── bookmark_floating_unselected@3x-48px.png │ │ │ │ ├── clock_floating_selected-48px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── clock_floating_selected-48px.png │ │ │ │ │ ├── clock_floating_selected-48px@2x.png │ │ │ │ │ └── clock_floating_selected-48px@3x.png │ │ │ │ ├── clock_floating_unselected-48px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── clock_floating_unselected-48px.png │ │ │ │ │ ├── clock_floating_unselected-48px@2x.png │ │ │ │ │ └── clock_floating_unselected-48px@3x.png │ │ │ │ └── current_position_floating-48px.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── current_position_floating-48px.png │ │ │ │ │ ├── current_position_floating@2x-48px.png │ │ │ │ │ └── current_position_floating@3x-48px.png │ │ │ ├── Contents.json │ │ │ ├── cafe-placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cafe-placeholder.png │ │ │ │ ├── cafe-placeholder@2x.png │ │ │ │ └── cafe-placeholder@3x.png │ │ │ ├── cafeImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cafeImage.jpeg │ │ │ ├── login-app-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── login-app-logo.png │ │ │ │ ├── login-app-logo@2x.png │ │ │ │ └── login-app-logo@3x.png │ │ │ └── saved-list-fail-image-placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── saved-list-fail-image-placeholder.png │ │ │ │ ├── saved-list-fail-image-placeholder@2x.png │ │ │ │ └── saved-list-fail-image-placeholder@3x.png │ │ ├── Colors.xcassets │ │ │ ├── Contents.json │ │ │ ├── grayScale1.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale10.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale2.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale3.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale4.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale5.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale6.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale7.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale8.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayScale9.colorset │ │ │ │ └── Contents.json │ │ │ ├── kakao.colorset │ │ │ │ └── Contents.json │ │ │ ├── red.colorset │ │ │ │ └── Contents.json │ │ │ ├── secondary0.colorset │ │ │ │ └── Contents.json │ │ │ ├── secondary1.colorset │ │ │ │ └── Contents.json │ │ │ ├── secondary2.colorset │ │ │ │ └── Contents.json │ │ │ └── secondary3.colorset │ │ │ │ └── Contents.json │ │ ├── DeviceModels.json │ │ ├── dummy │ │ └── public │ │ │ ├── static │ │ │ ├── Pretendard-Black.otf │ │ │ ├── Pretendard-Bold.otf │ │ │ ├── Pretendard-ExtraBold.otf │ │ │ ├── Pretendard-ExtraLight.otf │ │ │ ├── Pretendard-Light.otf │ │ │ ├── Pretendard-Medium.otf │ │ │ ├── Pretendard-Regular.otf │ │ │ ├── Pretendard-SemiBold.otf │ │ │ ├── Pretendard-Thin.otf │ │ │ └── alternative │ │ │ │ ├── Pretendard-Black.ttf │ │ │ │ ├── Pretendard-Bold.ttf │ │ │ │ ├── Pretendard-ExtraBold.ttf │ │ │ │ ├── Pretendard-ExtraLight.ttf │ │ │ │ ├── Pretendard-Light.ttf │ │ │ │ ├── Pretendard-Medium.ttf │ │ │ │ ├── Pretendard-Regular.ttf │ │ │ │ ├── Pretendard-SemiBold.ttf │ │ │ │ └── Pretendard-Thin.ttf │ │ │ └── variable │ │ │ └── PretendardVariable.ttf │ ├── Sources │ │ ├── App │ │ │ ├── AppCoordinatorCore.swift │ │ │ ├── AppCoordinatorView.swift │ │ │ ├── AppDelegate.swift │ │ │ ├── AppScreenCore.swift │ │ │ ├── CafeApp.swift │ │ │ ├── CommonComponents │ │ │ │ ├── BubbleMessage │ │ │ │ │ ├── BubbleMessageCore.swift │ │ │ │ │ └── BubbleMessageView.swift │ │ │ │ ├── CommonBottomSheet │ │ │ │ │ ├── BottomSheet.swift │ │ │ │ │ └── BottomSheetCore.swift │ │ │ │ ├── CommonWebView.swift │ │ │ │ ├── Fonts.swift │ │ │ │ ├── ServiceAreaPopup │ │ │ │ │ ├── ServiceAreaPopup.swift │ │ │ │ │ └── ServiceAreaPopupView.swift │ │ │ │ └── Toast │ │ │ │ │ ├── ToastConfiguration.swift │ │ │ │ │ └── ToastView.swift │ │ │ ├── Dependencies │ │ │ │ ├── APIClient.swift │ │ │ │ ├── AccountClient.swift │ │ │ │ ├── BookmarkAPIClient.swift │ │ │ │ ├── CheckNicknameAPIClient.swift │ │ │ │ ├── HealthCheckClient.swift │ │ │ │ ├── LocationManager.swift │ │ │ │ ├── ReviewAPIClient.swift │ │ │ │ ├── SearchPlaceAPIClient.swift │ │ │ │ └── SearchWordAPIClient.swift │ │ │ ├── Entities │ │ │ │ ├── Address.swift │ │ │ │ ├── Cafe │ │ │ │ │ ├── Cafe.swift │ │ │ │ │ ├── CafeFilters.swift │ │ │ │ │ ├── CafeGroupSeatLevel.swift │ │ │ │ │ ├── CapacityLevel.swift │ │ │ │ │ ├── DrinkType.swift │ │ │ │ │ ├── ElectricOutletLevel.swift │ │ │ │ │ ├── FoodType.swift │ │ │ │ │ └── RestroomType.swift │ │ │ │ ├── MapMarker.swift │ │ │ │ ├── MapMarkerType.swift │ │ │ │ ├── OpeningInformation.swift │ │ │ │ ├── RecentSearchWord.swift │ │ │ │ ├── RequestValue │ │ │ │ │ ├── PlaceRequestValue.swift │ │ │ │ │ ├── ReviewEditRequestValue.swift │ │ │ │ │ ├── ReviewUploadRequestValue.swift │ │ │ │ │ ├── ReviewsRequestValue.swift │ │ │ │ │ ├── SearchPlaceRequestValue.swift │ │ │ │ │ └── SearchWordUploadRequestValue.swift │ │ │ │ ├── ResponseValue │ │ │ │ │ ├── CafeSearchResponse.swift │ │ │ │ │ ├── CheckNicknameResponse.swift │ │ │ │ │ ├── CrowdednessResponse.swift │ │ │ │ │ └── GetReviewResponse.swift │ │ │ │ ├── SortDescriptor.swift │ │ │ │ ├── User.swift │ │ │ │ └── WayPoint.swift │ │ │ ├── Extensions │ │ │ │ ├── Bool+Extensions.swift │ │ │ │ ├── Bundle+Extensions.swift │ │ │ │ ├── CLLocationCoordinate2D+Extensions.swift │ │ │ │ ├── CofficeFont+Extensions.swift │ │ │ │ ├── CofficeImages+Extensions.swift │ │ │ │ ├── Collection+Extensions.swift │ │ │ │ ├── String+Extensions.swift │ │ │ │ ├── UIApplication+Extensions.swift │ │ │ │ ├── UIDevice+Extensions.swift │ │ │ │ ├── UINavigationController+Extensions.swift │ │ │ │ ├── UITextView+Extensions.swift │ │ │ │ └── View+Extensions.swift │ │ │ ├── Login │ │ │ │ ├── LoginCoordinatorCore.swift │ │ │ │ ├── LoginCoordinatorView.swift │ │ │ │ ├── LoginCore.swift │ │ │ │ ├── LoginError.swift │ │ │ │ ├── LoginScreenCore.swift │ │ │ │ ├── LoginServiceTermsBottomSheetView.swift │ │ │ │ ├── LoginServiceTermsSheetCore.swift │ │ │ │ ├── LoginType.swift │ │ │ │ └── LoginView.swift │ │ │ ├── Main │ │ │ │ ├── Home │ │ │ │ │ ├── HomeCoordinatorCore.swift │ │ │ │ │ ├── HomeCoordinatorView.swift │ │ │ │ │ ├── HomeCore.swift │ │ │ │ │ ├── HomeScreenCore.swift │ │ │ │ │ └── HomeView.swift │ │ │ │ ├── MainCoordinatorCore.swift │ │ │ │ ├── MainCoordinatorView.swift │ │ │ │ ├── MyPage │ │ │ │ │ ├── AppServiceTerms │ │ │ │ │ │ ├── AppServiceTermsCore.swift │ │ │ │ │ │ └── AppServiceTermsView.swift │ │ │ │ │ ├── Contact │ │ │ │ │ │ ├── ContactEmailView.swift │ │ │ │ │ │ └── ContactEmailViewState.swift │ │ │ │ │ ├── Coordinator+Screen │ │ │ │ │ │ ├── MyPageCoordinatorCore.swift │ │ │ │ │ │ ├── MyPageCoordinatorView.swift │ │ │ │ │ │ └── MyPageScreenCore.swift │ │ │ │ │ ├── DevTest │ │ │ │ │ │ ├── DevTestCore.swift │ │ │ │ │ │ └── DevTestView.swift │ │ │ │ │ ├── EditProfile │ │ │ │ │ │ ├── EditProfileCore.swift │ │ │ │ │ │ └── EditProfileView.swift │ │ │ │ │ ├── LocationServiceTerms │ │ │ │ │ │ ├── LocationServiceTermsCore.swift │ │ │ │ │ │ └── LocationServiceTermsView.swift │ │ │ │ │ ├── MyPageCore.swift │ │ │ │ │ ├── MyPageView.swift │ │ │ │ │ └── PrivacyPolicy │ │ │ │ │ │ ├── PrivacyPolicyCore.swift │ │ │ │ │ │ └── PrivacyPolicyView.swift │ │ │ │ ├── SavedList │ │ │ │ │ ├── SavedListCoordinatorCore.swift │ │ │ │ │ ├── SavedListCoordinatorView.swift │ │ │ │ │ ├── SavedListCore.swift │ │ │ │ │ ├── SavedListScreenCore.swift │ │ │ │ │ └── SavedListView.swift │ │ │ │ └── Search │ │ │ │ │ ├── CafeCardView.swift │ │ │ │ │ ├── CafeDetail │ │ │ │ │ ├── CafeDetailCore.swift │ │ │ │ │ ├── CafeDetailHeaderCore.swift │ │ │ │ │ ├── CafeDetailHeaderView.swift │ │ │ │ │ ├── CafeDetailMenuCore.swift │ │ │ │ │ ├── CafeDetailMenuView.swift │ │ │ │ │ ├── CafeDetailNaverMapView.swift │ │ │ │ │ ├── CafeDetailSubInfoCore.swift │ │ │ │ │ ├── CafeDetailSubInfoView.swift │ │ │ │ │ ├── CafeDetailView.swift │ │ │ │ │ ├── Review │ │ │ │ │ │ ├── CafeReviewOptionButtonsCore.swift │ │ │ │ │ │ ├── CafeReviewOptionButtonsView.swift │ │ │ │ │ │ ├── CafeReviewTextView.swift │ │ │ │ │ │ ├── CafeReviewWriteCore.swift │ │ │ │ │ │ ├── CafeReviewWriteView.swift │ │ │ │ │ │ └── KeyboardPresentationReadable.swift │ │ │ │ │ └── UserReviewCell.swift │ │ │ │ │ ├── CafeFilterBottomSheet │ │ │ │ │ ├── CafeFilterBottomSheet.swift │ │ │ │ │ ├── CafeFilterBottomSheetView.swift │ │ │ │ │ ├── CafeFilterBottomSheetViewState.swift │ │ │ │ │ └── CafeFilterInformation.swift │ │ │ │ │ ├── CafeFilterMenusCore.swift │ │ │ │ │ ├── CafeFilterMenusView.swift │ │ │ │ │ ├── CafeMapCore.swift │ │ │ │ │ ├── CafeMapView.swift │ │ │ │ │ ├── CafeSearch │ │ │ │ │ ├── CafeSearchCore.swift │ │ │ │ │ ├── CafeSearchListCell.swift │ │ │ │ │ ├── CafeSearchListCore.swift │ │ │ │ │ ├── CafeSearchListView.swift │ │ │ │ │ ├── CafeSearchView.swift │ │ │ │ │ ├── PlaceCellView.swift │ │ │ │ │ ├── SearchCoordinatorCore.swift │ │ │ │ │ ├── SearchCoordinatorView.swift │ │ │ │ │ ├── SearchScreenCore.swift │ │ │ │ │ └── WaypointCellView.swift │ │ │ │ │ ├── CafeTagTextView.swift │ │ │ │ │ └── NaverMap │ │ │ │ │ ├── NaverMapCore.swift │ │ │ │ │ └── NaverMapView.swift │ │ │ ├── PreferenceKeys │ │ │ │ └── TabBarSizePreferenceKey.swift │ │ │ ├── TabBar │ │ │ │ ├── TabBarCore.swift │ │ │ │ └── TabBarView.swift │ │ │ ├── UserDefaultsKeyString.swift │ │ │ └── ViewModifier │ │ │ │ ├── CafeTagTextModifier.swift │ │ │ │ ├── CustomNavigationBarModifier.swift │ │ │ │ ├── HiddenViewModifier.swift │ │ │ │ ├── IfModifier.swift │ │ │ │ └── RoundedCornerViewModifier.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Tests │ │ └── dummy │ └── coffice.entitlements ├── Network │ ├── .swiftlint.yml │ ├── Project.swift │ ├── Resources │ │ └── dummy │ ├── Sources │ │ ├── CoreNetwork.swift │ │ ├── DTOs │ │ │ ├── Requests │ │ │ │ ├── CheckNicknameRequestDTO.swift │ │ │ │ ├── LoginRequestDTO.swift │ │ │ │ ├── PlaceRequestDTO.swift │ │ │ │ ├── ReviewEditRequestDTO.swift │ │ │ │ ├── ReviewUploadRequestDTO.swift │ │ │ │ ├── ReviewsRequestDTO.swift │ │ │ │ ├── SaveToFolderRequestDTO.swift │ │ │ │ ├── SearchPlaceRequestDTO.swift │ │ │ │ └── SearchWordUploadRequestDTO.swift │ │ │ └── Responses │ │ │ │ ├── Coordinate+AddressDTO.swift │ │ │ │ ├── LoginResponseDTO.swift │ │ │ │ ├── MemberResponseDTO.swift │ │ │ │ ├── PlaceResponseDTO.swift │ │ │ │ ├── ReviewResponseDTO.swift │ │ │ │ ├── SearchPlaceResponseDTO.swift │ │ │ │ ├── SearchWordResponseDTO.swift │ │ │ │ └── WayPointDTO.swift │ │ ├── Extensions │ │ │ └── URLComponentsExtension.swift │ │ ├── HTTPMethod.swift │ │ ├── KeyChainManager.swift │ │ ├── NetworkException.swift │ │ └── NetworkResult.swift │ └── Tests │ │ └── dummy └── coffice.entitlements ├── README.md ├── Tuist ├── Config.swift ├── Dependencies.swift └── ProjectDescriptionHelpers │ └── Project+Templates.swift ├── Workspace.swift └── Xcconfig └── dummy /.github/ISSUE_TEMPLATE/📜-Docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "📜 Docs" 3 | about: 문서 작성 관련 작업내용을 설명해주세요. 4 | title: "[Docs] Docs Task" 5 | labels: Docs 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## 📜 Docs 11 | 12 | ### 앱에서 발생한 Issue를 설명해주세요. 13 | 14 | A clear and concise description of what the bug is. 15 | 16 | 17 | 18 | ### 수정 후 예상되는 동작을 설명해주세요. 19 | 20 | A clear and concise description of what you expected to happen. 21 | 22 | 23 | 24 | ### 스크린샷 25 | 26 | If applicable, add screenshots to help explain your problem. 27 | 28 | 29 | 30 | 31 | ### 비고 32 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🔍-Feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "🔍 Feature" 3 | about: 앱에서 추가할 기능을 설명해주세요. 4 | title: "[Feat] Feature Request" 5 | labels: Feature 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## 🔍 Feature 11 | 12 | ### 추가할 기능에 대해 설명해주세요. 13 | 14 | 15 | 16 | ### 스크린샷 17 | 18 | If applicable, add screenshots to help explain your problem. 19 | 20 | 21 | 22 | ### 비고 23 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- 1 | 2 | # Default Rules에서 비활성화할 규칙 3 | disabled_rules: 4 | - unused_closure_parameter 5 | - type_body_length 6 | 7 | # Default Rules에 없지만 활성화하고 싶은 규칙 8 | opt_in_rules: 9 | # .count == 0 보다는 .isEmpty를 사용하는 것이 좋습니다. 10 | # - ref : https://realm.github.io/SwiftLint/empty_count.html 11 | - empty_count 12 | 13 | # 컨벤션 체크하지 않을 파일을 지정합니다. 14 | # ex) - YappProject/AppView.swift 15 | excluded: 16 | -------------------------------------------------------------------------------- /.tuist-version: -------------------------------------------------------------------------------- 1 | 3.28.0 -------------------------------------------------------------------------------- /Plugins/coffice/Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version: 5.4 2 | 3 | import PackageDescription 4 | 5 | let package = Package( 6 | name: "MyPlugin", 7 | products: [ 8 | .executable(name: "tuist-my-cli", targets: ["tuist-my-cli"]), 9 | ], 10 | targets: [ 11 | .executableTarget( 12 | name: "tuist-my-cli" 13 | ), 14 | ] 15 | ) 16 | -------------------------------------------------------------------------------- /Plugins/coffice/Plugin.swift: -------------------------------------------------------------------------------- 1 | import ProjectDescription 2 | 3 | let plugin = Plugin(name: "MyPlugin") -------------------------------------------------------------------------------- /Plugins/coffice/ProjectDescriptionHelpers/LocalHelper.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public struct LocalHelper { 4 | let name: String 5 | 6 | public init(name: String) { 7 | self.name = name 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Plugins/coffice/Sources/tuist-my-cli/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, from your Tuist Task") -------------------------------------------------------------------------------- /Projects/Coffice/.swiftlint.yml: -------------------------------------------------------------------------------- 1 | 2 | # Default Rules에서 비활성화할 규칙 3 | disabled_rules: 4 | - unused_closure_parameter 5 | - type_body_length 6 | 7 | # Default Rules에 없지만 활성화하고 싶은 규칙 8 | opt_in_rules: 9 | # .count == 0 보다는 .isEmpty를 사용하는 것이 좋습니다. 10 | # - ref : https://realm.github.io/SwiftLint/empty_count.html 11 | - empty_count 12 | 13 | # 컨벤션 체크하지 않을 파일을 지정합니다. 14 | # ex) - YappProject/AppView.swift 15 | excluded: 16 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/COFFICE.imageset/COFFICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/COFFICE.imageset/COFFICE.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/COFFICE.imageset/COFFICE@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/COFFICE.imageset/COFFICE@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/COFFICE.imageset/COFFICE@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/COFFICE.imageset/COFFICE@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/COFFICE.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "COFFICE.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "COFFICE@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "COFFICE@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/ic-placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ic-placeholder.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "ic-placeholder@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "ic-placeholder@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/ic-placeholder.imageset/ic-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/ic-placeholder.imageset/ic-placeholder.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/ic-placeholder.imageset/ic-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/ic-placeholder.imageset/ic-placeholder@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/ic-placeholder.imageset/ic-placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-100px/ic-placeholder.imageset/ic-placeholder@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/pencil-line-14px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pencil-line-14px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "pencil-line-14px@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "pencil-line-14px@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/pencil-line-14px.imageset/pencil-line-14px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/pencil-line-14px.imageset/pencil-line-14px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/pencil-line-14px.imageset/pencil-line-14px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/pencil-line-14px.imageset/pencil-line-14px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/pencil-line-14px.imageset/pencil-line-14px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-14px/pencil-line-14px.imageset/pencil-line-14px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/apple-logo-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "apple-logo-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "apple-logo@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "apple-logo@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/apple-logo-18px.imageset/apple-logo-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/apple-logo-18px.imageset/apple-logo-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/apple-logo-18px.imageset/apple-logo@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/apple-logo-18px.imageset/apple-logo@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/apple-logo-18px.imageset/apple-logo@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/apple-logo-18px.imageset/apple-logo@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/arrow-drop-down-line-18px.imageset/arrow-drop-down-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/arrow-drop-down-line-18px.imageset/arrow-drop-down-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/arrow-drop-down-line-18px.imageset/arrow-drop-down-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/arrow-drop-down-line-18px.imageset/arrow-drop-down-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/arrow-drop-down-line-18px.imageset/arrow-drop-down-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/arrow-drop-down-line-18px.imageset/arrow-drop-down-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/checkbox-circle-fill-18px.imageset/checkbox-circle-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/checkbox-circle-fill-18px.imageset/checkbox-circle-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/checkbox-circle-fill-18px.imageset/checkbox-circle-fill@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/checkbox-circle-fill-18px.imageset/checkbox-circle-fill@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/checkbox-circle-fill-18px.imageset/checkbox-circle-fill@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/checkbox-circle-fill-18px.imageset/checkbox-circle-fill@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/close-circle-fill-18px.imageset/close-circle-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/close-circle-fill-18px.imageset/close-circle-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/close-circle-fill-18px.imageset/close-circle-fill@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/close-circle-fill-18px.imageset/close-circle-fill@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/close-circle-fill-18px.imageset/close-circle-fill@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/close-circle-fill-18px.imageset/close-circle-fill@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-fill-18px.imageset/error-warning-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-fill-18px.imageset/error-warning-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-fill-18px.imageset/error-warning-fill@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-fill-18px.imageset/error-warning-fill@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-fill-18px.imageset/error-warning-fill@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-fill-18px.imageset/error-warning-fill@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-line-18px.imageset/error-warning-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-line-18px.imageset/error-warning-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-line-18px.imageset/error-warning-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-line-18px.imageset/error-warning-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-line-18px.imageset/error-warning-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/error-warning-line-18px.imageset/error-warning-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/file-copy-line-18px.imageset/file-copy-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/file-copy-line-18px.imageset/file-copy-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/file-copy-line-18px.imageset/file-copy-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/file-copy-line-18px.imageset/file-copy-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/file-copy-line-18px.imageset/file-copy-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/file-copy-line-18px.imageset/file-copy-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/global-line-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "global-line-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "global-line@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "global-line@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/global-line-18px.imageset/global-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/global-line-18px.imageset/global-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/global-line-18px.imageset/global-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/global-line-18px.imageset/global-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/global-line-18px.imageset/global-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/global-line-18px.imageset/global-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/home-6-line-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "home-6-line-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "home-6-line@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "home-6-line@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/home-6-line-18px.imageset/home-6-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/home-6-line-18px.imageset/home-6-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/home-6-line-18px.imageset/home-6-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/home-6-line-18px.imageset/home-6-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/home-6-line-18px.imageset/home-6-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/home-6-line-18px.imageset/home-6-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-fill-18px.imageset/information-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-fill-18px.imageset/information-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-fill-18px.imageset/information-fill@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-fill-18px.imageset/information-fill@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-fill-18px.imageset/information-fill@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-fill-18px.imageset/information-fill@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-line-18px.imageset/information-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-line-18px.imageset/information-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-line-18px.imageset/information-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-line-18px.imageset/information-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-line-18px.imageset/information-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/information-line-18px.imageset/information-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "kakao-logo-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "kakao-logo@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "kakao-logo@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-18px.imageset/kakao-logo-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-18px.imageset/kakao-logo-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-18px.imageset/kakao-logo@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-18px.imageset/kakao-logo@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-18px.imageset/kakao-logo@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-18px.imageset/kakao-logo@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-fill-18px.imageset/kakao-logo-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-fill-18px.imageset/kakao-logo-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-fill-18px.imageset/kakao-logo-fill-18px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-fill-18px.imageset/kakao-logo-fill-18px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-fill-18px.imageset/kakao-logo-fill-18px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/kakao-logo-fill-18px.imageset/kakao-logo-fill-18px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-fill-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "map-pin-fill-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "map-pin-fill@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "map-pin-fill@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-fill-18px.imageset/map-pin-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-fill-18px.imageset/map-pin-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-fill-18px.imageset/map-pin-fill@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-fill-18px.imageset/map-pin-fill@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-fill-18px.imageset/map-pin-fill@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-fill-18px.imageset/map-pin-fill@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-line-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "map-pin-line-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "map-pin-line@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "map-pin-line@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-line-18px.imageset/map-pin-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-line-18px.imageset/map-pin-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-line-18px.imageset/map-pin-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-line-18px.imageset/map-pin-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-line-18px.imageset/map-pin-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/map-pin-line-18px.imageset/map-pin-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-fill-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-2-fill-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "more-2-fill@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "more-2-fill@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-fill-18px.imageset/more-2-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-fill-18px.imageset/more-2-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-fill-18px.imageset/more-2-fill@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-fill-18px.imageset/more-2-fill@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-fill-18px.imageset/more-2-fill@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-fill-18px.imageset/more-2-fill@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-line-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-2-line-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "more-2-line@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "more-2-line@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-line-18px.imageset/more-2-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-line-18px.imageset/more-2-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-line-18px.imageset/more-2-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-line-18px.imageset/more-2-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-line-18px.imageset/more-2-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/more-2-line-18px.imageset/more-2-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/pencil-line-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pencil-line-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "pencil-line@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "pencil-line@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/pencil-line-18px.imageset/pencil-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/pencil-line-18px.imageset/pencil-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/pencil-line-18px.imageset/pencil-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/pencil-line-18px.imageset/pencil-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/pencil-line-18px.imageset/pencil-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/pencil-line-18px.imageset/pencil-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/phone-fill-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "phone-fill-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "phone-fill@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "phone-fill@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/phone-fill-18px.imageset/phone-fill-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/phone-fill-18px.imageset/phone-fill-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/phone-fill-18px.imageset/phone-fill@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/phone-fill-18px.imageset/phone-fill@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/phone-fill-18px.imageset/phone-fill@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/phone-fill-18px.imageset/phone-fill@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/refresh-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "refresh-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "refresh@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "refresh@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/refresh-18px.imageset/refresh-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/refresh-18px.imageset/refresh-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/refresh-18px.imageset/refresh@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/refresh-18px.imageset/refresh@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/refresh-18px.imageset/refresh@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/refresh-18px.imageset/refresh@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/time-line-18px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "time-line-18px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "time-line@2x-18px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "time-line@3x-18px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/time-line-18px.imageset/time-line-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/time-line-18px.imageset/time-line-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/time-line-18px.imageset/time-line@2x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/time-line-18px.imageset/time-line@2x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/time-line-18px.imageset/time-line@3x-18px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-18px/time-line-18px.imageset/time-line@3x-18px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/bookmark-unselected-20px.imageset/bookmark-unselected-20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/bookmark-unselected-20px.imageset/bookmark-unselected-20px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/bookmark-unselected-20px.imageset/bookmark-unselected@2x-20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/bookmark-unselected-20px.imageset/bookmark-unselected@2x-20px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/bookmark-unselected-20px.imageset/bookmark-unselected@3x-20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/bookmark-unselected-20px.imageset/bookmark-unselected@3x-20px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/unselected-20px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "unselected-20px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "unselected-20px@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "unselected-20px@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/unselected-20px.imageset/unselected-20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/unselected-20px.imageset/unselected-20px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/unselected-20px.imageset/unselected-20px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/unselected-20px.imageset/unselected-20px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/unselected-20px.imageset/unselected-20px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-20px/unselected-20px.imageset/unselected-20px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-fill-24px.imageset/arrow-down-s-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-fill-24px.imageset/arrow-down-s-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-fill-24px.imageset/arrow-down-s-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-fill-24px.imageset/arrow-down-s-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-fill-24px.imageset/arrow-down-s-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-fill-24px.imageset/arrow-down-s-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-line-24px.imageset/arrow-down-s-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-line-24px.imageset/arrow-down-s-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-line-24px.imageset/arrow-down-s-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-line-24px.imageset/arrow-down-s-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-line-24px.imageset/arrow-down-s-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-down-s-line-24px.imageset/arrow-down-s-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-fill-24px.imageset/arrow-drop-down-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-fill-24px.imageset/arrow-drop-down-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-fill-24px.imageset/arrow-drop-down-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-fill-24px.imageset/arrow-drop-down-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-fill-24px.imageset/arrow-drop-down-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-fill-24px.imageset/arrow-drop-down-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-line-24px.imageset/arrow-drop-down-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-line-24px.imageset/arrow-drop-down-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-line-24px.imageset/arrow-drop-down-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-line-24px.imageset/arrow-drop-down-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-line-24px.imageset/arrow-drop-down-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-down-line-24px.imageset/arrow-drop-down-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-fill-24px.imageset/arrow-drop-left-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-fill-24px.imageset/arrow-drop-left-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-fill-24px.imageset/arrow-drop-left-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-fill-24px.imageset/arrow-drop-left-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-fill-24px.imageset/arrow-drop-left-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-fill-24px.imageset/arrow-drop-left-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-line-24px.imageset/arrow-drop-left-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-line-24px.imageset/arrow-drop-left-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-line-24px.imageset/arrow-drop-left-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-line-24px.imageset/arrow-drop-left-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-line-24px.imageset/arrow-drop-left-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-left-line-24px.imageset/arrow-drop-left-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-fill-24px.imageset/arrow-drop-right-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-fill-24px.imageset/arrow-drop-right-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-fill-24px.imageset/arrow-drop-right-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-fill-24px.imageset/arrow-drop-right-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-fill-24px.imageset/arrow-drop-right-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-fill-24px.imageset/arrow-drop-right-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-line-24px.imageset/arrow-drop-right-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-line-24px.imageset/arrow-drop-right-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-line-24px.imageset/arrow-drop-right-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-line-24px.imageset/arrow-drop-right-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-line-24px.imageset/arrow-drop-right-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-right-line-24px.imageset/arrow-drop-right-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-fill-24px.imageset/arrow-drop-up-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-fill-24px.imageset/arrow-drop-up-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-fill-24px.imageset/arrow-drop-up-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-fill-24px.imageset/arrow-drop-up-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-fill-24px.imageset/arrow-drop-up-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-fill-24px.imageset/arrow-drop-up-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-line-24px.imageset/arrow-drop-up-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-line-24px.imageset/arrow-drop-up-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-line-24px.imageset/arrow-drop-up-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-line-24px.imageset/arrow-drop-up-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-line-24px.imageset/arrow-drop-up-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-drop-up-line-24px.imageset/arrow-drop-up-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-fill-24px.imageset/arrow-left-s-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-fill-24px.imageset/arrow-left-s-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-fill-24px.imageset/arrow-left-s-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-fill-24px.imageset/arrow-left-s-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-fill-24px.imageset/arrow-left-s-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-fill-24px.imageset/arrow-left-s-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-line-24px.imageset/arrow-left-s-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-line-24px.imageset/arrow-left-s-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-line-24px.imageset/arrow-left-s-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-line-24px.imageset/arrow-left-s-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-line-24px.imageset/arrow-left-s-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-s-line-24px.imageset/arrow-left-s-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-topbar-line-24px.imageset/arrow-left-topbar-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-topbar-line-24px.imageset/arrow-left-topbar-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-topbar-line-24px.imageset/arrow-left-topbar-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-topbar-line-24px.imageset/arrow-left-topbar-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-topbar-line-24px.imageset/arrow-left-topbar-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-left-topbar-line-24px.imageset/arrow-left-topbar-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-fill-24px.imageset/arrow-right-s-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-fill-24px.imageset/arrow-right-s-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-fill-24px.imageset/arrow-right-s-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-fill-24px.imageset/arrow-right-s-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-fill-24px.imageset/arrow-right-s-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-fill-24px.imageset/arrow-right-s-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-line-24px.imageset/arrow-right-s-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-line-24px.imageset/arrow-right-s-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-line-24px.imageset/arrow-right-s-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-line-24px.imageset/arrow-right-s-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-line-24px.imageset/arrow-right-s-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/arrow-right-s-line-24px.imageset/arrow-right-s-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-fill-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bookmark-fill-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "bookmark-fill@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "bookmark-fill@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-fill-24px.imageset/bookmark-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-fill-24px.imageset/bookmark-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-fill-24px.imageset/bookmark-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-fill-24px.imageset/bookmark-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-fill-24px.imageset/bookmark-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-fill-24px.imageset/bookmark-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bookmark-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "bookmark-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "bookmark-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-line-24px.imageset/bookmark-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-line-24px.imageset/bookmark-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-line-24px.imageset/bookmark-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-line-24px.imageset/bookmark-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-line-24px.imageset/bookmark-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/bookmark-line-24px.imageset/bookmark-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-fill-24px.imageset/checkbox-circle-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-fill-24px.imageset/checkbox-circle-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-fill-24px.imageset/checkbox-circle-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-fill-24px.imageset/checkbox-circle-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-fill-24px.imageset/checkbox-circle-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-fill-24px.imageset/checkbox-circle-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-line-24px.imageset/checkbox-circle-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-line-24px.imageset/checkbox-circle-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-line-24px.imageset/checkbox-circle-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-line-24px.imageset/checkbox-circle-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-line-24px.imageset/checkbox-circle-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/checkbox-circle-line-24px.imageset/checkbox-circle-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/close-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "close-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "close@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "close@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/close-24px.imageset/close-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/close-24px.imageset/close-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/close-24px.imageset/close@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/close-24px.imageset/close@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/close-24px.imageset/close@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/close-24px.imageset/close@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-1-24px.imageset/error-warning-fill-1-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-1-24px.imageset/error-warning-fill-1-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-1-24px.imageset/error-warning-fill@2x-1-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-1-24px.imageset/error-warning-fill@2x-1-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-1-24px.imageset/error-warning-fill@3x-1-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-1-24px.imageset/error-warning-fill@3x-1-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-24px.imageset/error-warning-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-24px.imageset/error-warning-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-24px.imageset/error-warning-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-24px.imageset/error-warning-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-24px.imageset/error-warning-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-fill-24px.imageset/error-warning-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-1-24px.imageset/error-warning-line-1-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-1-24px.imageset/error-warning-line-1-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-1-24px.imageset/error-warning-line@2x-1-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-1-24px.imageset/error-warning-line@2x-1-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-1-24px.imageset/error-warning-line@3x-1-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-1-24px.imageset/error-warning-line@3x-1-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-24px.imageset/error-warning-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-24px.imageset/error-warning-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-24px.imageset/error-warning-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-24px.imageset/error-warning-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-24px.imageset/error-warning-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/error-warning-line-24px.imageset/error-warning-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-fill-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filter-fill-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "filter-fill@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "filter-fill@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-fill-24px.imageset/filter-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-fill-24px.imageset/filter-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-fill-24px.imageset/filter-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-fill-24px.imageset/filter-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-fill-24px.imageset/filter-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-fill-24px.imageset/filter-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filter-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "filter-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "filter-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-line-24px.imageset/filter-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-line-24px.imageset/filter-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-line-24px.imageset/filter-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-line-24px.imageset/filter-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-line-24px.imageset/filter-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/filter-line-24px.imageset/filter-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/list-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "list-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "list@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "list@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/list-24px.imageset/list-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/list-24px.imageset/list-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/list-24px.imageset/list@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/list-24px.imageset/list@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/list-24px.imageset/list@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/list-24px.imageset/list@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "map-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "map-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "map-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-line-24px.imageset/map-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-line-24px.imageset/map-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-line-24px.imageset/map-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-line-24px.imageset/map-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-line-24px.imageset/map-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-line-24px.imageset/map-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-fill-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "map-pin-fill-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "map-pin-fill@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "map-pin-fill@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-fill-24px.imageset/map-pin-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-fill-24px.imageset/map-pin-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-fill-24px.imageset/map-pin-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-fill-24px.imageset/map-pin-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-fill-24px.imageset/map-pin-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-fill-24px.imageset/map-pin-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "map-pin-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "map-pin-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "map-pin-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-line-24px.imageset/map-pin-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-line-24px.imageset/map-pin-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-line-24px.imageset/map-pin-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-line-24px.imageset/map-pin-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-line-24px.imageset/map-pin-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/map-pin-line-24px.imageset/map-pin-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/marker-unselected-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "marker-unselected.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "marker-unselected@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "marker-unselected@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/marker-unselected-24px.imageset/marker-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/marker-unselected-24px.imageset/marker-unselected.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/marker-unselected-24px.imageset/marker-unselected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/marker-unselected-24px.imageset/marker-unselected@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/marker-unselected-24px.imageset/marker-unselected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/marker-unselected-24px.imageset/marker-unselected@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-fill-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-2-fill-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "more-2-fill@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "more-2-fill@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-fill-24px.imageset/more-2-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-fill-24px.imageset/more-2-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-fill-24px.imageset/more-2-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-fill-24px.imageset/more-2-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-fill-24px.imageset/more-2-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-fill-24px.imageset/more-2-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-2-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "more-2-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "more-2-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-line-24px.imageset/more-2-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-line-24px.imageset/more-2-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-line-24px.imageset/more-2-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-line-24px.imageset/more-2-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-line-24px.imageset/more-2-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/more-2-line-24px.imageset/more-2-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/pencil-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pencil-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "pencil-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "pencil-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/pencil-line-24px.imageset/pencil-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/pencil-line-24px.imageset/pencil-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/pencil-line-24px.imageset/pencil-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/pencil-line-24px.imageset/pencil-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/pencil-line-24px.imageset/pencil-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/pencil-line-24px.imageset/pencil-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/phone-fill-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "phone-fill-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "phone-fill@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "phone-fill@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/phone-fill-24px.imageset/phone-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/phone-fill-24px.imageset/phone-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/phone-fill-24px.imageset/phone-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/phone-fill-24px.imageset/phone-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/phone-fill-24px.imageset/phone-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/phone-fill-24px.imageset/phone-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/search-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "search-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "search-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "search-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/search-line-24px.imageset/search-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/search-line-24px.imageset/search-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/search-line-24px.imageset/search-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/search-line-24px.imageset/search-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/search-line-24px.imageset/search-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/search-line-24px.imageset/search-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/share-box-fill-24px.imageset/share-box-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/share-box-fill-24px.imageset/share-box-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/share-box-fill-24px.imageset/share-box-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/share-box-fill-24px.imageset/share-box-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/share-box-fill-24px.imageset/share-box-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/share-box-fill-24px.imageset/share-box-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-fill-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "time-fill-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "time-fill@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "time-fill@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-fill-24px.imageset/time-fill-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-fill-24px.imageset/time-fill-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-fill-24px.imageset/time-fill@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-fill-24px.imageset/time-fill@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-fill-24px.imageset/time-fill@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-fill-24px.imageset/time-fill@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "time-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "time-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "time-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-line-24px.imageset/time-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-line-24px.imageset/time-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-line-24px.imageset/time-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-line-24px.imageset/time-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-line-24px.imageset/time-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/time-line-24px.imageset/time-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/upload-2-line-24px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "upload-2-line-24px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "upload-2-line@2x-24px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "upload-2-line@3x-24px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/upload-2-line-24px.imageset/upload-2-line-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/upload-2-line-24px.imageset/upload-2-line-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/upload-2-line-24px.imageset/upload-2-line@2x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/upload-2-line-24px.imageset/upload-2-line@2x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/upload-2-line-24px.imageset/upload-2-line@3x-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-24px/upload-2-line-24px.imageset/upload-2-line@3x-24px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/bookmark-selected-28-36px.imageset/bookmark-selected-28-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/bookmark-selected-28-36px.imageset/bookmark-selected-28-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/bookmark-selected-28-36px.imageset/bookmark-selected@2x-28-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/bookmark-selected-28-36px.imageset/bookmark-selected@2x-28-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/bookmark-selected-28-36px.imageset/bookmark-selected@3x-28-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/bookmark-selected-28-36px.imageset/bookmark-selected@3x-28-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/selected-28-36px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "selected-28-36px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "selected-28-36px@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "selected-28-36px@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/selected-28-36px.imageset/selected-28-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/selected-28-36px.imageset/selected-28-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/selected-28-36px.imageset/selected-28-36px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/selected-28-36px.imageset/selected-28-36px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/selected-28-36px.imageset/selected-28-36px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-28-36px/selected-28-36px.imageset/selected-28-36px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36-47px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36-47px/marker-selected-36-47px.imageset/marker-selected-36-47px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36-47px/marker-selected-36-47px.imageset/marker-selected-36-47px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36-47px/marker-selected-36-47px.imageset/marker-selected@2x-36-47px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36-47px/marker-selected-36-47px.imageset/marker-selected@2x-36-47px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36-47px/marker-selected-36-47px.imageset/marker-selected@3x-36-47px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36-47px/marker-selected-36-47px.imageset/marker-selected@3x-36-47px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-fill-36px.imageset/bookmark-fill-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-fill-36px.imageset/bookmark-fill-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-fill-36px.imageset/bookmark-fill@2x-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-fill-36px.imageset/bookmark-fill@2x-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-fill-36px.imageset/bookmark-fill@3x-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-fill-36px.imageset/bookmark-fill@3x-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-unselected-36px.imageset/bookmark-unselected-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-unselected-36px.imageset/bookmark-unselected-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-unselected-36px.imageset/bookmark-unselected@2x-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-unselected-36px.imageset/bookmark-unselected@2x-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-unselected-36px.imageset/bookmark-unselected@3x-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/bookmark-unselected-36px.imageset/bookmark-unselected@3x-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/navigation-fill-36px.imageset/navigation-fill-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/navigation-fill-36px.imageset/navigation-fill-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/navigation-fill-36px.imageset/navigation-fill@2x-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/navigation-fill-36px.imageset/navigation-fill@2x-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/navigation-fill-36px.imageset/navigation-fill@3x-36px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-36px/navigation-fill-36px.imageset/navigation-fill@3x-36px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-selected-44px.imageset/bookmark-navi-selected-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-selected-44px.imageset/bookmark-navi-selected-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-selected-44px.imageset/bookmark-navi-selected@2x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-selected-44px.imageset/bookmark-navi-selected@2x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-selected-44px.imageset/bookmark-navi-selected@3x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-selected-44px.imageset/bookmark-navi-selected@3x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-unselected-44px.imageset/bookmark-navi-unselected-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-unselected-44px.imageset/bookmark-navi-unselected-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-unselected-44px.imageset/bookmark-navi-unselected@2x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-unselected-44px.imageset/bookmark-navi-unselected@2x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-unselected-44px.imageset/bookmark-navi-unselected@3x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/bookmark-navi-unselected-44px.imageset/bookmark-navi-unselected@3x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_large-44px.imageset/cafe_size_large-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_large-44px.imageset/cafe_size_large-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_large-44px.imageset/cafe_size_large-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_large-44px.imageset/cafe_size_large-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_large-44px.imageset/cafe_size_large-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_large-44px.imageset/cafe_size_large-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_medium-44px.imageset/cafe_size_medium-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_medium-44px.imageset/cafe_size_medium-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_medium-44px.imageset/cafe_size_medium-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_medium-44px.imageset/cafe_size_medium-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_medium-44px.imageset/cafe_size_medium-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_medium-44px.imageset/cafe_size_medium-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_small-44px.imageset/cafe_size_small-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_small-44px.imageset/cafe_size_small-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_small-44px.imageset/cafe_size_small-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_small-44px.imageset/cafe_size_small-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_small-44px.imageset/cafe_size_small-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/cafe_size_small-44px.imageset/cafe_size_small-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_false-44px.imageset/groupseat_false-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_false-44px.imageset/groupseat_false-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_false-44px.imageset/groupseat_false-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_false-44px.imageset/groupseat_false-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_false-44px.imageset/groupseat_false-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_false-44px.imageset/groupseat_false-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_true-44px.imageset/groupseat_true-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_true-44px.imageset/groupseat_true-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_true-44px.imageset/groupseat_true-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_true-44px.imageset/groupseat_true-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_true-44px.imageset/groupseat_true-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/groupseat_true-44px.imageset/groupseat_true-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-selected-44px.imageset/home-navi-selected-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-selected-44px.imageset/home-navi-selected-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-selected-44px.imageset/home-navi-selected@2x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-selected-44px.imageset/home-navi-selected@2x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-selected-44px.imageset/home-navi-selected@3x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-selected-44px.imageset/home-navi-selected@3x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-unselected-44px.imageset/home-navi-unselected-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-unselected-44px.imageset/home-navi-unselected-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-unselected-44px.imageset/home-navi-unselected@2x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-unselected-44px.imageset/home-navi-unselected@2x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-unselected-44px.imageset/home-navi-unselected@3x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/home-navi-unselected-44px.imageset/home-navi-unselected@3x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-selected-44px.imageset/mypage-navi-selected-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-selected-44px.imageset/mypage-navi-selected-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-selected-44px.imageset/mypage-navi-selected@2x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-selected-44px.imageset/mypage-navi-selected@2x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-selected-44px.imageset/mypage-navi-selected@3x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-selected-44px.imageset/mypage-navi-selected@3x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-unselected-44px.imageset/mypage-navi-unselected-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-unselected-44px.imageset/mypage-navi-unselected-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-unselected-44px.imageset/mypage-navi-unselected@2x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-unselected-44px.imageset/mypage-navi-unselected@2x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-unselected-44px.imageset/mypage-navi-unselected@3x-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/mypage-navi-unselected-44px.imageset/mypage-navi-unselected@3x-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_few-44px.imageset/outlet_few-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_few-44px.imageset/outlet_few-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_few-44px.imageset/outlet_few-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_few-44px.imageset/outlet_few-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_few-44px.imageset/outlet_few-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_few-44px.imageset/outlet_few-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_many-44px.imageset/outlet_many-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_many-44px.imageset/outlet_many-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_many-44px.imageset/outlet_many-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_many-44px.imageset/outlet_many-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_many-44px.imageset/outlet_many-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_many-44px.imageset/outlet_many-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_several-44px.imageset/outlet_several-44px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_several-44px.imageset/outlet_several-44px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_several-44px.imageset/outlet_several-44px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_several-44px.imageset/outlet_several-44px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_several-44px.imageset/outlet_several-44px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/CofficeImages-44px/outlet_several-44px.imageset/outlet_several-44px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-left-s-line-40px.imageset/arrow-left-s-line-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-left-s-line-40px.imageset/arrow-left-s-line-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-left-s-line-40px.imageset/arrow-left-s-line@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-left-s-line-40px.imageset/arrow-left-s-line@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-left-s-line-40px.imageset/arrow-left-s-line@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-left-s-line-40px.imageset/arrow-left-s-line@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-right-s-line-40px.imageset/arrow-right-s-line-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-right-s-line-40px.imageset/arrow-right-s-line-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-right-s-line-40px.imageset/arrow-right-s-line@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-right-s-line-40px.imageset/arrow-right-s-line@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-right-s-line-40px.imageset/arrow-right-s-line@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/arrow-right-s-line-40px.imageset/arrow-right-s-line@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-fill-40px.imageset/bookmark-fill-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-fill-40px.imageset/bookmark-fill-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-fill-40px.imageset/bookmark-fill@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-fill-40px.imageset/bookmark-fill@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-fill-40px.imageset/bookmark-fill@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-fill-40px.imageset/bookmark-fill@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-line-40px.imageset/bookmark-line-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-line-40px.imageset/bookmark-line-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-line-40px.imageset/bookmark-line@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-line-40px.imageset/bookmark-line@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-line-40px.imageset/bookmark-line@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/bookmark-line-40px.imageset/bookmark-line@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/close-40px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "close-40px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "close@2x-40px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "close@3x-40px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/close-40px.imageset/close-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/close-40px.imageset/close-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/close-40px.imageset/close@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/close-40px.imageset/close@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/close-40px.imageset/close@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/close-40px.imageset/close@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-fill-40px.imageset/error-warning-fill-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-fill-40px.imageset/error-warning-fill-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-fill-40px.imageset/error-warning-fill@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-fill-40px.imageset/error-warning-fill@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-fill-40px.imageset/error-warning-fill@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-fill-40px.imageset/error-warning-fill@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-line-40px.imageset/error-warning-line-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-line-40px.imageset/error-warning-line-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-line-40px.imageset/error-warning-line@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-line-40px.imageset/error-warning-line@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-line-40px.imageset/error-warning-line@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/error-warning-line-40px.imageset/error-warning-line@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/share-box-fill-40px.imageset/share-box-fill-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/share-box-fill-40px.imageset/share-box-fill-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/share-box-fill-40px.imageset/share-box-fill@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/share-box-fill-40px.imageset/share-box-fill@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/share-box-fill-40px.imageset/share-box-fill@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/share-box-fill-40px.imageset/share-box-fill@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/user-profile-40px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "user-profile-40px.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "user-profile@2x-40px.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "user-profile@3x-40px.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/user-profile-40px.imageset/user-profile-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/user-profile-40px.imageset/user-profile-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/user-profile-40px.imageset/user-profile@2x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/user-profile-40px.imageset/user-profile@2x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/user-profile-40px.imageset/user-profile@3x-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-40px/user-profile-40px.imageset/user-profile@3x-40px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48-52px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48-52px/bookmark-selected-48-52px.imageset/bookmark-selected-48-52px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48-52px/bookmark-selected-48-52px.imageset/bookmark-selected-48-52px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48-52px/bookmark-selected-48-52px.imageset/bookmark-selected@2x-48-52px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48-52px/bookmark-selected-48-52px.imageset/bookmark-selected@2x-48-52px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48-52px/bookmark-selected-48-52px.imageset/bookmark-selected@3x-48-52px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48-52px/bookmark-selected-48-52px.imageset/bookmark-selected@3x-48-52px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_selected-48px.imageset/bookmark_floating_selected-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_selected-48px.imageset/bookmark_floating_selected-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_selected-48px.imageset/bookmark_floating_selected@2x-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_selected-48px.imageset/bookmark_floating_selected@2x-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_selected-48px.imageset/bookmark_floating_selected@3x-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_selected-48px.imageset/bookmark_floating_selected@3x-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_unselected-48px.imageset/bookmark_floating_unselected-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_unselected-48px.imageset/bookmark_floating_unselected-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_unselected-48px.imageset/bookmark_floating_unselected@2x-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_unselected-48px.imageset/bookmark_floating_unselected@2x-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_unselected-48px.imageset/bookmark_floating_unselected@3x-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/bookmark_floating_unselected-48px.imageset/bookmark_floating_unselected@3x-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_selected-48px.imageset/clock_floating_selected-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_selected-48px.imageset/clock_floating_selected-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_selected-48px.imageset/clock_floating_selected-48px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_selected-48px.imageset/clock_floating_selected-48px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_selected-48px.imageset/clock_floating_selected-48px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_selected-48px.imageset/clock_floating_selected-48px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_unselected-48px.imageset/clock_floating_unselected-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_unselected-48px.imageset/clock_floating_unselected-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_unselected-48px.imageset/clock_floating_unselected-48px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_unselected-48px.imageset/clock_floating_unselected-48px@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_unselected-48px.imageset/clock_floating_unselected-48px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/clock_floating_unselected-48px.imageset/clock_floating_unselected-48px@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/current_position_floating-48px.imageset/current_position_floating-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/current_position_floating-48px.imageset/current_position_floating-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/current_position_floating-48px.imageset/current_position_floating@2x-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/current_position_floating-48px.imageset/current_position_floating@2x-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/current_position_floating-48px.imageset/current_position_floating@3x-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/CofficeImages-48px/current_position_floating-48px.imageset/current_position_floating@3x-48px.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/cafe-placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cafe-placeholder.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "cafe-placeholder@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "cafe-placeholder@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/cafe-placeholder.imageset/cafe-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/cafe-placeholder.imageset/cafe-placeholder.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/cafe-placeholder.imageset/cafe-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/cafe-placeholder.imageset/cafe-placeholder@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/cafe-placeholder.imageset/cafe-placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/cafe-placeholder.imageset/cafe-placeholder@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/cafeImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "cafeImage.jpeg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/cafeImage.imageset/cafeImage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/cafeImage.imageset/cafeImage.jpeg -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/login-app-logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "login-app-logo.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "login-app-logo@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "login-app-logo@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/login-app-logo.imageset/login-app-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/login-app-logo.imageset/login-app-logo.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/login-app-logo.imageset/login-app-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/login-app-logo.imageset/login-app-logo@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/login-app-logo.imageset/login-app-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/login-app-logo.imageset/login-app-logo@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/saved-list-fail-image-placeholder.imageset/saved-list-fail-image-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/saved-list-fail-image-placeholder.imageset/saved-list-fail-image-placeholder.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/saved-list-fail-image-placeholder.imageset/saved-list-fail-image-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/saved-list-fail-image-placeholder.imageset/saved-list-fail-image-placeholder@2x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Asset.xcassets/saved-list-fail-image-placeholder.imageset/saved-list-fail-image-placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/Asset.xcassets/saved-list-fail-image-placeholder.imageset/saved-list-fail-image-placeholder@3x.png -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale1.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "1.000", 9 | "green" : "1.000", 10 | "red" : "1.000" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale10.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x00", 9 | "green" : "0x00", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale2.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.973", 9 | "green" : "0.965", 10 | "red" : "0.961" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale3.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.961", 9 | "green" : "0.945", 10 | "red" : "0.933" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale4.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.925", 9 | "green" : "0.890", 10 | "red" : "0.875" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale5.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.816", 9 | "green" : "0.784", 10 | "red" : "0.765" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale6.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.761", 9 | "green" : "0.725", 10 | "red" : "0.706" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale7.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.514", 9 | "green" : "0.486", 10 | "red" : "0.467" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale8.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x52", 9 | "green" : "0x48", 10 | "red" : "0x46" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/grayScale9.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x24", 9 | "green" : "0x20", 10 | "red" : "0x20" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/kakao.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x00", 9 | "green" : "0xE5", 10 | "red" : "0xFE" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/red.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x32", 9 | "green" : "0x3C", 10 | "red" : "0xEE" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/secondary0.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x52", 9 | "green" : "0x5E", 10 | "red" : "0x6B" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/secondary1.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.376", 9 | "green" : "0.471", 10 | "red" : "0.576" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/secondary2.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.576", 9 | "green" : "0.651", 10 | "red" : "0.725" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/Colors.xcassets/secondary3.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.761", 9 | "green" : "0.788", 10 | "red" : "0.816" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Resources/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/dummy -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-Black.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-Bold.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-ExtraBold.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-ExtraLight.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-Light.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-Medium.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-Regular.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-SemiBold.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/Pretendard-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/Pretendard-Thin.otf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-Black.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-Bold.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-ExtraBold.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-ExtraLight.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-Light.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-Medium.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-Regular.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-SemiBold.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/static/alternative/Pretendard-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/static/alternative/Pretendard-Thin.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Resources/public/variable/PretendardVariable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Resources/public/variable/PretendardVariable.ttf -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/Address.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Address.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/07/02. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Network 11 | 12 | public struct Address: Hashable { 13 | public let address: String? 14 | public let simpleAddress: String? 15 | public let postalCode: String? 16 | } 17 | 18 | extension AddressDTO { 19 | func toEntity() -> Address { 20 | return .init(address: value, simpleAddress: simpleValue, postalCode: postalCode) 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/Cafe/CafeFilters.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CafeFilters.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/07/02. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct CafeSearchFilters: Equatable { 12 | let capacityLevels: [CapacityLevel]? 13 | let drinkTypes: [DrinkType]? 14 | let foodTypes: [FoodType]? 15 | let restroomTypes: [RestroomType]? 16 | let electricOutletLevels: [ElectricOutletLevel]? 17 | } 18 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/RecentSearchWord.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RecentSearchWord.swift 3 | // coffice 4 | // 5 | // Created by sehooon on 2023/07/06. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct RecentSearchWord: Equatable { 12 | let searchWordId: Int 13 | let text: String 14 | let createdAt: String 15 | } 16 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/RequestValue/PlaceRequestValue.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PlaceRequestValue.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/07/09. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Network 11 | 12 | struct PlaceRequestValue { 13 | let name: String 14 | let page: Int 15 | let size: Int 16 | let sort: SortDescriptor 17 | } 18 | 19 | extension PlaceRequestValue { 20 | func toDTO() -> PlaceRequestDTO { 21 | return .init(page: page, size: size, sort: sort.name) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/RequestValue/ReviewsRequestValue.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ReviewsRequestValue.swift 3 | // coffice 4 | // 5 | // Created by Min Min on 2023/07/13. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct ReviewsRequestValue { 12 | let placeId: Int 13 | let pageSize: Int 14 | let lastSeenReviewId: Int? 15 | 16 | init(placeId: Int, pageSize: Int = 10, lastSeenReviewId: Int?) { 17 | self.placeId = placeId 18 | self.pageSize = pageSize 19 | self.lastSeenReviewId = lastSeenReviewId 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/RequestValue/SearchWordUploadRequestValue.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SearchWordUploadRequestValue.swift 3 | // coffice 4 | // 5 | // Created by sehooon on 2023/07/28. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Network 11 | 12 | struct SearchWordUploadRequestValue { 13 | let text: String? 14 | } 15 | 16 | extension SearchWordUploadRequestValue { 17 | func toDTO() -> SearchWordUploadRequestDTO { 18 | .init(text: text) 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/ResponseValue/CafeSearchResponse.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CafeSearchResponse.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/07/02. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct CafeSearchResponse: Equatable { 12 | let cafes: [Cafe] 13 | let filters: CafeSearchFilters? 14 | let hasNext: Bool 15 | } 16 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Entities/SortDescriptor.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SortDescriptor.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/07/09. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum SortDescriptor { 12 | case ascending 13 | case descending 14 | 15 | var name: String { 16 | switch self { 17 | case .ascending: 18 | return "asc" 19 | case .descending: 20 | return "desc" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Extensions/Bool+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Bool+Extensions.swift 3 | // coffice 4 | // 5 | // Created by Min Min on 2023/06/18. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Bool { 12 | var isFalse: Bool { !self } 13 | } 14 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Extensions/CLLocationCoordinate2D+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CLLocationCoordinate2D+Extensions.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/07/13. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import CoreLocation 10 | 11 | extension CLLocationCoordinate2D: Equatable { 12 | public static func == (lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool { 13 | return lhs.latitude == rhs.latitude && lhs.longitude == rhs.longitude 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Extensions/CofficeFont+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CofficeFont+Extensions.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/07/01. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension CofficeFont: Equatable {} 12 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Extensions/CofficeImages+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CofficeImages+Extensions.swift 3 | // coffice 4 | // 5 | // Created by MinKyeongTae on 2023/06/27. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension CofficeImages: Equatable { 12 | public static func == (lhs: CofficeImages, rhs: CofficeImages) -> Bool { 13 | lhs.name == rhs.name 14 | } 15 | } 16 | 17 | extension CofficeImages: Hashable { 18 | public func hash(into hasher: inout Hasher) { 19 | hasher.combine(name) 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Extensions/Collection+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Collection+Extensions.swift 3 | // coffice 4 | // 5 | // Created by Min Min on 2023/07/06. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | extension Collection { 10 | /// Returns the element at the specified index if it is within bounds, otherwise nil. 11 | subscript(safe index: Index) -> Element? { 12 | return indices.contains(index) ? self[index] : nil 13 | } 14 | 15 | var isNotEmpty: Bool { !isEmpty } 16 | } 17 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Extensions/UIApplication+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIApplication+Extensions.swift 3 | // Cafe 4 | // 5 | // Created by MinKyeongTae on 2023/05/26. 6 | // Copyright © 2023 com.cafe. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIApplication { 12 | static var keyWindow: UIWindow? { 13 | shared.connectedScenes 14 | .filter { $0.activationState == .foregroundActive } 15 | .first(where: { $0 is UIWindowScene }) 16 | .flatMap({ $0 as? UIWindowScene })?.windows 17 | .first(where: \.isKeyWindow) 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Extensions/UITextView+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UITextView+Extensions.swift 3 | // coffice 4 | // 5 | // Created by MinKyeongTae on 2023/07/02. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UITextView { 12 | func applyCoffice(font: CofficeFont) { 13 | self.font = UIFont(name: font.name, size: font.size) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/Login/LoginError.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LoginError.swift 3 | // coffice 4 | // 5 | // Created by 천수현 on 2023/06/17. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum LoginError: Error { 12 | case emptyAccessToken 13 | case jsonEncodeFailed 14 | } 15 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/PreferenceKeys/TabBarSizePreferenceKey.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TabbarPreferenceKey.swift 3 | // coffice 4 | // 5 | // Created by sehooon on 2023/06/29. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import SwiftUI 11 | 12 | struct TabBarSizePreferenceKey: PreferenceKey { 13 | static var defaultValue: CGSize = .init(width: UIScreen.main.bounds.width, height: 65) 14 | static func reduce(value: inout CGSize, nextValue: () -> CGSize) { 15 | value = nextValue() 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/UserDefaultsKeyString.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UserDefaultsKeyString.swift 3 | // coffice 4 | // 5 | // Created by sehooon on 2023/08/02. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum UserDefaultsKeyString { 12 | case onBoardingWithCafeMapView 13 | 14 | var forKey: String { 15 | switch self { 16 | case .onBoardingWithCafeMapView: 17 | return "onBoardingWithCafeMapView" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/App/ViewModifier/HiddenViewModifier.swift: -------------------------------------------------------------------------------- 1 | // 2 | // HiddenWithOpacityViewModifier.swift 3 | // coffice 4 | // 5 | // Created by Min Min on 2023/07/23. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct HiddenWithOpacityViewModifier: ViewModifier { 12 | private let isHidden: Bool 13 | 14 | init(isHidden: Bool) { 15 | self.isHidden = isHidden 16 | } 17 | 18 | func body(content: Content) -> some View { 19 | content 20 | .opacity(isHidden ? 0 : 1) 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "platform" : "ios", 6 | "size" : "1024x1024" 7 | } 8 | ], 9 | "info" : { 10 | "author" : "xcode", 11 | "version" : 1 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIApplicationSceneManifest 6 | 7 | UIApplicationSupportsMultipleScenes 8 | 9 | UISceneConfigurations 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Projects/Coffice/Sources/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Projects/Coffice/Tests/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Coffice/Tests/dummy -------------------------------------------------------------------------------- /Projects/Coffice/coffice.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Projects/Network/.swiftlint.yml: -------------------------------------------------------------------------------- 1 | 2 | # Default Rules에서 비활성화할 규칙 3 | disabled_rules: 4 | - unused_closure_parameter 5 | 6 | # Default Rules에 없지만 활성화하고 싶은 규칙 7 | opt_in_rules: 8 | # .count == 0 보다는 .isEmpty를 사용하는 것이 좋습니다. 9 | # - ref : https://realm.github.io/SwiftLint/empty_count.html 10 | - empty_count 11 | 12 | # 컨벤션 체크하지 않을 파일을 지정합니다. 13 | # ex) - YappProject/AppView.swift 14 | excluded: 15 | 16 | line_length: 17 | ignores_function_declarations: true 18 | ignores_comments: true 19 | -------------------------------------------------------------------------------- /Projects/Network/Project.swift: -------------------------------------------------------------------------------- 1 | import ProjectDescription 2 | import ProjectDescriptionHelpers 3 | 4 | private let projectName = "Network" 5 | private let iOSTargetVersion = "15.0" 6 | 7 | let project = Project.framework( 8 | name: projectName, 9 | product: .dynamicLibrary, 10 | platform: .iOS, 11 | iOSTargetVersion: iOSTargetVersion, 12 | dependencies: [ 13 | ], 14 | shouldIncludeTest: true, 15 | shouldIncludeResources: true 16 | ) 17 | -------------------------------------------------------------------------------- /Projects/Network/Resources/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Network/Resources/dummy -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Requests/CheckNicknameRequestDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CheckNicknameRequestDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/07/16. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct CheckNicknameRequestDTO: Encodable { 12 | public let name: String 13 | 14 | public init(name: String) { 15 | self.name = name 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Requests/LoginRequestDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LoginRequestDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/06/17. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct LoginRequestDTO: Encodable { 12 | public let authProviderType: String 13 | public let authProviderUserId: String 14 | 15 | public init(authProviderType: String, authProviderUserId: String) { 16 | self.authProviderType = authProviderType 17 | self.authProviderUserId = authProviderUserId 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Requests/PlaceRequestDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PlaceRequestDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/07/09. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct PlaceRequestDTO: Encodable { 12 | public let page: Int 13 | public let size: Int 14 | public let sort: String 15 | 16 | public init(page: Int, size: Int, sort: String) { 17 | self.page = page 18 | self.size = size 19 | self.sort = sort 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Requests/ReviewsRequestDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ReviewsRequestDTO.swift 3 | // Network 4 | // 5 | // Created by Min Min on 2023/07/13. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct ReviewsRequestDTO: Encodable { 12 | public let pageSize: Int 13 | public let lastSeenReviewId: Int? 14 | } 15 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Requests/SaveToFolderRequestDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SaveToFolderRequestDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/07/03. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct SavePlacesRequestDTO: Encodable { 12 | public let postIds: [Int] 13 | 14 | public init(postIds: [Int]) { 15 | self.postIds = postIds 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Requests/SearchWordUploadRequestDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SearchWordUploadRequestDTO.swift 3 | // Network 4 | // 5 | // Created by sehooon on 2023/07/28. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct SearchWordUploadRequestDTO: Encodable { 12 | public let text: String? 13 | 14 | public init(text: String?) { 15 | self.text = text 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Responses/Coordinate+AddressDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Coordinate+AddressDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/06/22. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct CoordinateDTO: Decodable { 12 | public let latitude: Double 13 | public let longitude: Double 14 | } 15 | 16 | public struct AddressDTO: Decodable, Equatable { 17 | public let value: String? 18 | public let simpleValue: String? 19 | public let postalCode: String? 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Responses/LoginResponseDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LoginResponseDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/06/16. 6 | // Copyright © 2023 com.cafe. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct LoginResponseDTO: Decodable { 12 | public let accessToken: String 13 | public let member: MemberResponseDTO 14 | } 15 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Responses/SearchWordResponseDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SearchWordResponseDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/06/22. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct SearchWordResponseDTO: Decodable, Equatable { 12 | public let searchWordId: Int 13 | public let text: String 14 | public let createdAt: String 15 | } 16 | -------------------------------------------------------------------------------- /Projects/Network/Sources/DTOs/Responses/WayPointDTO.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WayPointDTO.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/07/09. 6 | // Copyright © 2023 kr.co.yapp. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct WayPointDTO: Decodable { 12 | public let waypointId: Int 13 | public let name: String 14 | public let coordinates: CoordinateDTO 15 | } 16 | -------------------------------------------------------------------------------- /Projects/Network/Sources/NetworkException.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NetworkException.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/06/16. 6 | // Copyright © 2023 com.cafe. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct NetworkException: Decodable { 12 | let code: String 13 | let message: String 14 | } 15 | -------------------------------------------------------------------------------- /Projects/Network/Sources/NetworkResult.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NetworkResult.swift 3 | // Network 4 | // 5 | // Created by 천수현 on 2023/06/16. 6 | // Copyright © 2023 com.cafe. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct NetworkResult: Decodable { 12 | public let code: String 13 | public let message: String 14 | public let data: DTO? 15 | public let page: PageResponse? 16 | 17 | public struct PageResponse: Decodable { 18 | public let hasNext: Bool? 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Projects/Network/Tests/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Projects/Network/Tests/dummy -------------------------------------------------------------------------------- /Projects/coffice.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.applesignin 6 | 7 | Default 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tuist/Config.swift: -------------------------------------------------------------------------------- 1 | import ProjectDescription 2 | 3 | let config = Config( 4 | plugins: [ 5 | .local(path: .relativeToManifest("../../Plugins/coffice")), 6 | ] 7 | ) 8 | -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Workspace.swift 3 | // 22nd-iOS-Team-1-iOSManifests 4 | // 5 | // Created by 천수현 on 2023/05/21. 6 | // 7 | 8 | import ProjectDescription 9 | 10 | let workSpace = Workspace(name: "Coffice", projects: ["Projects/*"]) 11 | -------------------------------------------------------------------------------- /Xcconfig/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAPP-Github/Coffice-iOS/3c9ba692f4af38520f63483710feefcd54a67e6a/Xcconfig/dummy --------------------------------------------------------------------------------