diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..f6b1f326ca4ab7cf0c8798856f8fe0020ff82d58 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..21d0b898ff61470da684cc5e8f7d6efa648de8cf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv/ diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..f6fd3bc2b8b083e2562dd3fb3b251c3574966bca --- /dev/null +++ b/app.py @@ -0,0 +1,85 @@ +# app.py +from pathlib import Path + +import gradio as gr + +# ----------------------------- +# 設定 +# ----------------------------- +SPECS_DIR = Path("specs") + + +# ----------------------------- +# ユーティリティ +# ----------------------------- +def list_game_names(): + """specs/ 以下のディレクトリ名をゲーム名として列挙""" + if not SPECS_DIR.exists(): + return [] + return sorted([p.name for p in SPECS_DIR.iterdir() if p.is_dir()]) + + +def gallery_images(game_name: str): + """選択ゲームの spec1..5 のパス(存在するものだけ)を返す""" + images = [] + for i in range(1, 6): + p = SPECS_DIR / game_name / f"spec{i}.png" + if p.exists(): + images.append(str(p)) + return images + + +def filter_table(query: str, all_names: list[str]): + """簡易フィルタ:部分一致でゲーム名を絞り込み(大文字小文字無視)""" + q = (query or "").strip().lower() + names = all_names if not q else [n for n in all_names if q in n.lower()] + # Dataframe は 2次元配列でもOK + return [[n] for n in names] + + +def on_select(evt: gr.SelectData): + """左の表の行クリックでギャラリー更新""" + # Dataframe の select は SelectData を受け取り、row_value に行全体の値が入る + # row_value[0] が 1列目(=ゲーム名) + row = evt.row_value or [] + game = row[0] if row else None + if not game: + return "## ゲームを選んでください", [] + return f"## `{game}`", gallery_images(game) + + +with gr.Blocks() as app: + gr.Markdown( + "# VisualNovel_Dataset Spectrogram Viewer\n- 左のゲーム名をクリックすると、右にそのスペクトログラム5枚が表示されます。" + ) + + all_names_state = gr.State(list_game_names()) + + with gr.Row(): + with gr.Column(scale=1): + search = gr.Textbox( + placeholder="ゲーム名をフィルタ(部分一致)", show_label=False + ) + table = gr.Dataframe( + value=[[n] for n in all_names_state.value], + headers=["game_name"], + show_row_numbers=True, + ) + with gr.Column(scale=2): + title_md = gr.Markdown("## ゲームをクリックしてください") + gallery = gr.Gallery( + columns=3, + height="auto", + preview=True, + show_fullscreen_button=True, + ) + + # クリックでギャラリー更新 + table.select(fn=on_select, outputs=[title_md, gallery]) + + # フィルタで左表の表示を更新 + search.change(fn=filter_table, inputs=[search, all_names_state], outputs=table) + +# ローカル実行 +if __name__ == "__main__": + app.launch(inbrowser=True) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..25aceddaba2623925a4c9f20f2bb00c4282b4db7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +gradio diff --git a/specs/0verflow_Cross Days/spec1.png b/specs/0verflow_Cross Days/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..79412d53931617cc019ec07dad022ab4d0ed0588 --- /dev/null +++ b/specs/0verflow_Cross Days/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f7b2440b7c38925bc49b6d6a525c64176dc6b3752f3de94b48d812a6f0aac6 +size 323781 diff --git a/specs/0verflow_Cross Days/spec2.png b/specs/0verflow_Cross Days/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d9e41b820f92e3c1b5aa296ce1813e177e21c61d --- /dev/null +++ b/specs/0verflow_Cross Days/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ce877ab4df698cc68aed43911f4b113fb0fe08105e951266b95d579f005836 +size 313592 diff --git a/specs/0verflow_Cross Days/spec3.png b/specs/0verflow_Cross Days/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..26cd97294c290a18f0588f00435ef41eda466d55 --- /dev/null +++ b/specs/0verflow_Cross Days/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ac75731faa94c70f7c435023f6247c85f1a5ba11963f74b5cbf6d80dce0ee4 +size 319948 diff --git a/specs/0verflow_Cross Days/spec4.png b/specs/0verflow_Cross Days/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..92254f329aec89e6a6662c41006d43c582e36e5f --- /dev/null +++ b/specs/0verflow_Cross Days/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d455b3cdeb97f7ba1a36a412b8088d5347e1b307342d96e54ac5a1801b5fd9de +size 318315 diff --git a/specs/0verflow_Cross Days/spec5.png b/specs/0verflow_Cross Days/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1388e55d07898650a97b79a5af9d94f26d75bbb1 --- /dev/null +++ b/specs/0verflow_Cross Days/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f8dd3fc3729bd1c899a7103943680ed8e32f993d9f67402f15297a524a2975 +size 298348 diff --git a/specs/0verflow_School Days HQ/spec1.png b/specs/0verflow_School Days HQ/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..94f11aa78a76ea7498705e0bb89f6613bf9d0930 --- /dev/null +++ b/specs/0verflow_School Days HQ/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be1faabb47463cc158f0c5db80d9aef8af9e75d22c569b3812bc350b510885c +size 247878 diff --git a/specs/0verflow_School Days HQ/spec2.png b/specs/0verflow_School Days HQ/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8a5c599379ea8b100edecf410ced2a8947c1e183 --- /dev/null +++ b/specs/0verflow_School Days HQ/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d00b6303f36ddb3afb5f621296fcdca82f972169b2471e92914c6d245e8a3c3 +size 135219 diff --git a/specs/0verflow_School Days HQ/spec3.png b/specs/0verflow_School Days HQ/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..630bb9f1161d82ac4140baabf7085f9ef1c7c4a0 --- /dev/null +++ b/specs/0verflow_School Days HQ/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98adf070f122b905814635f50f7ccd5a0a3120176a1820886a2c90b0c1369e5d +size 295162 diff --git a/specs/0verflow_School Days HQ/spec4.png b/specs/0verflow_School Days HQ/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e3aa725792cf031b83aa7f00e7d4175770166fff --- /dev/null +++ b/specs/0verflow_School Days HQ/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:808fe3920302587016526255996c79013a856872a0029a24795b1675ff732ea5 +size 305240 diff --git a/specs/0verflow_School Days HQ/spec5.png b/specs/0verflow_School Days HQ/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..02f90e5e7477c4520a48342935ce4995274d1941 --- /dev/null +++ b/specs/0verflow_School Days HQ/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f62a3f8d815f726a02eb140b1b781843c18cfc4f3aeb8824c4981122798a2b5 +size 303730 diff --git a/specs/0verflow_Shiny Days/spec1.png b/specs/0verflow_Shiny Days/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e7bbad5c22b11301d30e88dfc3d6591bce958bdb --- /dev/null +++ b/specs/0verflow_Shiny Days/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294f68278fe10533b686f31dbb7f90d8fb8da3e1d7ca4d1487caf8f22ab27512 +size 294778 diff --git a/specs/0verflow_Shiny Days/spec2.png b/specs/0verflow_Shiny Days/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c40729fc3e5482c6404e3da17fe853fd3ba9733d --- /dev/null +++ b/specs/0verflow_Shiny Days/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f38dcf7defa680d06f2d07078a49bd0bee93389888a6f01e71af3914180414fb +size 305949 diff --git a/specs/0verflow_Shiny Days/spec3.png b/specs/0verflow_Shiny Days/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7293cbf515e4773389ef4c6a294fc97bdabf1282 --- /dev/null +++ b/specs/0verflow_Shiny Days/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944c3c7b12030d61a3e9651667de7456f2ead89c682aa891659ef40d0a67dfff +size 271429 diff --git a/specs/0verflow_Shiny Days/spec4.png b/specs/0verflow_Shiny Days/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ed650920bd8459b485108ef99ec5acaed3d3464a --- /dev/null +++ b/specs/0verflow_Shiny Days/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9469944172c3f0ed1d63cb7805aafb4803c1e99e36f4451be41dbbf9018eb125 +size 290853 diff --git a/specs/0verflow_Shiny Days/spec5.png b/specs/0verflow_Shiny Days/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5c3c00502f54a93857484c2d7d1f68339011ec1c --- /dev/null +++ b/specs/0verflow_Shiny Days/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3164387136d7a0afbd9e135fd1e405bd57c03647b0e850921612bc2af0a5f377 +size 192124 diff --git a/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec1.png b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..98042b2ec6cea6f6c46ace21c4cda122424c81e6 --- /dev/null +++ b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809e50c780580969ef468108404f8e3f5f9a0b8731f15335082a9254b32e2a79 +size 262599 diff --git a/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec2.png b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0f92da5517a91e801d1e19fcf267d89488f1d315 --- /dev/null +++ b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e26f1346c51b33bc1c433361cf76879362bb6fc42f8a62b3f0d2e467782089ee +size 296589 diff --git a/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec3.png b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..31273cb89e24d6cb29bc94d91ab2315c9d18cc1c --- /dev/null +++ b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ec683c7341b280cbc3cfafbaccf36785ddeab1a41d3831694b7f404d401d80 +size 254947 diff --git a/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec4.png b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..582ffad27023cd7d1caf8276b57bcf8dcb592e6a --- /dev/null +++ b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:780c09fcd220c3fdac995ec072dc4202466bbdc7bdcf8e1e5d1d4eea39115f16 +size 311260 diff --git a/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec5.png b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..530c9b78b961325328bf0b8a16799a21841c3881 --- /dev/null +++ b/specs/AKABEiSOFT3_CharaBration! ~Otome wa Koi shite Charabureru~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035a51c20b46f7d2c2fd3b288ce4f358db5128aca376035fba78701fba2f8649 +size 311257 diff --git a/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec1.png b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea04f4c4d73e8361830748046e70700015a096d --- /dev/null +++ b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a4d36a3884e23d39061673c5be0e4153e20d5733af6952be86ab321b84d758 +size 281086 diff --git a/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec2.png b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c2853c0785a76897d47f587f0feb10dcc43e9a --- /dev/null +++ b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab12239a2ade0ccba938927221f716454179d94b6ea14ea9de42b7a2bed9ebc +size 299809 diff --git a/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec3.png b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8c8dc706d55422ce3d957c8880001fa9f4dfaa40 --- /dev/null +++ b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285794015c87b0dcc72b6db6c510f12a709c3532c9d228f93ea98f1122ce673f +size 256582 diff --git a/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec4.png b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5f263c9dd34d6ee8f36ea9445ba7278094115dfd --- /dev/null +++ b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790f6a2fc95ea4ad62fd4a0dbab94885d0cc319acb9835feb694218b9542a44b +size 314116 diff --git a/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec5.png b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d53274d8a91b6c8317c0377cb4b962ea24439df6 --- /dev/null +++ b/specs/AKABEiSOFT3_Dekinai Watashi ga, Kurikaesu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8420a70a43a46f270c325bf5ba3418f7c0aad76c24bd406b5449992cd97b69b9 +size 302250 diff --git a/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec1.png b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6aeeb195c4f0dab41bdacd51ee0b9f6707ba5672 --- /dev/null +++ b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7d4a33ee4a7b6500912a4b8fc3ef0d3967809a371ce0a9bcf02298f9abbc27 +size 322489 diff --git a/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec2.png b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..032ae94c978e6863301138d722b8a4e034fcbb75 --- /dev/null +++ b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e545c09a4b6a8ed61d8d89bf6dbdb90f95a5cb5f0a391833bd9558ecd9c54057 +size 325938 diff --git a/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec3.png b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..eb6c5f49cd3358882f7a4cbdcce4a7f069376902 --- /dev/null +++ b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d54191c0d033562ad20aba45c6456976dc36d1115a9d3e6ad0db8436f83f548 +size 313533 diff --git a/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec4.png b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9a50717c39893cabe17f006c0647c1a664f74aa9 --- /dev/null +++ b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf611002df7193ae68e95b7b98ce410ce45b5c6e822245c8fc9aafe53811114 +size 314001 diff --git a/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec5.png b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d1039456ad9857ddec0fc9dc933ffdcdbcd4f93d --- /dev/null +++ b/specs/AKABEiSOFT3_Hakata DYINGZOMBIES ~Second Chance for BEAUTIFUL LIVE~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bbf87af2d043125f1bd2b06a10888e487106b1e9ebba4301e0ba2c22070cee1 +size 296802 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec1.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9767b4a72631cf8bd597ef3a392a05e38d960c44 --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2af54abaf161177baaa18583c2741e5aed64900f43d9686867931c63de1c645 +size 300634 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec2.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3428f927f90d0e400e1b6faab7903d64964d5df5 --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf80b19b0281b58d5eb1535cc7b4624fadff1a5664ed5a49bdfa4a93099ce69c +size 311462 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec3.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..36894d087bdc4a1ae1c45912ce5a4a2a8df5b21a --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3d4c40c63e8fa9cd5ce11c2f7053f4a48d1d8480d2a9587b3a5cf263dfb9cc +size 282956 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec4.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b11b67c5e28aaa33a04dbbce85edbbf5ed30936b --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0af30af518bbf04ec4504eda32765d0e83cc3997a7162fdca049fbb3dcdc66 +size 310621 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec5.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9b070c5ccb912972338e8d1b0f7e1dea0e09ed15 --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273976a197ac0748144aa2b447a5632c1564970952998d88f001ad0b8691c76e +size 262835 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec1.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a75d2edde95793d665ab39529fdbf4c2b9243357 --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d84996bbfd281077ed1108c1ab6186bcda3c942f1bcd6c85dd5242aae37d65 +size 301907 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec2.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f42e2d84fc2eb1c7ba5310a4a31064989c536481 --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c60521734a27c8677bcec32501d6585d1fa2e64154cbdbef7bd61fa1f608989 +size 314003 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec3.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..aa2ef276f90f4bcf47f0198a9b13c7b750275215 --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9e0492179f58479c4d5a5b8df28e80b6e59de42639d8abead36ab7a3708c15 +size 276217 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec4.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..29849221c41ab7aaa296f20471b467535f642a51 --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b751c363a148a6a2dbbc9f4e65824eda08740c7b6678314bd7d9d80874ab7f3 +size 276696 diff --git a/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec5.png b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..98f1a009d7a22dd0fc4add97531970823f74e38e --- /dev/null +++ b/specs/AKABEiSOFT3_Hataraku Otona no Ren'ai Jijou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38fb478be42ad7933c619c41ff16e1084da2180020729dc0194f3e0e7a56951 +size 298912 diff --git a/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec1.png b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6ba8c6ed564aeeb01d12fe5d9d26ed0489f53865 --- /dev/null +++ b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d8de33332537191b6050b9da21763852e996e85068b8b67c05a3ff151f71276 +size 288015 diff --git a/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec2.png b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..501b224947b3086cae3e8a356644401f56feb00c --- /dev/null +++ b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c60854d154ad0496e320f12114aa6bec45aa43aa4543b2f7a30e0a573bd6c3c +size 304661 diff --git a/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec3.png b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e21dae1565745c4199bbe2699d0457496a2d9f67 --- /dev/null +++ b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc117c0ba46f0cafd6debb4fd0c0a425ce4502a629ca4c844e77f5129c72273c +size 285099 diff --git a/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec4.png b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..29c073bc8323c77cc428bf2afa1549e1ec96f90f --- /dev/null +++ b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6108baedcc75ad89c51100befaf3ab2d83609f8d64778d99c2ab3283167b2f1f +size 319762 diff --git a/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec5.png b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8e753391c5a1867ec6bc5102844f5a9dc7ed14e3 --- /dev/null +++ b/specs/AKABEiSOFT3_Maho x Roba -Witches Spiritual Home-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46184ab98949a7227e26c505d5ee71d68dd7bc9ccfee51ec1f8099a14f25a55d +size 308079 diff --git "a/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec1.png" "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..c9068df43d63ecbe16877225e24c22195967ac1b --- /dev/null +++ "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3674a15da185692658248bbfc8a32010ff4619dc4b068b8ec034ea651f83849 +size 281601 diff --git "a/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec2.png" "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..29ac36125492ec6d01402f348a509ddddee6da9e --- /dev/null +++ "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec98b0943c7462c53f6ca320d07f022372255069170e7500cb6080f5a2549284 +size 303356 diff --git "a/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec3.png" "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..704f3aeac9bc7414e61886b62f5f5b97b74fc63c --- /dev/null +++ "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4625ccce8b65b7f5eed74d6261dd8c509f373fdef7b90855266d329a2a9ea9b1 +size 259591 diff --git "a/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec4.png" "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcb288a011bef6a710205663bf73b2ad412c6a24 --- /dev/null +++ "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e859c89ffb45b9685c6dabe1a5156a29ae01dcb36282e4a8bf4d435eb4a6200 +size 263549 diff --git "a/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec5.png" "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..d2521cd1ff831724623f1f82452b0aabc404bb27 --- /dev/null +++ "b/specs/AKABEiSOFT3_Ryuukishi Bloody \342\200\240 Saga/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09af093137517ebf4e5b01b17eebb606496d83c50f0cb59235a7bd387c9424f0 +size 306890 diff --git a/specs/ALcot_Clover Day's/spec1.png b/specs/ALcot_Clover Day's/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0fccc745b89ecff9e565acb7e16d12843bcb9cb3 --- /dev/null +++ b/specs/ALcot_Clover Day's/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b08c655f356b5dc540cb5472dfc0eea15cb8bf9ef8d024e70d9c525920c316c +size 272424 diff --git a/specs/ALcot_Clover Day's/spec2.png b/specs/ALcot_Clover Day's/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d427e585dd5e839f45118878abeed39691c80341 --- /dev/null +++ b/specs/ALcot_Clover Day's/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca7182a2ee5b42064214d5da86b8fa922717a346e72a78fd56ba91232d02407 +size 268531 diff --git a/specs/ALcot_Clover Day's/spec3.png b/specs/ALcot_Clover Day's/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f40f46fec0ea5cb5c712a0053ef744f843b7b0da --- /dev/null +++ b/specs/ALcot_Clover Day's/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7826b01e3f57daeef5d1b5b3d6ac6fbb16e86903f1b4c2ee29a38310ecd43360 +size 178347 diff --git a/specs/ALcot_Clover Day's/spec4.png b/specs/ALcot_Clover Day's/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9b76d6284da8064e4b82ab89fe8286d6d2176e8c --- /dev/null +++ b/specs/ALcot_Clover Day's/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e735a44e06cfbbc5b878b1632d5c0b4d3c8bc41f18308a061021f6348942712 +size 203733 diff --git a/specs/ALcot_Clover Day's/spec5.png b/specs/ALcot_Clover Day's/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb18ed42ad479a241574907410a6f12533363e6 --- /dev/null +++ b/specs/ALcot_Clover Day's/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccab7abcdfa314d56a8cfacd50cef12bca94e7652de85a369335ebb5f2652c19 +size 280850 diff --git a/specs/ALcot_Onigokko! Fandisc/spec1.png b/specs/ALcot_Onigokko! Fandisc/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4bf15aa967055624150e2fc62950494dd993806f --- /dev/null +++ b/specs/ALcot_Onigokko! Fandisc/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2825cc85f2e51d42b7ab1d3508c7dadd5e57a5f949cc990898efafc65a651b19 +size 324190 diff --git a/specs/ALcot_Onigokko! Fandisc/spec2.png b/specs/ALcot_Onigokko! Fandisc/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ed7fb852ea68e1dc7901520c7b8d7a8c4b4dec19 --- /dev/null +++ b/specs/ALcot_Onigokko! Fandisc/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b8178418bfb44cf2995c6f01add5c47fffe56e44c92ea23271c3b79b73015b +size 316582 diff --git a/specs/ALcot_Onigokko! Fandisc/spec3.png b/specs/ALcot_Onigokko! Fandisc/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3bbcad65087e5c37c0bf663939d5cf2078973a30 --- /dev/null +++ b/specs/ALcot_Onigokko! Fandisc/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc03ffafa82f6890ea800e4d0375cfca2f99a4ee5ba67cbc595c788b291c6158 +size 336270 diff --git a/specs/ALcot_Onigokko! Fandisc/spec4.png b/specs/ALcot_Onigokko! Fandisc/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1e85e350219d6899507b3a32fde78c2a3dd49f03 --- /dev/null +++ b/specs/ALcot_Onigokko! Fandisc/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f12aff27110075b61e03f61eb1e8d88c654db35ee5de045c412da4d03a0686 +size 312450 diff --git a/specs/ALcot_Onigokko! Fandisc/spec5.png b/specs/ALcot_Onigokko! Fandisc/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..93293592862d9a1287b29b28312d406248580e3e --- /dev/null +++ b/specs/ALcot_Onigokko! Fandisc/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2517daa56ecb3fd1af3a806f1e30607dc1383afdd4acc3206a2eb032649310dd +size 327876 diff --git a/specs/ALcot_Onigokko!/spec1.png b/specs/ALcot_Onigokko!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8fffcbf59178f2796b98323aed6cc6131374cb4e --- /dev/null +++ b/specs/ALcot_Onigokko!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1348f878073674cc5830fcca30d6751b83b1bd8d953a5282304e1f29f551a518 +size 311163 diff --git a/specs/ALcot_Onigokko!/spec2.png b/specs/ALcot_Onigokko!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..451861e6b1aebddfe31eeb3fdd46d0733f3ac985 --- /dev/null +++ b/specs/ALcot_Onigokko!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48d9819c92d42c38121e4815d194853cb7c11f4f5573dd0d64e076119e5415c9 +size 321457 diff --git a/specs/ALcot_Onigokko!/spec3.png b/specs/ALcot_Onigokko!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0d02b824c8b4074a35ce9ea7cc3954bb857973eb --- /dev/null +++ b/specs/ALcot_Onigokko!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337cae8cb3be8e1f374e923fde92d450f8113c9ffdc7ec36ee366cf0ab264d92 +size 326109 diff --git a/specs/ALcot_Onigokko!/spec4.png b/specs/ALcot_Onigokko!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bf40a07c4a47f580bf68806e0af0b1826b14ca31 --- /dev/null +++ b/specs/ALcot_Onigokko!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9b82757df81fc1a27b937052efb2b691ba43971b377feb319baa01735e2f0b +size 304223 diff --git a/specs/ALcot_Onigokko!/spec5.png b/specs/ALcot_Onigokko!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..326f1789adc7ac2a1f886473f5b36281d8307433 --- /dev/null +++ b/specs/ALcot_Onigokko!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38248eca972105e0b32c88129b7876db7070f548055c6cbc3c8890a452326ef9 +size 264116 diff --git a/specs/ALcot_Sakura-iro Dreamer/spec1.png b/specs/ALcot_Sakura-iro Dreamer/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7909f5b1de0b935af7406e8ce1b0f5e506407b8e --- /dev/null +++ b/specs/ALcot_Sakura-iro Dreamer/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b27b0cb524611647b2df5ffbeee682856412aee5af068de4b120d406106cca +size 329008 diff --git a/specs/ALcot_Sakura-iro Dreamer/spec2.png b/specs/ALcot_Sakura-iro Dreamer/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..96c14f27bab57a43bf17dad5a36c6fc9050b2019 --- /dev/null +++ b/specs/ALcot_Sakura-iro Dreamer/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0a5e7a606f98fdfd3fb47129f077fb59f43a9db2f7565ebbe256e6c5a8e195 +size 308182 diff --git a/specs/ALcot_Sakura-iro Dreamer/spec3.png b/specs/ALcot_Sakura-iro Dreamer/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4b10e6d43f4a6705561483841d8a55a6ade54372 --- /dev/null +++ b/specs/ALcot_Sakura-iro Dreamer/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6654772a88e094e76393c268cfbb82a19e11ef13dfe746b2b4becf95ca268142 +size 322455 diff --git a/specs/ALcot_Sakura-iro Dreamer/spec4.png b/specs/ALcot_Sakura-iro Dreamer/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8dce55a173de998e6dd956f0958c46406b538c18 --- /dev/null +++ b/specs/ALcot_Sakura-iro Dreamer/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900ad44598a5756881ab46321de14afe2c19dd1f3738f23edee5805594af9031 +size 330233 diff --git a/specs/ALcot_Sakura-iro Dreamer/spec5.png b/specs/ALcot_Sakura-iro Dreamer/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..44348f58df2ef57e5d2bed5d44d173ebac54a746 --- /dev/null +++ b/specs/ALcot_Sakura-iro Dreamer/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71149b3e63ecf01c93498c79dae8b94a43d9fb36ad0cc2525047462d86f01900 +size 319520 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec1.png b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b2eb43b587c49dfc2cc3a9e08b84cf30fdacbde1 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64c4abe7f560d4a3b9d268be0ed3683f8903904068b5a6d07331edc016f69fb +size 327554 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec2.png b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..151b1c3124fe973bb950996b6350e08c6411e34d --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e0a6da62c02ceb58791a9613489293a7259741fb25075eb747c5a152fa11a9 +size 322902 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec3.png b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..efbb801f8603c0eae72ca425f54b8f8099d25556 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e9486b3af8d455eedadb03298900799d7dd1512f23d92f8344650c08f05419 +size 322024 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec4.png b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..862259015acd334e7065bf6038afa903ee205834 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203901a03f5bccf0cb97173c979c7dfaac52df7dbc633f4a6ecf084de7e7b3a3 +size 309950 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec5.png b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..428cb5fc1a2a2e4a2fae3be9ab95cd36a384766f --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro Fandisc -Gosanke Da yo! Zen'in Shuugou-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1623ec6f66d502d63a6ad53d624c2676eae9cfd6e161377c483588b1a91c1760 +size 312936 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro/spec1.png b/specs/ALcot_Shogun-sama wa Otoshigoro/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..865efaab31c23b7efc7173a01b88045c8c282fa3 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0755f91daf223dac27d57d7a2c247c99d07b40f5595bf6a6acf61d67d282e226 +size 323949 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro/spec2.png b/specs/ALcot_Shogun-sama wa Otoshigoro/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2483283c116db13800d09b7df5f1be5a3da09df6 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f19e50c7dcd6535b330e65126ac2ae30a46999a8d0735189afabe37906f926c +size 327242 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro/spec3.png b/specs/ALcot_Shogun-sama wa Otoshigoro/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..aa531c0098c76c931ee3a9c67a65a0a512f83469 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a6fdd6e6a71ce3f1f38425457e3df27a46abddf41e3e400f023d0cc3b4cfd2 +size 324076 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro/spec4.png b/specs/ALcot_Shogun-sama wa Otoshigoro/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..34225654597922fd5d7be771b26fe48c1bbadef9 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:692d8976bff545ce601e3f14a9e295f708e6121d2ac561339a39bdd147c467cf +size 322924 diff --git a/specs/ALcot_Shogun-sama wa Otoshigoro/spec5.png b/specs/ALcot_Shogun-sama wa Otoshigoro/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ff682be89e8db365d045ea23a1cba1ed413b7315 --- /dev/null +++ b/specs/ALcot_Shogun-sama wa Otoshigoro/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a1037725e37402f8cc583241be8d5b8ccf4b430b8db66665fc7954d289ad9b +size 339282 diff --git a/specs/ALcot_Yomegami My Sweet Goddess!/spec1.png b/specs/ALcot_Yomegami My Sweet Goddess!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bfdc5d959894e369ba3f97eba1b741e1405cfda3 --- /dev/null +++ b/specs/ALcot_Yomegami My Sweet Goddess!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb18a2827fe55a6048f8045b23997048f9dbdf8685f0422be66d54cd494ca39c +size 331288 diff --git a/specs/ALcot_Yomegami My Sweet Goddess!/spec2.png b/specs/ALcot_Yomegami My Sweet Goddess!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5fed15ed92efa9d318b863108dc56000e40cade1 --- /dev/null +++ b/specs/ALcot_Yomegami My Sweet Goddess!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d021fafc848466bd5386a26f33655deeec4c5bdfc41b83ca0f73a0fd7630ea +size 321205 diff --git a/specs/ALcot_Yomegami My Sweet Goddess!/spec3.png b/specs/ALcot_Yomegami My Sweet Goddess!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5d206980acf37888dd7b61480fbcdf018420c8d8 --- /dev/null +++ b/specs/ALcot_Yomegami My Sweet Goddess!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c245b07ca9090827e6e0ac5de621e1cd2708e9ec26c49b19a9a655799751bb +size 317652 diff --git a/specs/ALcot_Yomegami My Sweet Goddess!/spec4.png b/specs/ALcot_Yomegami My Sweet Goddess!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..666189dbbdecdc8edb19d06905f14804c1ac4985 --- /dev/null +++ b/specs/ALcot_Yomegami My Sweet Goddess!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d252f0971222d67c87051d99b056d87aab4fc334f9faf88c607bf88601077af +size 318990 diff --git a/specs/ALcot_Yomegami My Sweet Goddess!/spec5.png b/specs/ALcot_Yomegami My Sweet Goddess!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ff22f72e46cdd9bf1592ce721ade6e0429a48244 --- /dev/null +++ b/specs/ALcot_Yomegami My Sweet Goddess!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb6a85d017b0a0cdfd3a33e61b1e52ccc48774bbff54a8b2f51f4fbe011210b +size 339875 diff --git a/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec1.png b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1566e18e033627419b09b3492fc86e0dbb393cac --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d260bab6d0647adfbfdaed9f201c0171236532fcdc5d8e640669a4ef9d2e4f +size 268976 diff --git a/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec2.png b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..88c1cb02ad611d7a2552a2f8153c43dec5b467ea --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae26238c9b5ee2054e2632126fc5bd3c7ed47dfaacc69543479b7e5b62d7c3b +size 260528 diff --git a/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec3.png b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..31209a6518f9a43b6ce0be6b4f4a3321b6d16172 --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c083f55a41cdf8cd05e0442b3c0da207c3917d62465a6fb9e4fddde215deae91 +size 300906 diff --git a/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec4.png b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bb756817de960572e63c18872adfcbcc494d8e66 --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abd4bd23d207b3b1d7f5a6ee22a2a70555e5817e5d7e82385c2b659f5029939 +size 318160 diff --git a/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec5.png b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bf3f1af455dc8f63faf6bf5fff908a3384e6ad74 --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Rui & Miyako Mini After Story/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37290a6225184e58bafdd8718a0722094afe14d7ec4bddd50ce66f10c9d32a2 +size 303365 diff --git a/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec1.png b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..90c95906508fa7c0fc9f29e8afa9c5c6182514ac --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102f08aff9d773d24cb6928f1e3dc34eb7e13b0ea7523aeb115c9ea4c9818a56 +size 305864 diff --git a/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec2.png b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3d2e584db59f9e716db82afad29d0531619b160b --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d498f8c017f6151fab8e2b3842cb463b85e5653f7ecdc53660a997c7fd58ba1 +size 291676 diff --git a/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec3.png b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..12d5e7ce97586b1973e3e7ecb4b38db3439cecb2 --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53a7cd51d38345e808283f4c110389c434b22e61557e8d8d26946a454006c11 +size 268380 diff --git a/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec4.png b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bde55357ce3bad5cab0d62460e380413bb7bdf1d --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4acfe4c4e04866539ffc15c2d842a91207477fdc9d6a1346a17fd14579e97957 +size 309783 diff --git a/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec5.png b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..69c4be265ca41c1976af5e7acbf6b20e1c5adc72 --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai - Yua & Kirame Mini After Story/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87cd6c954c69751b3b13ce4df9e42d1064e56a4a75382aa820498b4cee727302 +size 288963 diff --git a/specs/ASa Project_Futamata Ren'ai/spec1.png b/specs/ASa Project_Futamata Ren'ai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e182b86166a8c13c092d545b7bb49d238654626d --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a6163b6b4f1f232c20a4439abcf34c1ba4fe10af118c327e5a814e49dd9eee +size 304596 diff --git a/specs/ASa Project_Futamata Ren'ai/spec2.png b/specs/ASa Project_Futamata Ren'ai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..97b870d89a8f592872e09ced49c0924cf3bfd362 --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2c37224c132b6327bc35cfd80d1c11b4333f9cf71616266f094a8dd5fd7449 +size 254460 diff --git a/specs/ASa Project_Futamata Ren'ai/spec3.png b/specs/ASa Project_Futamata Ren'ai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fb8389ad10716a2a5d0a5d513a4a7f6151a06de4 --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a332199ed17b085c4976d5f905b6c3036a0bfb88bc6b5b49327d28bf9a9871e +size 328308 diff --git a/specs/ASa Project_Futamata Ren'ai/spec4.png b/specs/ASa Project_Futamata Ren'ai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4cf9c77db3f4c37678fe4b8c19dc233d07f82a9d --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f07301ba27a76cec673322dca633b6748ad0a76cb93228936d8d3d8a913e9d5f +size 306095 diff --git a/specs/ASa Project_Futamata Ren'ai/spec5.png b/specs/ASa Project_Futamata Ren'ai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4fba3af102a23de37daf13dd80ca769cab4d383f --- /dev/null +++ b/specs/ASa Project_Futamata Ren'ai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e6125b06fda82f45d9a84d1e1975f899e117294a7eeed057fe9846df5d1f9b +size 315923 diff --git a/specs/ASa Project_Karigurashi Ren'ai/spec1.png b/specs/ASa Project_Karigurashi Ren'ai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c517512393c24bef5cf870422312954f19dee047 --- /dev/null +++ b/specs/ASa Project_Karigurashi Ren'ai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5efa0b93c4cbccfb9c0047797bb2f3895aa8db44c659b7af26bbdd2a466f4418 +size 308051 diff --git a/specs/ASa Project_Karigurashi Ren'ai/spec2.png b/specs/ASa Project_Karigurashi Ren'ai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8418d2313e1ca4954735727e54d70664e14daf8d --- /dev/null +++ b/specs/ASa Project_Karigurashi Ren'ai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f4793daeacef7b453fe86e10ba74fb4de5b85425a09de15e34f4d2e36449adf +size 302319 diff --git a/specs/ASa Project_Karigurashi Ren'ai/spec3.png b/specs/ASa Project_Karigurashi Ren'ai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..980b2386f054e93c80840c3c40011603c329007e --- /dev/null +++ b/specs/ASa Project_Karigurashi Ren'ai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234d38dc11d7137b5ef6723641ff4044655085c0187c6f1a8c57052d2e1f5998 +size 285682 diff --git a/specs/ASa Project_Karigurashi Ren'ai/spec4.png b/specs/ASa Project_Karigurashi Ren'ai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8c9df90b425f5a3e10285dbce9f21868e2de955b --- /dev/null +++ b/specs/ASa Project_Karigurashi Ren'ai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4dad17ca3d411ebf1e396993351dd0a9e64891b8e6d979b170387d7eb8aa85 +size 223520 diff --git a/specs/ASa Project_Karigurashi Ren'ai/spec5.png b/specs/ASa Project_Karigurashi Ren'ai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8de0cf1847fb587e2488dc1d2d68b144c38fb25f --- /dev/null +++ b/specs/ASa Project_Karigurashi Ren'ai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a66b5fed1f8e9ca11b1d699eea06e31acc70c5074e753e6c57ad1225c5c5306 +size 234144 diff --git a/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec1.png b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8c7a1207ada8d7a5f8044527a9c8ef8d957c15 --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc3f51afbb34135e0fc0774a3ae0ab567ba8eff78c62fb2a8a2385b434939cec +size 296191 diff --git a/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec2.png b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..91f02257071ace7dfb407abc21a5a98b7492223c --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86fc1c1b096d54bc43aa3ba01f833f8f66f0859f780a91b988310b6707853b9 +size 287689 diff --git a/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec3.png b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0f8ea3017667e1b31dc228fb4243a8f90355a242 --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7729c0497d49af3d9fecf13d35f6f5c1c79476fb41e74f3394453945e87567b0 +size 290348 diff --git a/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec4.png b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ebd2a3bf9151f7d39f81673affe9879d1bbe5a6c --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f2674be0514c325904d711b31c4c34151f5c9952434861e2b308fbf93ef82ce +size 259602 diff --git a/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec5.png b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..19a344bf78e1a89025608a710a0952fcb1b39587 --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai - Mini Fandisk - After Festival/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955620609227016bf4c200859a8de4317c544d3b703ac4a88debace0544e9bbd +size 239299 diff --git a/specs/ASa Project_Koibana Ren'ai/spec1.png b/specs/ASa Project_Koibana Ren'ai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..18e7a2e72a469b58cc32b2109ee95010c659f583 --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82fc3ec6ce1bfb1262d125b3465718ccb10776e118d2a3c9df3e151b6678e43 +size 303747 diff --git a/specs/ASa Project_Koibana Ren'ai/spec2.png b/specs/ASa Project_Koibana Ren'ai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ef52f6453655b046f5fca05808588529750731a --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ef399c4fcbf7afa99c8c0dc769a18f0f3fd3d286f3799c65731b003629dd6d +size 266900 diff --git a/specs/ASa Project_Koibana Ren'ai/spec3.png b/specs/ASa Project_Koibana Ren'ai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2aa8bd7e738fd0542a7f3b6e25c6f39cfcbb9e4a --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e6acb08d5b9b9123656d646aa4de736149858f780a68203049743970ab1c72 +size 288394 diff --git a/specs/ASa Project_Koibana Ren'ai/spec4.png b/specs/ASa Project_Koibana Ren'ai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ca12580dfe086bffea91e804c90769c25bd94a29 --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949db7823ff378dadc5ffa18bc1f89e3a4203f48d957361f1e14ca9e83f4ff0d +size 300431 diff --git a/specs/ASa Project_Koibana Ren'ai/spec5.png b/specs/ASa Project_Koibana Ren'ai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b2a7ea0140249136a206a6d7492228b8916a1db1 --- /dev/null +++ b/specs/ASa Project_Koibana Ren'ai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9130af902ad43251269c70bc4a33228ef6718b7c3877d16c1947954f7db5368c +size 290866 diff --git a/specs/ASa Project_Puramai Wars/spec1.png b/specs/ASa Project_Puramai Wars/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..553703b5ec9774680b5e266eec3cfd4a6b6db500 --- /dev/null +++ b/specs/ASa Project_Puramai Wars/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468f180670dade7698e4eeaedecf2aa1b836a57e3b7ad5eb7dbbcd7af577f4a4 +size 323512 diff --git a/specs/ASa Project_Puramai Wars/spec2.png b/specs/ASa Project_Puramai Wars/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf260f388b584ee7819e0861d0ccf8dccd65045 --- /dev/null +++ b/specs/ASa Project_Puramai Wars/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d7bb61af64b4676943d5f005c09e19a9077f75b72474efc3661b76aee769dfd +size 362943 diff --git a/specs/ASa Project_Puramai Wars/spec3.png b/specs/ASa Project_Puramai Wars/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..74d1fe34b8c7b93bcfd89fa05616e2d76b040fce --- /dev/null +++ b/specs/ASa Project_Puramai Wars/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82db5a17bdad0f388f17e7059db856269c9e5888ffe45be55204e89044def61e +size 341862 diff --git a/specs/ASa Project_Puramai Wars/spec4.png b/specs/ASa Project_Puramai Wars/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..797461a509bbfa31d4fb5c05f71caee3b53d800d --- /dev/null +++ b/specs/ASa Project_Puramai Wars/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694b0b615e0ca1490a28bbd895acd8cd95eb54c88d35061dcc5405e8ccac4642 +size 361283 diff --git a/specs/ASa Project_Puramai Wars/spec5.png b/specs/ASa Project_Puramai Wars/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e3a8218bd6bf05218593a1356fb5e6423ac1ba27 --- /dev/null +++ b/specs/ASa Project_Puramai Wars/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e3fcf666b7deca6c25e3c6c3fd2f94bdb28cd6d5bf7c03b34b799e7951fa10 +size 364138 diff --git a/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec1.png b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..eacc98dd298a1cf0c00c6cc0d1ec7a079f5bce88 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebecba23dbeb94e3ff7c5dbe84faec43adbd3640c392f4d2000380d8dbe30d0f +size 318624 diff --git a/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec2.png b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9e40b5b454af0afed590509214c1f069ab6c643e --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e28468cb35554c88ffda9be9f8e2ed145b932821d75c69cfc60c4f4ed1d6b03 +size 312256 diff --git a/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec3.png b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..92cae1ae8af47c764676fd6d8094f8be127c10f5 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697080b6295b3f43424c7ec9f7e5d9efe7d85a0ef2f751527f9944bed5de3f3e +size 321337 diff --git a/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec4.png b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..75b7359f029102f6ed7881eb98cf19838c2f3ace --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56e7a179883145e41467e932075cc5ef7695dbebc9e692c3e31cd5d75f5149f +size 330403 diff --git a/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec5.png b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4018adbbad20af494c7bf680bcdfae90bf45538f --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Mari & Shione & Ao Mini After Story/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5f4921d9db7ce0299682c233efebfb8417088f3ff6089530ff971397224431 +size 322023 diff --git a/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec1.png b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2fbe2f0aa47696fcc341f7c99ab424b1f9399e48 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304c4d31b4c309ea02525978e9ecc89f8deba43a2928875d1ca3a910571d1aa7 +size 320713 diff --git a/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec2.png b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..169517325acccb00ddf71e3d38968cba2a1498d0 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b5f3f410aad518fa7d633f7d360f320bc3356df89ade5c7f731466234bd68b6 +size 320308 diff --git a/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec3.png b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c0c5149e95574da2f36ff15dca27fcb696ce5ec --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d486291e1ac26356add4f33dfd162b8647526eb9683ce905271e2610bc8de1e +size 326673 diff --git a/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec4.png b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..faabf0f2a5e3616ebea46297f9a5e632b1cd88f0 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3aaa0f06c91417dd464fd302e81a5e3a3663d72ec6182bc561e18e1bb19bf1 +size 322254 diff --git a/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec5.png b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d27ac584e3e860d43e9109387bbbb338bb98846a --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale - Nonoka & Renna & Yuna Mini After Story/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16333864d6a4b7de0f4d0c66c01d8fb729c641f88d5539123bf184fb0333c948 +size 320472 diff --git a/specs/ASa Project_Ren'ai x Royale/spec1.png b/specs/ASa Project_Ren'ai x Royale/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..40a3d2578df1c48d24221475f0a558a4cfd2707d --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46107e178c88e360598c6d24796fac54e0049901e90b43ffc8d6a9e2ef8401c5 +size 310192 diff --git a/specs/ASa Project_Ren'ai x Royale/spec2.png b/specs/ASa Project_Ren'ai x Royale/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fb48379fe40c98680d4a68786aae681461f77d50 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4941afc2e9818b9edcf103acfeb49bb59df45de3166f530a8e6d5be1255b82 +size 312859 diff --git a/specs/ASa Project_Ren'ai x Royale/spec3.png b/specs/ASa Project_Ren'ai x Royale/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..34156b720fb19717eb593476298fe317bb89bca1 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04dc2a91198f92890cb316b78e3560e400e80f060968245929fb6394a34618d9 +size 310698 diff --git a/specs/ASa Project_Ren'ai x Royale/spec4.png b/specs/ASa Project_Ren'ai x Royale/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..59526faeed4ebe915335bcb8ef2d56c83b1c830c --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e06c74e1ba325633d9b0f20c00a090eca80b23e1c23e0a1ef8d370a6192d9c8 +size 309899 diff --git a/specs/ASa Project_Ren'ai x Royale/spec5.png b/specs/ASa Project_Ren'ai x Royale/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8661b141ac8dbaf2cbe19cc433f2941e237365a4 --- /dev/null +++ b/specs/ASa Project_Ren'ai x Royale/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20752aba1572ab0ceb6ee812ae712bac96b9e77bb4182a85768be10251629b0 +size 277229 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec1.png b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..39d3bca81f18ed05d4bdaa14c34e6a0b0c51cc22 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04be22dff9775361d74798f21f72d3595722c068dd2e7c3b406211a8a951a8d6 +size 317503 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec2.png b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2017666eb40ded2a19e7f721d43b5f642bdeddcf --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73600d3d207da21d2b09cd8ddcb02226a5e9f04c0cf2c7b7cb3efe974902928e +size 314145 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec3.png b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3e901236df9f8a7cc876aaba7f3a3bac4076d697 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec9133ddbd2f1909e6660b45f1a435852b1dd13d1811811b8de09d51972324c0 +size 325707 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec4.png b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6573ef643c3e6adf65ea1ca8b5d06786ae82d583 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7beefca05fd1c223da2b0fe95fb51ed16f5634040578556ef602b9e28091fd +size 320926 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec5.png b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5c5e8f712b7b08e0a61c1378a8a41151734fdb87 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Emi & Hasumi Mini After Story/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1583afb93995d07b461dbe25ae9a05461e5567a29004893c8d26d95562d6fe9d +size 338851 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec1.png b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..779ff476a14bf63ea85b70b962bd3488d0cb9116 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531fd3dd15c78db2f3d870c1dda79d71f49cc6c450dc1e7a6b0aaae210f8ca10 +size 310750 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec2.png b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..496356ec20ec3ddacfa521744f801d3b437180b5 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406a2fba86f0b1a922c6ae24b471df9bc910c72632f94464c8d2b2e29d2dce5d +size 323516 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec3.png b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ae81e2b01acb7e20320bf581957bf2dc12fa3c51 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa86fee10720747b44511aca36ebde03b714bac6802cf9447c68f722b4f81a65 +size 325700 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec4.png b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1e5d9516bedb596c02daffaabd8f9b1384e1e5ec --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cbc14191e198bba3b8090e5f3c59568606b726a4bc244d46bb6899b51d0141c +size 324518 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec5.png b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..62a2f3e66a167e8caa68fb49daa7d8934da2cb67 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita - Tsubaki & Chinatsu & Konatsu Mini After Story/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6e0df33837c2cd57c8598ecf3a546d9aaafa04462e13c10ce5360a41a504b7 +size 322075 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita/spec1.png b/specs/ASa Project_Ren'ai, Karichaimashita/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4f232fdca19374d8748349e76994bca17e6c7c0b --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2508c16063ae97b0a25bf22fab4ca6392cff73682aa31885e1d01bcce089d21b +size 310417 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita/spec2.png b/specs/ASa Project_Ren'ai, Karichaimashita/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ec4953d0246cbad21d3103b150df9e23c7382655 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1707b2276fd38d0790aa3004979fdff5d2f18dd1312863e89e5cb20e6220c17 +size 294828 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita/spec3.png b/specs/ASa Project_Ren'ai, Karichaimashita/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8e4eb7956841a7fbc5befcb3234f909bcd798651 --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485415439796f85f2e218ada1a1b587b9113a90e3e204c388cc2158e813d7a40 +size 289867 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita/spec4.png b/specs/ASa Project_Ren'ai, Karichaimashita/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a2059e8032e4f9ab9a6a4736bfed7b6feaf7db0e --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e79f36e51d0fcd01d52c2c32e4d28924a30056bb1de4da1bb6ed3099b78790 +size 320484 diff --git a/specs/ASa Project_Ren'ai, Karichaimashita/spec5.png b/specs/ASa Project_Ren'ai, Karichaimashita/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e71d91efa2685c77fdb52a7e16d74848931cadbd --- /dev/null +++ b/specs/ASa Project_Ren'ai, Karichaimashita/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2be49674a0701b3734108d6ba8d05a4fe11328678328b36150a00afd13c0ad +size 316073 diff --git a/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec1.png b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..63381f69f841f32db18ed94433fb7d2df4c3add8 --- /dev/null +++ b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7a596b7528132bb73b8b4b9e3e3dc8f92ff19d5f0c01cc2bb43dc4c1c026b0 +size 289654 diff --git a/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec2.png b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..af65ee1525749c7aec0d8a6432452eb6978e3994 --- /dev/null +++ b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9176581388952dcf54c55c11bac976e598db8d820e03f107e33cdcae25ed9a +size 300333 diff --git a/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec3.png b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d0b53acaa9a72e8d4e61853f968981c2fd880031 --- /dev/null +++ b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda0e577eac1f534ae7a1ab92872d3fab45417e1aa733a7e962aa32dadf418a6 +size 289224 diff --git a/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec4.png b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..062596cdac8a73951169179ccee22c93e5f44630 --- /dev/null +++ b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7438b5353065dd80b7f29eb279d7aa15a844edd49f8eab81e2eb615f7de58a47 +size 226972 diff --git a/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec5.png b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fc56e338a26690b18ff34052a0565382dc17e307 --- /dev/null +++ b/specs/ASa Project_Suki to Suki to de Sankaku Ren'ai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c266f6b41b29a085e61996f9892de196fa1733a15d68a3f7b31ceb4ad785db +size 259813 diff --git a/specs/AUGUST_Aiyoku no Eustia/spec1.png b/specs/AUGUST_Aiyoku no Eustia/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7819df41824e1c74f7c72f509c76783c8e9aa4dc --- /dev/null +++ b/specs/AUGUST_Aiyoku no Eustia/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6334aa18fb8d07f58a996e67451038eb791e3304d8150c4610189a53dcefd05 +size 230465 diff --git a/specs/AUGUST_Aiyoku no Eustia/spec2.png b/specs/AUGUST_Aiyoku no Eustia/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d678e06d2e0d1bdd1d73af67b502e36d817fd3f3 --- /dev/null +++ b/specs/AUGUST_Aiyoku no Eustia/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c38a1c6851427d6c4b6a42905cfd9cca55e6556dfe8fa0bd06fec5ef9770e5 +size 250833 diff --git a/specs/AUGUST_Aiyoku no Eustia/spec3.png b/specs/AUGUST_Aiyoku no Eustia/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d952d18aff0fa7f2a55b334573122ed720d857a9 --- /dev/null +++ b/specs/AUGUST_Aiyoku no Eustia/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7334f1b66968d12737d10c61fdea46345a84c3a2adcfe057c06621d3d6373ff +size 313149 diff --git a/specs/AUGUST_Aiyoku no Eustia/spec4.png b/specs/AUGUST_Aiyoku no Eustia/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e17a48bdcefe79e51aa6f5c13de3a1d517a23faa --- /dev/null +++ b/specs/AUGUST_Aiyoku no Eustia/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf9ee1e0ff286033b7c8509ca064c061538334fd8c0d299079893ae3e015524 +size 314678 diff --git a/specs/AUGUST_Aiyoku no Eustia/spec5.png b/specs/AUGUST_Aiyoku no Eustia/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5045f623d8a2e80d808a43bbaffa58214f1e4667 --- /dev/null +++ b/specs/AUGUST_Aiyoku no Eustia/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc636cfda12872bc2c7f2e5ea7d92d4296f86a125e503fbc546278fd1e3f0bd2 +size 261832 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec1.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1c5fba7e8d725a226547b60827a6606d22331a --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30b28c4fbdc7f0a4bd3af5ca89b7fd005ca7a60c1afcdbbe559de92de3287529 +size 273900 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec2.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..373ec9ab586e1e38afeb73cd3cc4640d6146d1e4 --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea402afd50a408692cda019e949506ec0ba11f196c2c61a4e804f41fe3ca9a5 +size 328713 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec3.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7228d1af2e5948182c35d9a046946a6da8524119 --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f516779b1dd073a9c202336ee9480aa4d012d7f6ee036c44b85d6a4fdd2d36 +size 322050 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec4.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..651678235418bf840b8084904bd3469a77ae6d8c --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19dda96eb2a31ee0d25580b4da43842b44ae9ca87ba01fb5bb485bcad33d3828 +size 261385 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec5.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8470bf43ed423cc0a8cfbf98a1a753abbc2be9 --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki -Hana Akari-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a97cee19876881c909b6fee31230bc5c0b7ae10ce14bb4c3cfe0523911fb3eb +size 261713 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec1.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a10c440dbcdaed87b5cdfca7adf648a7cfaec8b4 --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f164f26500b7ac948cc443e043e9537e492162a89be7ddf1c51e0a77c06c10 +size 274941 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec2.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3b56d6730dbfb6152dcf63a0f4302c471469d1df --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d5c9aae23d672559f7a431e4e34a6b44485f11fccd2bbe8218084b6c5d960c4 +size 252865 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec3.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5ba1fb54c403d82e211e492c075c04de5f73b93a --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40906239b65c7adc186a3c7a367cd0a985f7d5676da3257438a094d727e87ac3 +size 284513 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec4.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..22aed89deda75a54bd891925b7e9fbe6f96355c4 --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bb8f14d58f802fe189e7c8b7d38457c03bdfd4bc68d980f90ec71a870f70cf +size 252770 diff --git a/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec5.png b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1b6825c09356f05b59ad9ac4135731ed919b6309 --- /dev/null +++ b/specs/AUGUST_Sen no Hatou, Tsukisome no Kouki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e539cb5efead7362f455e828b20a48b25ea96d056406cec1b0db77f1326610d +size 270848 diff --git a/specs/AXL_Curio Dealer/spec1.png b/specs/AXL_Curio Dealer/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c7e0f809d1aa303ee87d82b491554c8e7a6738e5 --- /dev/null +++ b/specs/AXL_Curio Dealer/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817f49e96610c5052368658396fdcd74969595f7c812b5e131a62e569080edcb +size 320168 diff --git a/specs/AXL_Curio Dealer/spec2.png b/specs/AXL_Curio Dealer/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2c4cf62c220fe7b483ed8be7aed9fd31d949df93 --- /dev/null +++ b/specs/AXL_Curio Dealer/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a297ea8260a8cd524290a8e92f650c445b43d4c5d9dc9ee420fc766960c355fc +size 293761 diff --git a/specs/AXL_Curio Dealer/spec3.png b/specs/AXL_Curio Dealer/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f702dfbbe9c9f1ce482eb2c78e54847d04648f0c --- /dev/null +++ b/specs/AXL_Curio Dealer/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b22c13f3b21e86a18d737a0c62361cf1afe69aa399dbff4436372ac9d92c2ef +size 302730 diff --git a/specs/AXL_Curio Dealer/spec4.png b/specs/AXL_Curio Dealer/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2ebee36ae95a5f37ec55390ce2b9506f7a146903 --- /dev/null +++ b/specs/AXL_Curio Dealer/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1175329e6899faed8057a95297509a7b4644be0361f1fe7cfd20c21731037d96 +size 280330 diff --git a/specs/AXL_Curio Dealer/spec5.png b/specs/AXL_Curio Dealer/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a76361ac6568b1b9e8e843cc7b353c450e93293f --- /dev/null +++ b/specs/AXL_Curio Dealer/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f2557e6c3f7f9eada9cdddc6e019d1c7e842b46c36d22990b8bbd1090ec689 +size 283322 diff --git a/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec1.png b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..efec5111c8943de94283f38b219f36df9459d2bd --- /dev/null +++ b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0400c3728662612ff2280b6ed7c2c5122ca55a48a7f85119167bc8614de74fc +size 116843 diff --git a/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec2.png b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a40b7a306e2b20088c7868782030eb91e142b62c --- /dev/null +++ b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163c0bb89060afafe34f0437ca7d4b5db8119de885a6e56661690d1faf4f9998 +size 321758 diff --git a/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec3.png b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b6f0f09b2411361fcc0d35fe61d9003a10a211f3 --- /dev/null +++ b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18adc8711f4c07d8299c2671b7ffffe4c662159ce9cbd3a43cc38fc18ec8b41 +size 288116 diff --git a/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec4.png b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..eb0af6384dccf1736c19b0a80a912b5ef947abfb --- /dev/null +++ b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8755d7557442a20182d12ff82d9b57f7c1594eaa3648b048d013e4e1a77effb5 +size 298278 diff --git a/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec5.png b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b09ae3ea5ecd2630d2f3e0d58feb243916d621de --- /dev/null +++ b/specs/Aino+Links_Sousaku Kanojo no Ren'ai Koushiki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116a9c014f14626df385f85d6d18c302e3a7d08583df1815bef94e640c8c6052 +size 307516 diff --git a/specs/Alice Soft_Choukou Shinki Ixseal/spec1.png b/specs/Alice Soft_Choukou Shinki Ixseal/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e3e1a8b26c608f62cce4944daa7da59812fb97a --- /dev/null +++ b/specs/Alice Soft_Choukou Shinki Ixseal/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feca69ffbea4d6acd9bdeca6f04b5b800d4b7d503a581122b7ff433ca4302544 +size 335493 diff --git a/specs/Alice Soft_Choukou Shinki Ixseal/spec2.png b/specs/Alice Soft_Choukou Shinki Ixseal/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9bc518ed8c919132b243ce3baf6284f45335ccb4 --- /dev/null +++ b/specs/Alice Soft_Choukou Shinki Ixseal/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b85c4b026decf48133c7baf917057a73f0e2d0ed0ad2a2969660aae8549c43 +size 348615 diff --git a/specs/Alice Soft_Choukou Shinki Ixseal/spec3.png b/specs/Alice Soft_Choukou Shinki Ixseal/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..88dc448c8ba3172ccce60c9d17f87717bdba19b7 --- /dev/null +++ b/specs/Alice Soft_Choukou Shinki Ixseal/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a9a50013ec8074ea5231148d449287dc669a3a98ee9de8e0e1c28fb38c9f4c +size 333679 diff --git a/specs/Alice Soft_Choukou Shinki Ixseal/spec4.png b/specs/Alice Soft_Choukou Shinki Ixseal/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..71c6eeb6bf287e019e0600bf0a27fd0edd50a23a --- /dev/null +++ b/specs/Alice Soft_Choukou Shinki Ixseal/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f54cc3e3e8d1b1bf39ac7f510996130e0abf1eabc3b4e8019bf02e2c6de7d8 +size 340644 diff --git a/specs/Alice Soft_Choukou Shinki Ixseal/spec5.png b/specs/Alice Soft_Choukou Shinki Ixseal/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cbba2e813effc76bdaf2d066412436c96516f253 --- /dev/null +++ b/specs/Alice Soft_Choukou Shinki Ixseal/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee55eb1181bb2f4ef76719036b7f70a061c8c54b6ebc66dbd7fb3beaf18e0d4c +size 343531 diff --git a/specs/Alice Soft_Evenicle 2/spec1.png b/specs/Alice Soft_Evenicle 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1f45add9f43c44a06c0b5f86c789a8764e20962d --- /dev/null +++ b/specs/Alice Soft_Evenicle 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adaed4bf51d5e932e2dae03704eecf63bdf632b3e6292c1b9df75cc74b1bc937 +size 336996 diff --git a/specs/Alice Soft_Evenicle 2/spec2.png b/specs/Alice Soft_Evenicle 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..590414f7fb39aa0ceac187a0621693489c778f10 --- /dev/null +++ b/specs/Alice Soft_Evenicle 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273985445a410837b6b543dbd4b9b8cf0483222b1ae59eee5b853ea87bff50d7 +size 345882 diff --git a/specs/Alice Soft_Evenicle 2/spec3.png b/specs/Alice Soft_Evenicle 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..96a6d8b166d06c1ebf54b7e3d2e730eea4c51208 --- /dev/null +++ b/specs/Alice Soft_Evenicle 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d95a3cc69114b7b31b3436bb8c81e19579ec0625654f2758edfdd83abd655c8 +size 313157 diff --git a/specs/Alice Soft_Evenicle 2/spec4.png b/specs/Alice Soft_Evenicle 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a47bb37b46ced995b86967d513cfaca43a4e34e6 --- /dev/null +++ b/specs/Alice Soft_Evenicle 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff431f16108e8c15b0201f34553f45a2957f1401c6d0facc17c0a22baf8af5f5 +size 345209 diff --git a/specs/Alice Soft_Evenicle 2/spec5.png b/specs/Alice Soft_Evenicle 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..20f101f418928576efaf0465f3565ea04534370e --- /dev/null +++ b/specs/Alice Soft_Evenicle 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f89631e6264b6d5c59549d19c0f56b45d54261de6dee63b2e1c3190a39587d +size 327949 diff --git a/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec1.png b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7e251c7b3e5066a49296cb17509dd104c2a4dbc4 --- /dev/null +++ b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ad8013a9f4c0310aa15aa04e35b6f3294b4563ecc5a31c76f0950dba1f091d +size 342806 diff --git a/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec2.png b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d960d316b1fe10e17b4b194faf1c80e0e2b7ee71 --- /dev/null +++ b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa4d04ac458542481260a2e1c02b0d55497f0a62f8b31f5e39aab64f2a60778 +size 357291 diff --git a/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec3.png b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c97ebdfb8d1395d0b08d2b72ba27161b51b84689 --- /dev/null +++ b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f7cb8a07d88d8c46259344d0d41829d9be99711ff301e71cf6b37f23f1a424 +size 353785 diff --git a/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec4.png b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..efac96562449a149c8a62de478461337a950654a --- /dev/null +++ b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672281b4017c2ab7960bb785621907dc30e3e1ec9496b50e04867072ef7ad134 +size 349880 diff --git a/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec5.png b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..366875fbee67017377ffb54f475cba7382d28417 --- /dev/null +++ b/specs/Alice Soft_Rance 03 - Leazas Kanraku/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cb70d7dc292dfbfd1ca8545a55ab3e9c1cd6725b21ebe47af192fc04538f393 +size 363692 diff --git a/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec1.png b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..cbba890a33bb8b96c496b8a954dd5336e64ab673 --- /dev/null +++ b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be70f1450044d4a3601b4105529f1b2f334390bacb901c71a1a2dd1b9c5ec1af +size 334106 diff --git a/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec2.png b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5a5d7d5885db8869d02419fc9a3924df007fab5c --- /dev/null +++ b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5427978e32f6fa9ef9f089f76fe3f170b8ea9c6a9a2b926febd8c13c763a5d3e +size 325356 diff --git a/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec3.png b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f6c1fbfbf08e5503f9a96d46d55b9f6f7b8d56e2 --- /dev/null +++ b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026d4d763e2565cf234ef5fe6f285366b37d6f4393c12e33e5ad20e6e0c90df3 +size 350067 diff --git a/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec4.png b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d8987c5c4dcb098888c51f9d16a39cf7207a2b61 --- /dev/null +++ b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db08bf156c5f8a365686cd2b52545b53c2dd5098c073afaa5335b20dbe969331 +size 327555 diff --git a/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec5.png b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..77d890c8e16c669db3a2f819f533fec0bd50b119 --- /dev/null +++ b/specs/Alice Soft_doHna doHna -Issho ni Warui Koto o Shiyou-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0653e002d37dbdae9407c38e2b670f095737a80649f54a14b6d57285a07306d +size 341326 diff --git a/specs/Applique_Cross Concerto/spec1.png b/specs/Applique_Cross Concerto/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..552a4c107637a761409f984cc9ec1cab5f09ab68 --- /dev/null +++ b/specs/Applique_Cross Concerto/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78998502014e2008c811750a1ee8afa0d23884e5ab582654e7d9df5e78bae23 +size 282994 diff --git a/specs/Applique_Cross Concerto/spec2.png b/specs/Applique_Cross Concerto/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7aa5a92d1764268bf5d063658e76e9e918b1031d --- /dev/null +++ b/specs/Applique_Cross Concerto/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51348fe2844137f461eff61b8c32ca06bc4efadcb135149543572616eadfa2c +size 307912 diff --git a/specs/Applique_Cross Concerto/spec3.png b/specs/Applique_Cross Concerto/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd1a67dd14b578130420ae8cb603ae7aaddb760b --- /dev/null +++ b/specs/Applique_Cross Concerto/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1777b2212da1e1aca9745b11a51376d53b1baeb8009a22cccae11cb47428d6f1 +size 321713 diff --git a/specs/Applique_Cross Concerto/spec4.png b/specs/Applique_Cross Concerto/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c67ed9a53381e7055e016eaeabc42831ad75ac35 --- /dev/null +++ b/specs/Applique_Cross Concerto/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea0355e411e1bb090b45f6b099b20c2a3f7000fd16e2aab03cc94b4497680217 +size 278100 diff --git a/specs/Applique_Cross Concerto/spec5.png b/specs/Applique_Cross Concerto/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a6149da6ff9ad2503eb98bee49923dd7c21bbee2 --- /dev/null +++ b/specs/Applique_Cross Concerto/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf77d73b790a19116c9776f74eb5f421c0363b8b5e8f222b7a8fcc1dce50fba +size 296112 diff --git a/specs/Applique_Toki o Tsumugu Yakusoku/spec1.png b/specs/Applique_Toki o Tsumugu Yakusoku/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..64df40dde96625256472feb9377b0bf4939e4923 --- /dev/null +++ b/specs/Applique_Toki o Tsumugu Yakusoku/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bba1327a72043c6389803f634ab7fad27eed01700b54e9dc0fbf52c256b968b +size 247865 diff --git a/specs/Applique_Toki o Tsumugu Yakusoku/spec2.png b/specs/Applique_Toki o Tsumugu Yakusoku/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9c4ac75b1314238715ace08d0cdc7b0170aaa97a --- /dev/null +++ b/specs/Applique_Toki o Tsumugu Yakusoku/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1d01bad44e432392ce96e0332beb2d244f36d62c7126799d223dbe7c74d009 +size 327898 diff --git a/specs/Applique_Toki o Tsumugu Yakusoku/spec3.png b/specs/Applique_Toki o Tsumugu Yakusoku/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..318eaeea5eeec3dce0c39a6014090d80e5eee006 --- /dev/null +++ b/specs/Applique_Toki o Tsumugu Yakusoku/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058fbe916b1a8a899c257518aad16f094642b80122ddce72c0ad3d11d6e36e21 +size 317988 diff --git a/specs/Applique_Toki o Tsumugu Yakusoku/spec4.png b/specs/Applique_Toki o Tsumugu Yakusoku/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c3ba71a77e361a6c5f680cf07379654954b0db95 --- /dev/null +++ b/specs/Applique_Toki o Tsumugu Yakusoku/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fffe03ff125035aa83d4f791070cad3a17fa32ed1da1e74e023106f0e9404e +size 320257 diff --git a/specs/Applique_Toki o Tsumugu Yakusoku/spec5.png b/specs/Applique_Toki o Tsumugu Yakusoku/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..befa933fc650401a021c22f328f8de23589f1006 --- /dev/null +++ b/specs/Applique_Toki o Tsumugu Yakusoku/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36784fae18c9c11aa9f73faae23a68197cc1c71fd3d96ddeb3eb894e642659e7 +size 343249 diff --git a/specs/Archive_Unravel trigger/spec1.png b/specs/Archive_Unravel trigger/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b39c597c0cf20656795f8277d5f122816628583b --- /dev/null +++ b/specs/Archive_Unravel trigger/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44984505eb9377c572dd164b0f0298d65779cc8b8549dc65c862d9ef14c51d0 +size 253184 diff --git a/specs/Archive_Unravel trigger/spec2.png b/specs/Archive_Unravel trigger/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..859fb100aff0a59949c8ded98a757a2083194cf8 --- /dev/null +++ b/specs/Archive_Unravel trigger/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dfb4d66abdf8bd2e436e35a4c6b6d1b5f1f021ec3f2e4b89b500bc29ad6972 +size 308768 diff --git a/specs/Archive_Unravel trigger/spec3.png b/specs/Archive_Unravel trigger/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b8fe8a57be520a8cb4fd73acef5cf467b84d6cab --- /dev/null +++ b/specs/Archive_Unravel trigger/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b5341bcfe851cf8770ea43d20deda6df1da691e35539257ade3361d6108af6 +size 241447 diff --git a/specs/Archive_Unravel trigger/spec4.png b/specs/Archive_Unravel trigger/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5678568419d6713e858ab8576cb744c6124ad1b5 --- /dev/null +++ b/specs/Archive_Unravel trigger/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4d849613078451ffb122832f6c4c14f9eabb27029fe2b46c1b8731e039d2f9 +size 220043 diff --git a/specs/Archive_Unravel trigger/spec5.png b/specs/Archive_Unravel trigger/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..527240f9615c035c2c3579aacb07ec7c94d65b25 --- /dev/null +++ b/specs/Archive_Unravel trigger/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f97e9a49f1ada5b27d8165c4ecf27b305cfb5505eb54b42494f9861f3cd26b +size 291551 diff --git a/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec1.png b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..95f2e78a7d8bfedfdad6783ffbb4ce9f49a302d7 --- /dev/null +++ b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a65a69f822cf6844c49f16fbaa38c3155245d195dce56c0ad3268bf26b38133 +size 336056 diff --git a/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec2.png b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..66889390b657e091ccd7836bf1d05fc1baee3024 --- /dev/null +++ b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05f2571d7abc1ff97af50f486bf264ff3f1c4aa74aa90694e13d817c9cf2c35 +size 322654 diff --git a/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec3.png b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3b2738183e72101d4accd9c8a5fa6b26af4c6900 --- /dev/null +++ b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864e7a3460f35d01e6a5e977329d87ac5551e69a7d2e3f486c47f6a4225435b2 +size 330372 diff --git a/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec4.png b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bcc842ed379b8d165c94f599d4b72fa078189d5a --- /dev/null +++ b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9f7e6f09125e2e951d22cda013654e3ec8d8864349a3c8fbc42e72b2e13c3f +size 324556 diff --git a/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec5.png b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9ff17a7569d25b8ec9de7bb2f4548f0a7afc2c87 --- /dev/null +++ b/specs/Astronauts Sirius_Enjou Gakuen 2 Shitenshi-tachi no Hanazono/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91cc4bf5f1ec514353ef78ea3d65acaecdd8d8457b595aba6eebea4b476fc7c +size 267698 diff --git a/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec1.png b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..99129075664c08b5d619684a2d3f43ee0ec01635 --- /dev/null +++ b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e187f4a7ce93ec03fab6b0800498b422abfa62d04cc8d084cf66a31541173873 +size 292793 diff --git a/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec2.png b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ab332cc0d9e7b2d564c7dcd4d0d863c4a16e291f --- /dev/null +++ b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e598511c361d630a7c8b443d5fafa9a5b2ba2737ac0e87d645a46412370439e +size 286956 diff --git a/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec3.png b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..12cde17ece6db3de0da67542c83ef5fcf4473d21 --- /dev/null +++ b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c76b70be9b7d61d6bbbd5f461773babd4156ce0754a35a442520f5d292dc81 +size 236238 diff --git a/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec4.png b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bec0c658e068b7367456d66b8ba8176f560da2fb --- /dev/null +++ b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0984e27f366a29b6e74623451a7b7bb457e04634f19999f92f7a79d26772f132 +size 285515 diff --git a/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec5.png b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4e116bf58438aebad2fa6af5d5f61e80696e65ce --- /dev/null +++ b/specs/Azarashi Soft+1_Aikotoba -Silver Snow Sister-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e25f4c3c9695a53606d36a08ba3c40f7c3a3ce26e8aae7a78599d6223730ff +size 217748 diff --git a/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec1.png b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..45b3eb3c7e1ac6750820813aa80ecc7ce119570e --- /dev/null +++ b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f1796b7bb86bcce8ccc2485e05cda91e3e9408a2c275afc1b2b4e9f9aa0d6d +size 301725 diff --git a/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec2.png b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cec5161a8b96a968f478f2151f9c393d11de0e3d --- /dev/null +++ b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b4ae782788b57bcea037462935dc6e7397c651627f3dc1c9c51541b3fdbb02 +size 283100 diff --git a/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec3.png b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1f65b4ac0f9177baa9f9a4d390b37954bfb5d261 --- /dev/null +++ b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8745d627af2376e2395c2eefdfacfa509f2dd3ac0a11b475c61ab18722cdb8 +size 302599 diff --git a/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec4.png b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d5aca0cd4945cbd6b4c50d6e769762b24c84b03f --- /dev/null +++ b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e134ccd35cb74b878cfd307c373cd6b5e4f8e54d55cba617aefa5a57d52d04a3 +size 253700 diff --git a/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec5.png b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4c1adfbf326a5f7f6b29c32fba5f7e853e536e47 --- /dev/null +++ b/specs/Azarashi Soft+1_Boku to Kanojo no Kojin Lesson 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778e5e4f06da886e079dc23004dcfbcf5502b0f3597ef3fcc066b6d041f6076a +size 277598 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec1.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..915d308c1e6f381450b71aa42e8c683f6357aab2 --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7ef957cecc88c77ec442388ae2ca15a8fed4bba086743f59ee9707ee4aa207 +size 265544 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec2.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3f7023e166c3b41ecfc816da4f3a50a37c10f64a --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8508c1d6c6666c90cf8051ca41a1811bb9746d9a1fea5db1f457bbda86e39c +size 313863 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec3.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c8472177863ccf4fc5bc3a793288cd9c9f3112a7 --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd137e40afcdef04c8d0af55e7be62a7e1265c2d0591a1f24e7b4aad41f7b6ab +size 283068 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec4.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..508133f27772f7c6d3ac5ffcbbc7667f66d8ab80 --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b9412856298088d768cbe421c4907582ba8894bc0640b95a68fc1bde37a1b7 +size 297716 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec5.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f141ca892907b4dc25279f16b9d9a8a7d64c39 --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin- After/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ac66f448455224390ff5a9bc0714e991a4b109b18c26b0bf81ffd5310a58ff +size 313460 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec1.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..81ec08fc3f816bb0c578f078b781ea01730c87e4 --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aad552290f7a3748ce8d9dce0c3407b436d4b8253fcabc919d80734f283c5bf +size 282424 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec2.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f5b6ba7e289616acf533226389dc847d4bdc0b7a --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8854add36f129673a7c72cc78a4a9ffba9d4152775a2c19a7777f8f6232eea4 +size 299115 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec3.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c99453df328cc0bba96e55c82b09eeea7234edc --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b288da6b0ab4cfdc41b14d31488600d9403d3ad28bef067fb3972c22b1d132f3 +size 321721 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec4.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0dc5c569fd3725972021084870c81c28c28c20aa --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc8afe297d5c232cbd2354c91bbdd1aca9d57acfd38035d27c0bb666ed731fa +size 301331 diff --git a/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec5.png b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..055a6aae91b367cf97d2c5eae3165430b293a43a --- /dev/null +++ b/specs/Azarashi Soft+1_Garudoma -Joshiryou no Kanrinin-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79a36ecde30707de9a9d6bc3a79564345d2e4c9c3fc700c82486cfadddab199 +size 312012 diff --git a/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec1.png b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..787b573c01c92c56767ce6c2b40e2fba92dd7318 --- /dev/null +++ b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e2eb8fbf433f2c5cad5b76739a93a26dd069c9395cf91023703312472327b65 +size 282239 diff --git a/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec2.png b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..763aab52e63868444cb9cff23a89db6e1ffc9c62 --- /dev/null +++ b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c26f64fa7faaf2f7624bffa034aa96bf4a809e92f23296142eea3066d7fc077 +size 235653 diff --git a/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec3.png b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..991fe9250d28d3c930fc17b0f09d3050b6ea87c8 --- /dev/null +++ b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330798aed3a8384954ba85366e14553e63a5fedc827ce4775706cc3094041b42 +size 223062 diff --git a/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec4.png b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..687027acfd815fa01bb51fa49ffd856d75e5eca2 --- /dev/null +++ b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:194a84523cbfba4e4f47122e4517cad43bc8ed7f249df43bf2eb179f3290fff9 +size 265666 diff --git a/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec5.png b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0474e32a7f30f3aac00eaa16b07f99dbdc3b787d --- /dev/null +++ b/specs/Azarashi Soft+1_Makimura Hazuki no Koigatari/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c3410602596ec16e9fcdd485a3623bb63d25af6757147d40b641464186b6dc +size 287394 diff --git a/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec1.png b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6e832d5c93558b3dac7a4bf5679d95659d0182a1 --- /dev/null +++ b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab3502cea2a0e66fb9234630216ffcac042c975016acd15cd46b3658dcf598c +size 296577 diff --git a/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec2.png b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..efe423de1c7f73402145302d9321ad7115785bd1 --- /dev/null +++ b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b51954c134395d2624b179f0d7e1b5537e16e83b690d052f4613293194318f +size 296924 diff --git a/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec3.png b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..09461b81636cbba871f26279fec699e98c2d3e10 --- /dev/null +++ b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d343501509b38298c8b7bf56d709f408a5522a9b9169423626a49c886e2d047 +size 319529 diff --git a/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec4.png b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..857ec24def5ce87497e162d4311f0800525d7613 --- /dev/null +++ b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc042379960c685dea12ac60f3d24d01605f9a2d3c286ab64411ee493ae45a4b +size 255345 diff --git a/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec5.png b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..504ace21ae813d3917e66ea147abc3845b6ada86 --- /dev/null +++ b/specs/Azarashi Soft+1_Uchi no Aruji wa Youkai no Joushiki o Shiranai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53545e38e0768fbc67d78da0fced1cdd79b89945c52eb3291ffef6582bd8b018 +size 305050 diff --git a/specs/Azarashi Soft_Aibeya 2/spec1.png b/specs/Azarashi Soft_Aibeya 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..529882bf08729c0b20618ca7a6da163f93702718 --- /dev/null +++ b/specs/Azarashi Soft_Aibeya 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8179249456f088641e91da02701147eb68c3d70f0a58cb5e162c92ece260d6 +size 313141 diff --git a/specs/Azarashi Soft_Aibeya 2/spec2.png b/specs/Azarashi Soft_Aibeya 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5223fa38acd5cbf7308b7f385b4da6f6efebf20d --- /dev/null +++ b/specs/Azarashi Soft_Aibeya 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f74c03a34a9622b683567d1d0eb7cb5517eace3b5d0f78fa2b889174090672 +size 307858 diff --git a/specs/Azarashi Soft_Aibeya 2/spec3.png b/specs/Azarashi Soft_Aibeya 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e540c78eb654d16c7d1c8af413b5714f538d9f2e --- /dev/null +++ b/specs/Azarashi Soft_Aibeya 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b290efc002af6c0824b206c238eeea050e9737bc423b2dcb855180f6cedae81 +size 296500 diff --git a/specs/Azarashi Soft_Aibeya 2/spec4.png b/specs/Azarashi Soft_Aibeya 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ca788a13ed135e5f0a0d5ca33596d473ea926b4f --- /dev/null +++ b/specs/Azarashi Soft_Aibeya 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd64baaf194b86f03e8ee4fd4fec60b1042878b87c1648e781c42ba628e39a62 +size 320763 diff --git a/specs/Azarashi Soft_Aibeya 2/spec5.png b/specs/Azarashi Soft_Aibeya 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..12d14538fafe0933301c1c31d4f189bb8024a54b --- /dev/null +++ b/specs/Azarashi Soft_Aibeya 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470d1231a8bd69c1bb2d2e0093512e5f8d73d3f68944f9dbdbe6119053120e12 +size 300547 diff --git a/specs/Azarashi Soft_Aibeya/spec1.png b/specs/Azarashi Soft_Aibeya/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0e0e240288734ada3d32ab97549d394d6e862d17 --- /dev/null +++ b/specs/Azarashi Soft_Aibeya/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f65dd2a016f0d4c0406c30c46b585a78ab06903b019ddb3c5b7a5f57cbe815 +size 303510 diff --git a/specs/Azarashi Soft_Aibeya/spec2.png b/specs/Azarashi Soft_Aibeya/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f7c6b9af3f19f38b4447cfee93493ed4a8226ff5 --- /dev/null +++ b/specs/Azarashi Soft_Aibeya/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2c1dbb06416a1a5ad7816f45abcb0d4f3537aebdcd7720cf0e02a03acd1c72 +size 329810 diff --git a/specs/Azarashi Soft_Aibeya/spec3.png b/specs/Azarashi Soft_Aibeya/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..46089e86578cb0d2475b66896f91d3081eb940e8 --- /dev/null +++ b/specs/Azarashi Soft_Aibeya/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:224b3019cccdf0106bbc039243dbadaaa52d2b855d9857086fc61e125d363a3b +size 318202 diff --git a/specs/Azarashi Soft_Aibeya/spec4.png b/specs/Azarashi Soft_Aibeya/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9941be0e56d03d63678b04e1103909f3fec4d4e4 --- /dev/null +++ b/specs/Azarashi Soft_Aibeya/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dae7efea0edea3b3376a94fb4a82e0a952771a3130d52a35b518694eddc7648 +size 313091 diff --git a/specs/Azarashi Soft_Aibeya/spec5.png b/specs/Azarashi Soft_Aibeya/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b5c9061dd3914fce06d064272eea6a6c5c3b077c --- /dev/null +++ b/specs/Azarashi Soft_Aibeya/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c8200f3aa6362b2bcca8c997a5c403a81080df491c73aa03d85bbe2c7484fe +size 328811 diff --git a/specs/Azarashi Soft_Aikagi 2/spec1.png b/specs/Azarashi Soft_Aikagi 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9a98f13ed13e1566ebd37d2eac847c537aeeee60 --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:295ce57385140ce956a7aa2e457a24d6614fc92f001229543352b0c943231629 +size 270264 diff --git a/specs/Azarashi Soft_Aikagi 2/spec2.png b/specs/Azarashi Soft_Aikagi 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b53a81cb8af13958911e37a72133f03b0f8afb --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c017446952a4bf3fad272b2a9b46922bdc1ca962752f40e7bacb1432e8d4367 +size 330287 diff --git a/specs/Azarashi Soft_Aikagi 2/spec3.png b/specs/Azarashi Soft_Aikagi 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5de8a2f5bf7743d515ffff3acc575bd53551c3b6 --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03b0f4f72e19c0df41344dd42bd6abbffe0533da37a7a889cb57f89b8dadfeb +size 308283 diff --git a/specs/Azarashi Soft_Aikagi 2/spec4.png b/specs/Azarashi Soft_Aikagi 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..258bd0d0d0e6be81f8f2c467a3f54aba1d2974a3 --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29cc3957e44b3b033af6e554801943bbe389c4551a2e4296c46fb8a2917be83 +size 298767 diff --git a/specs/Azarashi Soft_Aikagi 2/spec5.png b/specs/Azarashi Soft_Aikagi 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e418f0959a6ef5e31c06d1e5f50d7c64cea6d126 --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e75ed3c1aa983f6861506d9b5e80732a44de2d1ebb75962dfea53f6db4799c +size 308572 diff --git a/specs/Azarashi Soft_Aikagi 3/spec1.png b/specs/Azarashi Soft_Aikagi 3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4848f3545890624e33071cc6910d9f50210a248a --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:808c85c64dc66075e932ba0c7547daabb9f76fed64e4e233a4ef7c34f0e26936 +size 277980 diff --git a/specs/Azarashi Soft_Aikagi 3/spec2.png b/specs/Azarashi Soft_Aikagi 3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..04d881797d3acb1fa6cbdbc0d6f35dafa3b3cb44 --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e07396e7b2476ca4d8402d9ecbf077ef16a23e30338e047058bb805bc7a659c +size 248867 diff --git a/specs/Azarashi Soft_Aikagi 3/spec3.png b/specs/Azarashi Soft_Aikagi 3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ff25874b4f39d5d56507598e4e89673922e70a98 --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f511aaa5cc47b830dbb92794fa90641ba20d639b4b4d9464542a5c827354b4 +size 221945 diff --git a/specs/Azarashi Soft_Aikagi 3/spec4.png b/specs/Azarashi Soft_Aikagi 3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c99fc77740966faaba5c4006b197aae135fd130b --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12f9307ee944786a83e2523ccb6cc7f8018f8a58f4cddd79c8e2ac6e67773a5 +size 265979 diff --git a/specs/Azarashi Soft_Aikagi 3/spec5.png b/specs/Azarashi Soft_Aikagi 3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..30790058df0cc3f603e3e37e9eb4e73fb10ea428 --- /dev/null +++ b/specs/Azarashi Soft_Aikagi 3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33b66095e61351386fe1e13eb37313f2ca106c04cccb305be8296548f1ba013 +size 230134 diff --git a/specs/Azarashi Soft_Amaemi -longing for you-/spec1.png b/specs/Azarashi Soft_Amaemi -longing for you-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..54b1eb8d0a99d8373a7ab85c31905ad79568424b --- /dev/null +++ b/specs/Azarashi Soft_Amaemi -longing for you-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a101ef486dffc09f856a4eadd5f06bbfbafca2e05ef54d70a18b59655ce0ede2 +size 279348 diff --git a/specs/Azarashi Soft_Amaemi -longing for you-/spec2.png b/specs/Azarashi Soft_Amaemi -longing for you-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..80d954cfb00123e6a20b7d1ff4adbb6065066cff --- /dev/null +++ b/specs/Azarashi Soft_Amaemi -longing for you-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3137bd3fc33f7fee48b083020c92553a5c35e84b17e440bb1e6106c0ef1509ab +size 267634 diff --git a/specs/Azarashi Soft_Amaemi -longing for you-/spec3.png b/specs/Azarashi Soft_Amaemi -longing for you-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4031057a16b47e1871ede4dd954fb55b0fb14ac4 --- /dev/null +++ b/specs/Azarashi Soft_Amaemi -longing for you-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e0aa3d4efdadf0a57a1e2fd9ff4e8d601aecacc5e9f29b373a00acea4ceec4 +size 256270 diff --git a/specs/Azarashi Soft_Amaemi -longing for you-/spec4.png b/specs/Azarashi Soft_Amaemi -longing for you-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..752768f0a0ba44ffe2084d7ef891f7d77d7f7e93 --- /dev/null +++ b/specs/Azarashi Soft_Amaemi -longing for you-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87dd2ba81a3e23b33b48502973504224066f3ed6bb6049f28c6d44a4572a570 +size 286690 diff --git a/specs/Azarashi Soft_Amaemi -longing for you-/spec5.png b/specs/Azarashi Soft_Amaemi -longing for you-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ae39c8272d50bcf71a3d06e18de20e4cb8004858 --- /dev/null +++ b/specs/Azarashi Soft_Amaemi -longing for you-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d848bf0187e49a3e01c59ea2b8435b43698a40130b9f2b0757f9879bf9495e73 +size 265133 diff --git a/specs/Azarashi Soft_Amakano - Perfect Edition/spec1.png b/specs/Azarashi Soft_Amakano - Perfect Edition/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..12b5a8aca588ead7ffbb958a4299bbd2d2676ac8 --- /dev/null +++ b/specs/Azarashi Soft_Amakano - Perfect Edition/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97facb6bd1689af04962e5a82c3ac69d7feb9c03c9265708df5ba0aee3d1340a +size 236772 diff --git a/specs/Azarashi Soft_Amakano - Perfect Edition/spec2.png b/specs/Azarashi Soft_Amakano - Perfect Edition/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a94342ff472907f6b1a8bf2bb6be26ba53468334 --- /dev/null +++ b/specs/Azarashi Soft_Amakano - Perfect Edition/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8856177ae3506f25a725ba2de3d2c5fc9106d916ebea80fd10bb87388d297fd1 +size 259367 diff --git a/specs/Azarashi Soft_Amakano - Perfect Edition/spec3.png b/specs/Azarashi Soft_Amakano - Perfect Edition/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bed69b4b4e0c2585c628f12821b6a5632f9596e3 --- /dev/null +++ b/specs/Azarashi Soft_Amakano - Perfect Edition/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140254f456ab65ef40399b12947a88dcc2a52ace82b1ab8e1678f6c40b254382 +size 252146 diff --git a/specs/Azarashi Soft_Amakano - Perfect Edition/spec4.png b/specs/Azarashi Soft_Amakano - Perfect Edition/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..576cf992e8fdee548bebdcb4507ef6606f9739b2 --- /dev/null +++ b/specs/Azarashi Soft_Amakano - Perfect Edition/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d675bdc73bf1119c615edd3e1b16c96970aeee50a13d858f438a9300008cdf +size 253956 diff --git a/specs/Azarashi Soft_Amakano - Perfect Edition/spec5.png b/specs/Azarashi Soft_Amakano - Perfect Edition/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..eb304e0633fca4f9f10ef1b65d84fa7718fc41a5 --- /dev/null +++ b/specs/Azarashi Soft_Amakano - Perfect Edition/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73baa6325c5d2aa9828adede6c13402cb97dd4bde57957c81c2ba04227d5d5d6 +size 249456 diff --git a/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec1.png b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..471e6fb4e2d94060332f3d3e1427b1b9334e36c4 --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699620b361ae95746773a18b4169280881b092519a12f72ae44b2b7a7ec998e2 +size 322628 diff --git a/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec2.png b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ff0928de0e8c742fcad4fcda0b61f67afab890e --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074428f31a2069eea4eb8eefab8801876615c4867e27ecc54a1bc6e40dc9d50f +size 339605 diff --git a/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec3.png b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fb8f32e67f162538d37431d8a3e299cd5794beab --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b1b5c1d431186ed333da6d9e2f0a556f6a78d794942dcb93d2ea1d1ab6104b +size 287859 diff --git a/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec4.png b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..07fd23fc9d78382255a66180230a1100d5658cb3 --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed7bf6019f4aa77b069f2ae37114aacd9f9ae9c8ba5acc88de7749997b31dbd +size 286844 diff --git a/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec5.png b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..258b38948cb5cf108270cbc290fe69b3a19da8a8 --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2 - Perfect Edition/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da31e59458efaa57156696fdbdafd26ba2a6aa30c62aba00b379634eedeecf61 +size 328695 diff --git a/specs/Azarashi Soft_Amakano 2+/spec1.png b/specs/Azarashi Soft_Amakano 2+/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f702cbd16e4bfd7ec5712d1cca5415a761d1c4d7 --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2+/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b77ea08d6fff490e945e9b1664b4e78697ec2df5850a7eec27a8ef9bc4c88b +size 325947 diff --git a/specs/Azarashi Soft_Amakano 2+/spec2.png b/specs/Azarashi Soft_Amakano 2+/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c9849aa23c193b67d806069353edec6066131f --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2+/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc8ae120d7f15ab28e8d39171d7f593cbe0b7fd786952c99bfa84d7dae1ccff +size 310264 diff --git a/specs/Azarashi Soft_Amakano 2+/spec3.png b/specs/Azarashi Soft_Amakano 2+/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c8043cac4e18149aa2925b4da470fa3cd4d4a59b --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2+/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b591c88110471ee610c32032008e2eadfbbcb2b1fad52ba2a17b3c081b2bb8d2 +size 268882 diff --git a/specs/Azarashi Soft_Amakano 2+/spec4.png b/specs/Azarashi Soft_Amakano 2+/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..31fa07f7d05cb83abb2bb0f84ba331221b6d47cc --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2+/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a48486cd3fcf57f2737e534216bbf1972fee90532f96df59663cd2a2c3fc5e +size 317540 diff --git a/specs/Azarashi Soft_Amakano 2+/spec5.png b/specs/Azarashi Soft_Amakano 2+/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6f2eb48ca07262d680b0b96b989605d6f57191 --- /dev/null +++ b/specs/Azarashi Soft_Amakano 2+/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5bd7f34fac9d2e7ca55b471ebb115a98e1b9a57f8d140a5c660cdf20fda6c6 +size 295529 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~+/spec1.png b/specs/Azarashi Soft_Amakano ~Second Season~+/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..61208d39de95574b8b2dac681bb2f94550ba57c0 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~+/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93638f89d069424f5c7c8a20ae52f662a040c7704d7c36323e2b2006fe00f3b +size 359081 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~+/spec2.png b/specs/Azarashi Soft_Amakano ~Second Season~+/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5bdc1467ae01da03db2ac48a8461c641e8ec08 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~+/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abb19cf278dbd9a29591d8a43847ca79e4c48accd0c73e2869a5cf2fbda849d +size 350017 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~+/spec3.png b/specs/Azarashi Soft_Amakano ~Second Season~+/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..814373e2459f99c276430d4c798b96a0b3d3e180 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~+/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12af8fe24d50d6026c2182c6d3674293bf0e8c5b0d2ffeb9c034e98c2ea6a3a1 +size 349725 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~+/spec4.png b/specs/Azarashi Soft_Amakano ~Second Season~+/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..106073037edd591a76a3bee7471dc7769167c788 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~+/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a6abc8aa294d8b45e4aca9a175c9d1502032e26caf848fe360d3771827ebd3a +size 338428 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~+/spec5.png b/specs/Azarashi Soft_Amakano ~Second Season~+/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b454f8980c8c9f2008be53232551a59f19029f00 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~+/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31b98ff45771734beb95695614578059e70884a6a3ef360cdad00ef1c1d396f +size 340600 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~/spec1.png b/specs/Azarashi Soft_Amakano ~Second Season~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..cdfdb9c12edb1358ea01a0d7ed3824f2cd8a0640 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b575b6fe359031d8bb4d337e81b11e55d3d9cc7c18a590ee4eb49e784de57028 +size 314769 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~/spec2.png b/specs/Azarashi Soft_Amakano ~Second Season~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5aecab37a430830a0d6128ff8a192d3a62f82637 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efd0eb338314b98f2a3bc2331be892fe66e6f4ba10b05ebbf9d8a5cd156e46d +size 300442 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~/spec3.png b/specs/Azarashi Soft_Amakano ~Second Season~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c3e35985d579bdccc94f030a3d7ea507aecf17e2 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc94d16ee65b535bf1babb160d752b90521d488f049cc5cd871a2c84d2f4055 +size 297826 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~/spec4.png b/specs/Azarashi Soft_Amakano ~Second Season~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a381c2683c9676df1c2d79eddfdfe8fa8256c0 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c4d8bbcd5f0e9461b29c0b580e7444510e13e576375802228f788f9d01ece4 +size 302550 diff --git a/specs/Azarashi Soft_Amakano ~Second Season~/spec5.png b/specs/Azarashi Soft_Amakano ~Second Season~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f4db283a212e9219cfd8fc52237efd46ec2156a4 --- /dev/null +++ b/specs/Azarashi Soft_Amakano ~Second Season~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad4676a12daa1c9365fd0cf1efe91137a5fdd38ed9fb51bff4dd1a268a191e3 +size 301137 diff --git a/specs/Azarashi Soft_Amakano+/spec1.png b/specs/Azarashi Soft_Amakano+/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..834e9a73508de464ddba4cc53ac6cd9d3c51b17f --- /dev/null +++ b/specs/Azarashi Soft_Amakano+/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ee2882fc5e24211647372908f2b7ff055cfd226975ee545133ceb8b17f0299 +size 310281 diff --git a/specs/Azarashi Soft_Amakano+/spec2.png b/specs/Azarashi Soft_Amakano+/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3089a8bc8286de3f828c89211f1dd582084f607c --- /dev/null +++ b/specs/Azarashi Soft_Amakano+/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173b562c051dc026461c4e984eecbaa8920c0d21547bd413a4e450a2b8a8a80d +size 314183 diff --git a/specs/Azarashi Soft_Amakano+/spec3.png b/specs/Azarashi Soft_Amakano+/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c827fa55113628f927b8d94c89ee976eaa1fe1b4 --- /dev/null +++ b/specs/Azarashi Soft_Amakano+/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e72fdce7455e6944d272d80022d76f3a9a956bd695ce0172bca4b099500588f7 +size 309361 diff --git a/specs/Azarashi Soft_Amakano+/spec4.png b/specs/Azarashi Soft_Amakano+/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2b6c900c9355ab18622991fc4f56f803dfaae1b7 --- /dev/null +++ b/specs/Azarashi Soft_Amakano+/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e81c684f18058e0a885122cd7ed375aa9aa36f45579ced298f1593b1893d08d +size 309541 diff --git a/specs/Azarashi Soft_Amakano+/spec5.png b/specs/Azarashi Soft_Amakano+/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1445a59c549114453f3e05cd1367aeb2f77cfad5 --- /dev/null +++ b/specs/Azarashi Soft_Amakano+/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af33c38d2edf9828eea9e0de5bb4e7414e3a887749141cbfeecbb696cc24c14a +size 322450 diff --git a/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec1.png b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..edf52275cece3245cb1b18cc259383213607e8e8 --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf47c4edc0f6f1f98be31cd40cb45a7c8c468e17c46815cb013397035c30f8ff +size 239926 diff --git a/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec2.png b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..601982ed13f298fb004d87549de5caae51c6694b --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6e2acda126620279cf00b702f64640080e0a98ce67d400e5d99604adfd3551 +size 276656 diff --git a/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec3.png b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..471226246de045620dbc18e72beefbdabd2c8fec --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabefa536b80f060c7db2203481fa8d153a356687d807fce7acf72296313c7b4 +size 279717 diff --git a/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec4.png b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..492ed8f85e1f5c5715cb84f69cc047e274ea930f --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0636ccbda55c5b72657816f134e5e8713c352a020ea02a476e5db8117aee37a8 +size 272810 diff --git a/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec5.png b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d95261803e4abab3a30966b690f79b2a3fbafa --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu - Perfect Edition/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16274fbc7c99075329d65457f3f668a722f740eeaf94506ab331a077e7366084 +size 291139 diff --git a/specs/Azarashi Soft_Amanatsu+/spec1.png b/specs/Azarashi Soft_Amanatsu+/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bfa2451c94d3cae17e18e1feaa5ce3e2af5c1c61 --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu+/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e46058d64631b2d0be0dfcf3cf374f22a46a8777cd568e31568e62389f2c0be +size 293154 diff --git a/specs/Azarashi Soft_Amanatsu+/spec2.png b/specs/Azarashi Soft_Amanatsu+/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..07ebc090ed77dad6fab6e1a247c2475678e7b7e9 --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu+/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22c7aeba9261e732c4692ef14723c1327baa86d76da87030b4085e60ebfcec5 +size 298655 diff --git a/specs/Azarashi Soft_Amanatsu+/spec3.png b/specs/Azarashi Soft_Amanatsu+/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8bec0093b99e844a85e66a89265c0b302c9f3e --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu+/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c1b382334857da2a23c6513a920726256f42dbb96ef36a85f796a52189d4e9 +size 295515 diff --git a/specs/Azarashi Soft_Amanatsu+/spec4.png b/specs/Azarashi Soft_Amanatsu+/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1ee0cfda3b6990064327011fb0af3ec1cd59adfe --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu+/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910022e0151ea82deeb2269a6a1cb18dcd1950c466bdf0a2886db7073ad18d8b +size 312922 diff --git a/specs/Azarashi Soft_Amanatsu+/spec5.png b/specs/Azarashi Soft_Amanatsu+/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..84db54cf1e588afca60e74ccfb99f627041071de --- /dev/null +++ b/specs/Azarashi Soft_Amanatsu+/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f228b0457d7f5ab8f6af29fba95395812fec9b21153ea5740dcf55884ef15089 +size 299251 diff --git a/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec1.png b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..980d7da9fc5f531e80abdb34c4bce91f6a4a7da0 --- /dev/null +++ b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc1713aed4cb79a087113762e1731c822dcc4edc529a88095fe1efc2c02d8a3 +size 262259 diff --git a/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec2.png b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c756c7088f4282223c334706afab56ba516615e3 --- /dev/null +++ b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4352723939eb592fdb587c750b12fd04c1d674f9c93c0bf341a7660bbc850ce1 +size 230029 diff --git a/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec3.png b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8327d732cf918da0bf64081af751e82c65c8cd4e --- /dev/null +++ b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfdd1295d090a8d017f834c55c6bd5fb518c838879b8607cb4206cebec665c0 +size 269432 diff --git a/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec4.png b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..66a9809b707585ff1c0f50ab21aeb145abaf7cb1 --- /dev/null +++ b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5d33664b33d34b29bde2d77eac075c86be409db66cc85de3f3579fbafe8e81 +size 272625 diff --git a/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec5.png b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7e5334877458b23d761441432abcf96f8b9b8c19 --- /dev/null +++ b/specs/Azarashi Soft_Asuka-san wa Nabikanai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec3f71174a257fb4424249e5076607dc291429e22e951ce4be178015fbba015 +size 259341 diff --git a/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec1.png b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..5e27779e50dfe1779b9604bef9c4fd3deb226467 --- /dev/null +++ b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47235fa5dec407ba103d0a8dbb90d7660c47ae0363a2b714f9730e937029d522 +size 317608 diff --git a/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec2.png b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0811684cf3449e1d0ffb36a2e74fb07da493c715 --- /dev/null +++ b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42832750cefc5bc13e00159237973cbf1b7f69cb5a4730c638a2dcbcd11409d +size 337147 diff --git a/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec3.png b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1b762cf6a9408f1c7ad608d63c2517e9eae7fe9a --- /dev/null +++ b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:444bf20a64d8b4986dd846cff2658e8526629fa95693b5d6be7e5f9003804704 +size 330839 diff --git a/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec4.png b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bb2ae7d5eba4953748399005f696ce4d5aa13349 --- /dev/null +++ b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e5e57abcc4e5f17b3b5da6e6d7132cbe3032c33aef79bde1a4ce74962e169c +size 331386 diff --git a/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec5.png b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0f3d86786266801a0341971b50cbf25204ddeaec --- /dev/null +++ b/specs/Azarashi Soft_Azasumi ~Azatokute Sumi ni Okenai Kanojo~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698d2ea72bda9f5b3e3285d742f47db6c8bbc6ad98b61d74f4646fa38aaa0a19 +size 321843 diff --git "a/specs/Azarashi Soft_Kira\342\230\206Kano/spec1.png" "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..1a7b931c8d14e34ab063d4328e9d1b0b2669ae24 --- /dev/null +++ "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6cc5313aa8e2a9b61570659c88c43346134b8a28a47d80e24613c937e6850d +size 237609 diff --git "a/specs/Azarashi Soft_Kira\342\230\206Kano/spec2.png" "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..4feb910f4f0fadbeb80549b49d70fc4aa872fafa --- /dev/null +++ "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b51ce83da33912785f30591e53914394f07d0d11858c6a73cdd4e4e97b14dfb +size 253147 diff --git "a/specs/Azarashi Soft_Kira\342\230\206Kano/spec3.png" "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..6fef022cfa13175cbb2a57609dcbc4b17214b6ad --- /dev/null +++ "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5962d37e712749f1491abd560415d5fb9a2e0d249a4aef42ec1abd55e9d43bb8 +size 307490 diff --git "a/specs/Azarashi Soft_Kira\342\230\206Kano/spec4.png" "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..1a4da17962c836a24f723ceccf4932b1fe759c6d --- /dev/null +++ "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5809a40db9a7f93be6cab08e2315b443c99c4130b646e1fb761b604ade9ac110 +size 274201 diff --git "a/specs/Azarashi Soft_Kira\342\230\206Kano/spec5.png" "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..2279645f400d8fd9db8af59654f3f02decc237f2 --- /dev/null +++ "b/specs/Azarashi Soft_Kira\342\230\206Kano/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf991749253ffce86a1442ec942d76188a4d534a40fe9ff0a161a83206ae016b +size 281449 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec1.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a60627361a84503058f81a9b4be50d0e00ede004 --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5614e3fa88728642951d2c957476366b346d75d53c607a0ad133e7e637c9723c +size 285045 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec2.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bce23f810ee6145e6620f538391a710c616deec8 --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade186008b16d1d8e908b61630b5c1cbbd103e62ca5eb703f8b635277fe8fc11 +size 273255 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec3.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2824ea4385f3305382a59f76abf2a3da4e828747 --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c8cdd48f914b01283cd4bc990ffccd53af74ce9f215c73a720f937d2ccde33 +size 287980 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec4.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..942da218d2bce6b30f59dde6e62a2b92e0750b39 --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a460ab7c3f65aad0996d2ac856fc2b7bcfce9b949104a99c53e9d7ca132e75b +size 298723 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec5.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..07ecb0c424bd6588ed3f3bc30208677e04278928 --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi S/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e387b7aec320ccff89440809d463990cf1b97844934bd75ec438d59acdb4a193 +size 281827 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec1.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..852e66e7c78b4e1f03a9856bfffd84757a7b2beb --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b577b3e11ef1a4124342ce9a72d2f00fae247cb1ca05a5e9258049417605e48 +size 333945 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec2.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7c5f088bf906e08b0529b3a70e3bad0b70aead --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9451290ebb0af48015cb3a05eba8e538dedec24dfe98d1eee0226822cf45fe58 +size 333005 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec3.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..05ab98b8a0934530e0317e0b8c2b53d76291dad6 --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e9d233590f3808c0e200a973428fac1c85a7db0b65631eab1bb808bfe98725 +size 268681 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec4.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..eb78f474e93a6fb0c69cd4be237d083b4067705d --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:816b72ad3060d80dd224ec795c231fb1a3d14a9a2e2b531df8a50bf873b01c12 +size 323704 diff --git a/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec5.png b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..65da764003f8e8021a08e992a4866343c75dde8a --- /dev/null +++ b/specs/Azarashi Soft_Maid-san no Iru Kurashi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ab562a2488fcf74fbbe3cd2e9919da40d7859eb0dce54672ff5ed55f8b33c1f +size 329193 diff --git a/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec1.png b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7144ac2fcde64fc59849fdf879525b3093ad7864 --- /dev/null +++ b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27b0cdd7247bd6dbce8d86adabf7f898d5ce22b2328287e37fc4651cea54999 +size 228573 diff --git a/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec2.png b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b1c3b5504f33f9fa5ea2abe5d7f6c87e5f8bab40 --- /dev/null +++ b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5d16e4aa6c04632e222247f6f6835817410f991e475583c947fe84bca418a0 +size 257505 diff --git a/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec3.png b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e2c24aa6b365dd39ea95b3a165ce01e74f415d6a --- /dev/null +++ b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec69c080e09546724869f76ad782684dcdf6344cda6a501bc25131a315c27968 +size 305589 diff --git a/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec4.png b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f44362394be71859ccefdf7a5e526ebb6f06c781 --- /dev/null +++ b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2beb4a579eb99521d44d2cfe3d1452a8c917a5d477a3aa7fb7d0fcd08dc5c722 +size 191301 diff --git a/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec5.png b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5191c3e6aab83deab04b42c52c62c80ada58c30f --- /dev/null +++ b/specs/Azarashi Soft_Osananajimi no Iru Kurashi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740f06ad87636604128bd77ac1e0d6e8c33fb1cff48381f9b8136d56d76f9845 +size 278558 diff --git a/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec1.png b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f5a89a55181e5460b402cc4572d347be635ff981 --- /dev/null +++ b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79fa6a27fa4db0227f4d7eefad8b60ca5ab872353cf22f4fd2c48c1b43d0102c +size 304206 diff --git a/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec2.png b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b312617eeed55f58f40faf08aae3f95251431ce6 --- /dev/null +++ b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b8f900f4baf1e81af128b8268b98789554fae64e4130961cb444771ed27be5 +size 310063 diff --git a/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec3.png b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0993fc842d1e0216d6ee6805a873a2062dbc7f --- /dev/null +++ b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1fe7b64f53de813ff18fe46e1695d1c7843d602a8cb25cfafca39cc739825a +size 304292 diff --git a/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec4.png b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..979296cf03d6f85fcd7b88e739a9c07985c0fcd2 --- /dev/null +++ b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674bde8da74823627c0d2bf2d9909766bef61bbe17d1e9aeb1b9214f12eac695 +size 301298 diff --git a/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec5.png b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..edddc400ddcc979e4db4ee23e553058efe057a51 --- /dev/null +++ b/specs/Azarashi Soft_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5955fb975e7f6f5329ac83fff62de65719081b45818a5c8f0b53655d37605b7 +size 296208 diff --git a/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec1.png b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a861b0a63a061f23a0f83e731ae5a12aaa4bd233 --- /dev/null +++ b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef98558339b5348dff7d861ea383462657d6bb462d89df446a2d45d4afd89ff9 +size 261967 diff --git a/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec2.png b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a96ce585b207d03becdc046a1bc59be42474d58e --- /dev/null +++ b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285d91d293e6e8f0e1c66811206151cb67fa62d8a5b6a63531f3b74b4d26667f +size 242115 diff --git a/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec3.png b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6b9be13e0caf5f33fd18abddb6cd32bd493afe49 --- /dev/null +++ b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc181276c132e653e8959cd4a07867f428c8dea7525c0835a75303d7ae351627 +size 254533 diff --git a/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec4.png b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8dfbc22c0450ddc2b51e44b995e364361c9db577 --- /dev/null +++ b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05d5693352ed8563a56628876f0879f8dd8f935efbb9857d1958d76aa5f47fa +size 282172 diff --git a/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec5.png b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..97b31d7957247113290889de0745737ab908af3c --- /dev/null +++ b/specs/Azarashi Soft_Tomodachi Kara Koibito e/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9bd0ca098a06fa86b0c92995b053cfc3a819692460de13e2cf9af706b9dc97 +size 268741 diff --git a/specs/Azarashi Soft_Toshishita Kanojo/spec1.png b/specs/Azarashi Soft_Toshishita Kanojo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7cf084fa8e971e0eaff75b5f9d99f4f810bf3be9 --- /dev/null +++ b/specs/Azarashi Soft_Toshishita Kanojo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886488976b13c358cc4ef6ec0ae6850b7be6b0fcd0cf876bf2e10ae6d7df2467 +size 220651 diff --git a/specs/Azarashi Soft_Toshishita Kanojo/spec2.png b/specs/Azarashi Soft_Toshishita Kanojo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..351ddb8f8f3b78a61defef64fd227103cfe1d49d --- /dev/null +++ b/specs/Azarashi Soft_Toshishita Kanojo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ffeb9fed96a571f4520b6420535dfe1aaae9c13efcff2f52387d44dfac2d1eb +size 228380 diff --git a/specs/Azarashi Soft_Toshishita Kanojo/spec3.png b/specs/Azarashi Soft_Toshishita Kanojo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3887431da6be6b51d4ad20b469e325eeb413abb0 --- /dev/null +++ b/specs/Azarashi Soft_Toshishita Kanojo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062f32ead3bd8efa04c7c50079dfbdc6a2bfc763199864f70f0c6a0cf6b1904d +size 224566 diff --git a/specs/Azarashi Soft_Toshishita Kanojo/spec4.png b/specs/Azarashi Soft_Toshishita Kanojo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae56a6010ae36b42ca86300526faa33b23cc5365 --- /dev/null +++ b/specs/Azarashi Soft_Toshishita Kanojo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68521ed674016bb6ac0b246d0bcfb9a62cfbf63843a221bdcc882335ac0cdfbd +size 230071 diff --git a/specs/Azarashi Soft_Toshishita Kanojo/spec5.png b/specs/Azarashi Soft_Toshishita Kanojo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..537a31b0ce41b665aad77494760c0a824e72163b --- /dev/null +++ b/specs/Azarashi Soft_Toshishita Kanojo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2feee180033ad9091ae7c3e9194550f5a824fc6da8c1abedf5c351039e99f579 +size 216532 diff --git a/specs/Azarashi Soft_Toshiue Kanojo/spec1.png b/specs/Azarashi Soft_Toshiue Kanojo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1ce791ef3dcd87cbb1c51b142720a0f98bff3751 --- /dev/null +++ b/specs/Azarashi Soft_Toshiue Kanojo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1122e3af99385338120faf187d2c39c509802205224a71cba2174198bf0fe26 +size 288574 diff --git a/specs/Azarashi Soft_Toshiue Kanojo/spec2.png b/specs/Azarashi Soft_Toshiue Kanojo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fedc4a4c928990e9696072ac3d768d5789b22711 --- /dev/null +++ b/specs/Azarashi Soft_Toshiue Kanojo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679d6423b7d845cee7e8db39c32c76b9678a3a3b4bcb52bc4d5b63e27983ac8e +size 246021 diff --git a/specs/Azarashi Soft_Toshiue Kanojo/spec3.png b/specs/Azarashi Soft_Toshiue Kanojo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d1016f0624c410d42831d0aaf280f4a6088a6758 --- /dev/null +++ b/specs/Azarashi Soft_Toshiue Kanojo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24be0c163256c9dc6a2731a22094f1e86a314d5c3b2af0939f16d8d7f50fd667 +size 244440 diff --git a/specs/Azarashi Soft_Toshiue Kanojo/spec4.png b/specs/Azarashi Soft_Toshiue Kanojo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4b8c79d66377cf5b2fa80caabc38be32b1cb3776 --- /dev/null +++ b/specs/Azarashi Soft_Toshiue Kanojo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49949df651600b93a509b72c254e09a7889756eecbbdeff2f22af84758d49b43 +size 264571 diff --git a/specs/Azarashi Soft_Toshiue Kanojo/spec5.png b/specs/Azarashi Soft_Toshiue Kanojo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e8107739519cd3610f79323ab1271304f22dbc49 --- /dev/null +++ b/specs/Azarashi Soft_Toshiue Kanojo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb03a74f82af8900a0cb80908f38c668dcb2497d7f9a5da46e0d328881ede77f +size 282160 diff --git a/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec1.png b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fd75b128003c27372f4f7c5b017ec3f555de4f85 --- /dev/null +++ b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6029f7c0696121fdf09f09710fafccd8e9097f7f61407a4bea2970101d2ae0 +size 338402 diff --git a/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec2.png b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f8f3aa76b097b9ea242d015b2102f296ce6df9ec --- /dev/null +++ b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc135ac2d6499b064fba398edde1d572f4919294ab3c2ea36d8146bfe5356bd9 +size 289568 diff --git a/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec3.png b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ca1b2a816d9bde38f7f7b480b68f8ffed27488f9 --- /dev/null +++ b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d37a1e445032ef1d4e1ddd7da4443e1398443cb832d77fcd9b224f32ae110c9 +size 274183 diff --git a/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec4.png b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5551636ffdda603e65fabd90bc5ea3f65257f307 --- /dev/null +++ b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61e9c6585bca73958eefa256b69dc5ed9c7a9655cc8c08285fc3bbd18fa9219 +size 341329 diff --git a/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec5.png b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a3b8eacdf8064b18319d6d5739888c55ebdbe02b --- /dev/null +++ b/specs/Azurite_Akumade, Kore wa ~ no Monogatari/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80c188b8d576318d45c3c4d70de605e8755c4f1f0b35d38ecba6ceb9327efd1 +size 249244 diff --git a/specs/Azurite_Tamayura Mirai/spec1.png b/specs/Azurite_Tamayura Mirai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..67158f04ccd844cf2a2f8a904eb2d0e29ac96799 --- /dev/null +++ b/specs/Azurite_Tamayura Mirai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2969e1907414f7442b9894316a646538d10c6336ed2760dbcec9568c3a865c +size 359587 diff --git a/specs/Azurite_Tamayura Mirai/spec2.png b/specs/Azurite_Tamayura Mirai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d18b57e4811dc125a91d1d4b0297cfa5742804e8 --- /dev/null +++ b/specs/Azurite_Tamayura Mirai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c14473d3262b152e92226003ae22942dd7bce06bcb1a37284a8eb4daa1f673 +size 341005 diff --git a/specs/Azurite_Tamayura Mirai/spec3.png b/specs/Azurite_Tamayura Mirai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..64c8d0ed14fb3193d54b8ab278e9d41c66964f89 --- /dev/null +++ b/specs/Azurite_Tamayura Mirai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05091909607dd93310b7e909e5e07801a3184da38408511d85f5417ecd91f71 +size 349302 diff --git a/specs/Azurite_Tamayura Mirai/spec4.png b/specs/Azurite_Tamayura Mirai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c7c1ced426ea58c37475dcc9a3e4e66c1f20ae75 --- /dev/null +++ b/specs/Azurite_Tamayura Mirai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1e7efd798b87fccd27b4eccb684d6827328ef1dca5e7fc96fcdbf85126e1c5 +size 350536 diff --git a/specs/Azurite_Tamayura Mirai/spec5.png b/specs/Azurite_Tamayura Mirai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..85dcd951bbea9e8250c044d5914fd76cc27cd9be --- /dev/null +++ b/specs/Azurite_Tamayura Mirai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad799d70a7498ef41fac163095ca2b6f90f72852158fa2b1c6f12541523e8c46 +size 346956 diff --git a/specs/Barista Lab_Anabel Maidgarden/spec1.png b/specs/Barista Lab_Anabel Maidgarden/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8cfaf54fdb6f534b7bf991d8381ebe13e2a2afe3 --- /dev/null +++ b/specs/Barista Lab_Anabel Maidgarden/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32ee06a5288ec9566ffe745b415b7585c81569f05c523744161a62873546952 +size 224668 diff --git a/specs/Barista Lab_Anabel Maidgarden/spec2.png b/specs/Barista Lab_Anabel Maidgarden/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4d9fec6d134a249e227cee3e7102a6c7aa13eb55 --- /dev/null +++ b/specs/Barista Lab_Anabel Maidgarden/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7ddfca3f1df1c8478c0f06a29ac4064f51d782fd67add9b5a77fcc25ccc186 +size 309117 diff --git a/specs/Barista Lab_Anabel Maidgarden/spec3.png b/specs/Barista Lab_Anabel Maidgarden/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5e92b2b41ce235bf85c25daac6480abb127eceaf --- /dev/null +++ b/specs/Barista Lab_Anabel Maidgarden/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55b4a0457478d1a5d66b4d4786c760dcc5f49a4e309f62948c7ad5aa3388c73 +size 326998 diff --git a/specs/Barista Lab_Anabel Maidgarden/spec4.png b/specs/Barista Lab_Anabel Maidgarden/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fd8ab6dad2a3ea3edf032c04471fc5ae54219ab3 --- /dev/null +++ b/specs/Barista Lab_Anabel Maidgarden/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d83744aaa9fc2d6ebca9e582f385b055f23c1079ef51cc410eb906b1621f83 +size 277669 diff --git a/specs/Barista Lab_Anabel Maidgarden/spec5.png b/specs/Barista Lab_Anabel Maidgarden/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9401ef1cbe560b9cc20af0a96ee9d644e379db --- /dev/null +++ b/specs/Barista Lab_Anabel Maidgarden/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5428a34b1e291b574499580788d6d678023272efba7ba645d47972338875c972 +size 313703 diff --git a/specs/Barista Lab_Lilium Wedding Plan/spec1.png b/specs/Barista Lab_Lilium Wedding Plan/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c39f7b1e6747e18132d1ff6ff489888490abf67f --- /dev/null +++ b/specs/Barista Lab_Lilium Wedding Plan/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7778a496a05ffa7634c417eeb1bc9e40d413d7c053786a1d15a8d9e632c550 +size 318287 diff --git a/specs/Barista Lab_Lilium Wedding Plan/spec2.png b/specs/Barista Lab_Lilium Wedding Plan/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..db9f05882136bbaa62b440ed255dc4a313a3286d --- /dev/null +++ b/specs/Barista Lab_Lilium Wedding Plan/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8477b7143fe1fbeca281e7b46c2b4181b8b63d402d81c69b0e539a51f4fe9d95 +size 328228 diff --git a/specs/Barista Lab_Lilium Wedding Plan/spec3.png b/specs/Barista Lab_Lilium Wedding Plan/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9378824526d0587a63705541b4b057a9b2aa308b --- /dev/null +++ b/specs/Barista Lab_Lilium Wedding Plan/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3242066eb7a696c0419c4844b2dc88004024fc0abb9e4ba18976a62f50051f40 +size 343709 diff --git a/specs/Barista Lab_Lilium Wedding Plan/spec4.png b/specs/Barista Lab_Lilium Wedding Plan/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d095394752878cacd8d0e32407c7cf325caef745 --- /dev/null +++ b/specs/Barista Lab_Lilium Wedding Plan/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eff6006080a726a974f46abda2f5538be29881909266d76d3dc9de025e2197b +size 334148 diff --git a/specs/Barista Lab_Lilium Wedding Plan/spec5.png b/specs/Barista Lab_Lilium Wedding Plan/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2b84936b8371a18b40f7a342fc717c26519137b5 --- /dev/null +++ b/specs/Barista Lab_Lilium Wedding Plan/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f3af67c5159dbb1dd316be7719955b091f1e5c6fd9c41928ae5573fcd7751a +size 300554 diff --git a/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec1.png b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..143381a337fdf96662503d40fb90273332181256 --- /dev/null +++ b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08babeb5960690088be6eec4b425d884a521773561bd1b4e78c46a665dfa4781 +size 345291 diff --git a/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec2.png b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8cc0e1932268babeebc24e41467f4e4d7ac66832 --- /dev/null +++ b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361c33b69cc3b546ffa5c212d86be42b26c01ef69438ebef4e53de27d3568801 +size 326672 diff --git a/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec3.png b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b0ca10de6361126d1e713c76feb1fdde166a140b --- /dev/null +++ b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfe26ccdb72460ed9bf03f50761e28b5a7cd0a77f6839b99f17ad8f0548fc55 +size 332869 diff --git a/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec4.png b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..794979b616dd40aa2b93987bb90728459cc4f6c4 --- /dev/null +++ b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6177d03ddbb4637ceb83ec53cebb67e15457a4b6c4f1fbac539fc12a67237894 +size 343104 diff --git a/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec5.png b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c8214bcf52c3f7d0039838ff1f89e32a6f7534f4 --- /dev/null +++ b/specs/Barista Lab_Sora no Ao to Shiro to Mabataki no Natsu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7eafc13c568fc7a602d3f92c15d6754b08539e0b41e10fd22cfdb02ee79d351 +size 305574 diff --git "a/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec1.png" "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..24a10d85e8c0de9824e47a757db8813a6e6f0b16 --- /dev/null +++ "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643573741c8e476750352292320c0ac856a064b502315450cbbd02fe29383968 +size 295153 diff --git "a/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec2.png" "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..fd10fea211f103770c351c45ec130836aad9bded --- /dev/null +++ "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9af0bf68b9bf1c06de98f300e75b1722cce115c7fc0e558d16eafae3f4e9c3f +size 275872 diff --git "a/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec3.png" "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..ad0ca1f851bd6cec492da618f01597ed4b16a98e --- /dev/null +++ "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c252b64167b1af8e36182216cbb974addd03e2cac81cc21e841cf193a02bbbb +size 307999 diff --git "a/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec4.png" "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..71ee4ae78f312607cecbf9b2b7242a81799260c1 --- /dev/null +++ "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ada8bd2c5b03202f008e262787955fe7b8fc55d82692b52f80d13cbecda2a63c +size 295760 diff --git "a/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec5.png" "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..92d013110f1f1f69a572d1125988f376da1dab84 --- /dev/null +++ "b/specs/BaseSon_Momoiro \342\200\240 Sengoku [Miku Hen]/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588502bd2fab783a7ca09e9f5c1c72a293e3b2b1822d7c433945a3351d3528b9 +size 276323 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec1.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..c927450dab631417da87b44bb485cdf12d179e21 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f15ec258737518d482ebc7a26a589f6875675230a31d8943846f970be0ae8f36 +size 264746 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec2.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..f28a1f077624d149f84ffd155a0df0b52246e7a7 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d0b73e69c479cf4193241bbb724477c2559bbf28bf49f96a9791a75588a888 +size 306208 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec3.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..7d3f4ba82900e63b33b878a1aaefc1c63560b59c --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1745d2a049ce102dec88084ccc1da2dc436c3adcca57dc0f4658b5e5327515db +size 277557 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec4.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..14e98b4a0c54330b0105910a1623b3512d4349d1 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59ed28cc72fafec0ce567e6d26cfa476f77b429eb10ffe5fc79cbdaab4f95eb +size 276896 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec5.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..20e1947a99f6e21d37e0b27d7f31eceac2c83a07 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime BRAVE Ichi ~Shigoku no Oniwari, Chousokabe Hen~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0fe1d498c782c3ae1a26eeb8402883643153586cf8d2c3f96e1cfeaff3384b2 +size 288874 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec1.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..b9cfa50ccd875a4ce1e97988b4ea4eaa5f424c79 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:756c7fd4ad58082b928de2a4e8449964651fb06540059fbebb53fa4de8ecc5a2 +size 279752 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec2.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..923b516802b1691189121ee4af70d3349417d1dc --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccedb0d2e5ce5e821f99d3d1fe5682c72e910be05510a0d4dbde19dc0b7b5ee8 +size 281724 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec3.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..b43e8b4460372b73a666c7536c13ee825a2d3fbd --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb053f2fec712f36001b4f2fcdc3660a3fe3c5c087b0482a3980d0cdeb4c06b +size 301243 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec4.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..812a863dd4330b8dd122a96887bdb71a5de3c57e --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9a3f29d34aa87d614ccf7e0970088ccd5bf7f234b83e852a1fa606a8a940b2 +size 281812 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec5.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..08cb884bac28d55a315c141689b694373bfb38b6 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 1 ~Oushuu no Dokugan Ryuu Hen~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e928b0916a1f0b9ac25b05fca00adbbf538fd09038f07980f9ed27d0ccc1f054 +size 304415 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec1.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..2809fa5539641b514d377379f16353f898ea292f --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaa21b45815094c141715448781883f6bec49b3259e4c6a6125823fb41643502 +size 283413 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec2.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..3da5389d9a00c921e7a0db6bef1abeeabc90a70c --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9562b976f92488d9eff42b1ce64a8d76f940ee50cb49b6c6addade04ffe656b5 +size 260029 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec3.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..48f775f9a6d5bcd8c69fa6b70ea665f39cbedd5e --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee606392f6c8c690a9c1d6769b36c3a882fa48dbdbb556aaa118815d70438c52 +size 288961 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec4.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..0b5896f9c8af7f8a965e3f7c8f72952c5c495c96 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689e19bad4a037060e5862d5a542953aa74ca97670a4d5ca474ef9b3a17a4ae3 +size 309427 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec5.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..17c13290ad2aeb610e3780f25cde9f12942af511 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 2 ~Oni no Kuni, Echizen Hen~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f74bd7b94bd73e4c20f3a4fd6dda1f7fa1235a820c4a69ced125fea30419bab +size 266163 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec1.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..da7ad98a43576b1b2ee3b9ba2f25023f691c09eb --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594bf4e7761b2490941be1fa540f3dcea6d5a67c62bd72ba65a6494894a65e18 +size 261183 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec2.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..a4cc538d438347ba207d1321848fce780706488c --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512b27d55ec48c23744b7f0028029b1eeb36f1e0ab257b2dd04c67bbe5948581 +size 301709 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec3.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..a053b3f2db6c6326fee3b5e5ebee9897db92106e --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d09372f81534b586ca98217c957b8002166b045d3d06a1d7f3ae664da8bbb61 +size 250032 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec4.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..a055bf9eb87fed58fbbaddec94fc18191f0b3b6c --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd574d194969e565c75d1043d4114726b44bcd9135816501d9e6cde685a69a7a +size 297242 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec5.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..f83bc583ceeeacbf270ce63ca655cad143777956 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX 3 ~Mouri Ke no Kizuna Hen~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13debe9cb34c168ba8a5951b5107ca55d1010147f4fb64f2764e63868aa50b10 +size 215330 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec1.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..63ffce3acf2d11d10c96483b00fb059063d5184a --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb59df3603f10c0a2fbf89ff002b2e2b09de8688d1064467339b20887a4bad14 +size 297423 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec2.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..df9eb3ea21dfb3581d4fe41f0ab991cba43ed6ce --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bf2bb8109e6d28dbc2c1e71bde566262837992acbaf32a99f31e0ee1a93871 +size 308539 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec3.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..626fca6966c4f6ad67b8e24a0f9f3b962bf8810d --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35cc46c3054b41ea1ac97c38db0a84a865917ab50e41c9e3b984f952bd41f2fa +size 258623 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec4.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..0bed336916f3301026a00a94eacfdf070e1c56a9 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ddc18488c5806473b1cbf945a002efbe9ffff8fa3c044c6f28843803fab0b0c +size 262522 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec5.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..0265c92f2c03bf002e77dd03ebc3d8b917c20d28 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime EX+PLUS ~Iyashi Tokoro, Kensuke Hen~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc8be961cf4571500caf1c512bb32d0f94fcff73f33eb6826253fbb0f772234 +size 275432 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec1.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..0b84e799e371fa63e2e92747a2fb62ee1ee0bcfd --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f387ab275dcca806f49ab9a977d2755a8ed06ec55c6a33312d5784db01d8774 +size 336488 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec2.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..4d8c2653747625b2684fa66fd726d860c974060d --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca3fba27b355d3fa657926b7267df58bfc34a1b747caf9f1554928696f096b2 +size 331803 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec3.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..2839f2bc9e6f8e28d1b55ce571ce6171d4fd9998 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886cd0bfe7a31a92e282a8f1bba49ea819790d1ae894f029bec1e91dfc7a84d4 +size 310523 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec4.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..33f23a1e546bd1aa168b2116f41762b5715714f9 --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03f68a423053079a98b4477f466faedb788115ab45802701dc076f28e61ff77 +size 329194 diff --git "a/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec5.png" "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..9ab3e6cddaca4f0a4bdad4a1232f48d70356388f --- /dev/null +++ "b/specs/BaseSon_Sengoku \342\200\240 Koihime ~Otome Kenran \342\230\206 Sengoku Emaki~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3611cc977cebac212d3f261cba55a2e8fd353cf5f8efe6c0b2e1f5b07d233e13 +size 310618 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..c44a91750a5959454d060f148a4d8011285c4574 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae22f00f295572b002ae207771d94159bb887c1037b8a184c9db453ea73cf15a +size 300040 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..06e18224373d345415f2143f657c1b83d949cc8d --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a69c1e3d236b0786b12f088098cb4b47a1e3cbc4516c840cfee356f041afb6f +size 266091 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..d242fb4d675292fa8cd0a6dd072e6aa51b6162b3 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9d9908c07cdea63ba0b81d42944092445673c8e87834d19bdbb251c0145b2b +size 288661 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..4e4666db9f41ebc5bd89b583b454889dcd80dc32 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c0d52ca0e4b4cf628c22c6d1f182e142eecb2ac65928f8c61eeaa4f6f85eed +size 297969 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..2828c6174d593b5a0f988add9628dbe214c67d0c --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan - Gaiden - Hakugetsu no Tomoshibi/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac488dbcd1f187d8efad25979c695d0820ca0d7573948f41b7d1a02f44cbe143 +size 300780 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..1e564fb26ffe68856175183e1d704700c148d64d --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea42388ca0a0e5dd0f63250235733128334aae019ccadd1b9ce14f5e90791522 +size 301343 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b0b5c579cc8c505bb38c12138db0d82f2d581f84 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01bb1cb98a5b7ac528a5e04a2dbf966393cd4e02fce0863727dc53e554515e34 +size 310861 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..d2aa97720fde0e5bdb093de1d225c075902592f7 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a55f44d35c054098698a7aa2ee35a24b719897684fd8a469f5aeac82ab62723 +size 293455 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..38e854a15bf2c30e1f23e04ad28990e4fb675199 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff19493dc3c14228cb3909556812cc0bfe31bc2444144dfbd1462d8e1856e254 +size 290679 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..8a30018beae711010f3597fe5c579cadb6ad8290 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 1 ~Otome Enran \342\230\206 Sangokushi Engi [Shoku]~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b429c89972abe9dbee98e78ce58428ce1cab31844f49aa470175e46f8e87dc27 +size 306820 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..cdf6831c4df8b252ac0a3f3b7e42ebd6281f8dd2 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc802e09d8d1332aa8b71a8ea92bf47add749d6d059f4215f81a05f290b859a +size 292174 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..17e97a3d73a08e56b2a96f433e755b57b7798a06 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff2c188c2e235cb5b8859b3c44133158685f939274488b5e0d15d255b503b80 +size 300660 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..4aa176f6e3605114552d2250d56c018a031730a5 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe8841e9cd1081482a635d163b7bcc764200a447b58b0cf42255e66f98fce96 +size 288266 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..c308e0abbef63085005018495ee4abf3a80f0cd9 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f2b0ebaefae19ce7eda1c3617ffa5f96a6844741fc4d36aebb65e33b11ee654 +size 314010 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..717ef0c826ebfd19e05bcba59117bcc9e88dea9e --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 2 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446ff69a65016c7bda04163bdd9483c2963e7059c9057760979f108778ff7d0a +size 295978 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..60202bf4f16ca4bd6cc0a7b6357289a04e27580f --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3ec6acd21498d9b5ca963d7ef5527b3003150893c5a1ccea251ba195512b9b +size 310391 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b84085c49a9ebd2698a782284418f8a405bdacbc --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ad1b6f8e9624d0857c4a001624874a13cedda2b2b85b6020ff315dec7c866d +size 310220 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..356f360e79b737b6d35e098504826edaf4923f4e --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506dee5f8cebfa34e1f3e12de0d7cb0109cdbeaa5caeb8c1a899c520c1ad1ffb +size 311086 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..b7d3430009477485cc646b0c4a9ef3c198cd5cb1 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ed004f5a3f05b2409d695d8537f6b1527894d70e66df7e5206cf72be03dd6b +size 319501 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..362e8983fe7962e9e3e93eceb09f63abfda09b81 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 3 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9242bbd295fece0987c263b2085cb6f877c53b1590a825a65c074ae8c2080b +size 303849 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..57e5d2918f0390b28a17770d4c1ad49cd2b21ca5 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdea92ccfe3dce9eab4fa5274da1d00e197e207dcfd0ea0029f8b9a5e134d67f +size 291137 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b677f194b2d602d5e9beb637c635bb3660ec6f84 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88dd3681f38227f7a9a1216d2686e3a8eaae4aeaeb4c0c577e61eda94f8649c3 +size 292194 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..919b4702a82d3d97beaf93e416ef27b70f81e497 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e125814ebba2df088e60c586a796f3407a03864522983c9fac66b01ed1316c7 +size 294057 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..059d68f92eb334b935537ecd368baad0d1b45826 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cbb8d8ad6b82d2a85c2d705ac0ad48fbca2e92a59e53658d83dc4921528b38c +size 279777 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..c3e347a0f8b4c8ad3c386e6aec564da6a093b6ae --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 4 ~Otome Enran \342\230\206 Sangokushi Engi [Go]~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6995cc1e2937993a1ae2b45c2fe901489731c65496a4324ca43b8669d0bf90c2 +size 300677 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..8b20c303f4b787f251fbd374866ccdde5f50ecfd --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad89333da7462d75b13b9d65653c60cabeda8e5ca930e304d3481dae44b1be1 +size 297768 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..eb3499af37e9ae96e5be675638a92ceb6e82ecaa --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e3d7ba70b7f7c8e6c344c23ba898b862ca8b688f7071d8ae86055a9bde4c5b +size 289982 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..2296c9134fcdb69a0f360502aeff20294c589e12 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151c7fec49cd2c718c3ded8597733509649d5d7d5e1727e9506cf3b67334b7b5 +size 287327 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..d7e8cfd36576b7bdb58e76ad65fc76c9089f0c0c --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77f943c55af6688dab36009a2f384142ed540d17d3ff7dd118a84a09d6730bb +size 287176 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..e8e134680a07011cf297ae59de3ee08a778210e0 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan 5 ~Otome Enran \342\230\206 Sangokushi Engi [Gi]~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084495f5e34ee7c466c6229965438fb5c7d0c670a330d490869bbaea784bb88c +size 304729 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..7b0638fe7e62564acec049206793cacd571e7039 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5867c472e21f0c00d2eed0e349b018fcee93cd9c759759293beae390bf3c95c +size 306783 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..90e182f95a9ce68a2aaef4d0c8231da3f5455a9b --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:030405bb7a7267853154e922220e4f27087025d516ccc50cd7e82039c4df73d2 +size 302637 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..5cde3c66aea0b0ede196e93419cedea8acf1ab46 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546445484b6558d616600cf8bc95e204227c48433b1a3e51ee0482a812b267a3 +size 312333 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..04411ea29ff83add56290ce3b9ae9432cf930690 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c22a7a3a3ff4ac8a79051a5a8b87365bb2f6ec374647dee8e42066d99380a17 +size 309953 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..85d4ec09f7dcb51546b0a8d32187ce9230cc2f45 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Eiyuutan PLUS ~Otome Enran \342\230\206 Sangokushi Engi~/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ca72a1ce59472845d939e94d69386dd581a5781ce78cca01bbd439e897dc64 +size 303102 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..2cb0599893d67f6ab86f931c4e5cc1816e1f4175 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10ec9ba1516da6d07f4ff2e2faaf56e9605337a53880355dbb7421b62da8f3f +size 308389 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..c389f16ee5411143c003a11661cb6624e3831413 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba654feafc07d097bce387d62f5265ff2d5b653947221d0b080b75f781677bab +size 314440 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..bfd82077dbe13b177906a719596640d6686473a0 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25320a37e7e544c9e71916f82af41692b95548d67686537630d4549f3f7cf10 +size 313923 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..8218cf84ba3079e091c5a882724b2eec43778651 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba88a2939deb0d225d1fc54508a71eaa9d7350f214789d46ff8eb16cb8e03d9 +size 303753 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..80dbc27d7987373eb5c6ea4c1af4fba918394c4f --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Ryuuki no Taimou/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8d4c072e483d75610beefbde29c1fb36063afa725a6e925e77164afdea69ab +size 289893 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..f7270e5b8ccbb95762e1964e01b7f3ff65a2d322 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e930f367f6c06e5c6cd4185f42e9b71084d2bd2a04fe107e8b813174ee5cc1 +size 308768 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..0a040860b8082b48d8e69319fa94e4b5645fabb3 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bec824aabdbc20bf818929a5b02f6d175af0df71243aff603eb19563f361726 +size 305602 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..5267b784e2ef37bb0c788b1ae2de0efd899ef96f --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef2703471cf409f7d4b41ad7c68eb6cd1bf50a3b0e7580c4fd5cd14175fd09e +size 305942 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..480407d69c45e528bc976472c7be59cd85637744 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d97fd1625dbbfc4a876e8d40a38ba7972bbc63e90ee82acd962e95b45d0182d +size 289738 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..3f5871791ff83c5da796cd659d11538cbf7d1310 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Son Go no Ketsumyaku/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15fc1c959375c7da34b8843114496833af14d62694bbc6ebac1a6b784bd1642 +size 292601 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec1.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..934ac542dfee86d8940403e9848ffdb896b04098 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:518e5e377eb0cae42cbba194476a3a3ab93823ef37a5f4f2eaeb9d96c1735440 +size 324535 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec2.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..09787a8d9f704402b250b28286b0de00bc1002d0 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a1a1effba91db2d7a0cfdf453a6aa7942f3e1ece99ebbde2ece77292d390c3 +size 323102 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec3.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..8b8b8a8450f1c060e3239b58e71e1640970827e6 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa396314ff11f49c8c95c50c451d549a1d4fa593ece44232bbca73933f595af +size 317940 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec4.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..756629bc2657530aaca648badf89206f9693f38e --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1d63f8a26d855cd8cdc858d5baab3d0b1c724c5121c6221d028177d4ff0bf6 +size 341044 diff --git "a/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec5.png" "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..bf7ff7c11eb174f4ae6f7e3b9bb38d30be7fd532 --- /dev/null +++ "b/specs/BaseSon_Shin Koihime \342\200\240 Musou -Kakumei- Souten no Haou/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c2d2417968a423a071200ef1f2e65087032425c48425208af4d29aae3f87b6 +size 292446 diff --git "a/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec1.png" "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..cfecb2afe6495da909634f8ebab4d8793584f384 --- /dev/null +++ "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc58992ca5ba20745469eacab69d38ba3e816c1b8f8b7acd059a1f2edf59cd84 +size 273761 diff --git "a/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec2.png" "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..fcdb1f8b316374fcc94773b679563429d99c9d04 --- /dev/null +++ "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66108bbf369e801f5ebcd8702e6e5823e06f1a48590cce77628fa1fc4f75da0 +size 267372 diff --git "a/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec3.png" "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..7c7ef6a31696b76b3c01863725dccf8838315282 --- /dev/null +++ "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf65997c84721661620d462555fd8a13521be8d47d770ebab11555844c1239c +size 297258 diff --git "a/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec4.png" "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..7f014fc2a93c6703c1df846ef359398f963efbe1 --- /dev/null +++ "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bcdd39857a8b5e08241818e5804410d414da03c20785cc8861d00fa89bb610b +size 283532 diff --git "a/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec5.png" "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..f97f600adc83c6f5e266728314092b71926cf606 --- /dev/null +++ "b/specs/BaseSon_Souten \342\200\240 Koihime -Shigen no Ou-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c9027a85bc8f7d5edbe451791401092e2d37a5ac70d69880039e90ac62611d +size 279919 diff --git a/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec1.png b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9d13841b631a9a3930376a0e2088256f8107ee8a --- /dev/null +++ b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389f5a91f19f1e73804b6bf6beaeedb5222f2e6052bf41ed0b3d22cda9cc726f +size 289704 diff --git a/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec2.png b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..007f9117c258505676614f19032b4ba9518bfee8 --- /dev/null +++ b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4bc319398c498670642a718e79c56ee43cf8c8f44330d9193373a06eec838e2 +size 264024 diff --git a/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec3.png b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..446f385006c3f7dc967c4c65f3dce6be61bcf1a0 --- /dev/null +++ b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a356b6878c9aad61487b67b199170e024bee248b553daf6f6e308d3184b753 +size 285464 diff --git a/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec4.png b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7daa0b7f63988d859de1ffbd4527bc9312cedcb8 --- /dev/null +++ b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0883a2b938869108f92f7353025db26007364bf31f19f202c89086822cc7f62b +size 278946 diff --git a/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec5.png b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..67a2e45d5ac3d2508be9a7af58aa83f49ae8ddc5 --- /dev/null +++ b/specs/BasiL_Sore wa Maichiru Sakura no You ni/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc19463f01807d33f6958332cb6065fcd1d5fb1eba366b272be33245b02cfc41 +size 257490 diff --git a/specs/Blank Note_Himawari -Pebble in the Sky-/spec1.png b/specs/Blank Note_Himawari -Pebble in the Sky-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..47f9fa47d71fcb50001af6ef66d3793d4602ad57 --- /dev/null +++ b/specs/Blank Note_Himawari -Pebble in the Sky-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76a6039c1a77096eeadef8c0b4a2f9add2397b1f01855cc68b9b0e1e221363b +size 292344 diff --git a/specs/Blank Note_Himawari -Pebble in the Sky-/spec2.png b/specs/Blank Note_Himawari -Pebble in the Sky-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c6b172a1cb56de83766a8ef833a0b202cfe7d545 --- /dev/null +++ b/specs/Blank Note_Himawari -Pebble in the Sky-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ed70ec8c7f475d9593ae2f08eea773066dda8a686847a731e3754c1837b4f8 +size 283203 diff --git a/specs/Blank Note_Himawari -Pebble in the Sky-/spec3.png b/specs/Blank Note_Himawari -Pebble in the Sky-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7004bd8476ff3ee868ec579c1c094b2308024f9b --- /dev/null +++ b/specs/Blank Note_Himawari -Pebble in the Sky-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6a762b265809e378d70ca76d1531cef8a7581ed7fa1961dfc83b47eef7db76 +size 284464 diff --git a/specs/Blank Note_Himawari -Pebble in the Sky-/spec4.png b/specs/Blank Note_Himawari -Pebble in the Sky-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f73ac71330e749a0986af4ef789c6deca7ffce54 --- /dev/null +++ b/specs/Blank Note_Himawari -Pebble in the Sky-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4b808135855251629fd1d1275f3d67b6dfbd330d8b8c9ddf96830c5c17a9e5 +size 282905 diff --git a/specs/Blank Note_Himawari -Pebble in the Sky-/spec5.png b/specs/Blank Note_Himawari -Pebble in the Sky-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..740f6af6f6b794f43755e09c981a08221098d52f --- /dev/null +++ b/specs/Blank Note_Himawari -Pebble in the Sky-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98dd41409dd3dcf951e494a7260abbaa10aaf4d7564fe71eedafa96a5dea053e +size 277773 diff --git a/specs/Bug System_Haze Man -The Local Hero-/spec1.png b/specs/Bug System_Haze Man -The Local Hero-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8c49fc42e385d0ca9dceeabbfeb498d72874d280 --- /dev/null +++ b/specs/Bug System_Haze Man -The Local Hero-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bbc6c1ac0c98cfc0a44ba73faf9f2054d0c40626bab5514e0577bfb9eac522b +size 326024 diff --git a/specs/Bug System_Haze Man -The Local Hero-/spec2.png b/specs/Bug System_Haze Man -The Local Hero-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b47104ac006f59f9cd336b62856904b60ef103b2 --- /dev/null +++ b/specs/Bug System_Haze Man -The Local Hero-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095f1d643d7bde4a0735873c184c374e33d569c03e505b528953ccdbfb57da01 +size 323146 diff --git a/specs/Bug System_Haze Man -The Local Hero-/spec3.png b/specs/Bug System_Haze Man -The Local Hero-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4ef9835c25e51b4f56657ec53890a09a0d2e5d7c --- /dev/null +++ b/specs/Bug System_Haze Man -The Local Hero-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ed2b0443afe3fd8ab50c405d58e627406dc5dca468239a9fe4fd8e29bb0955 +size 297516 diff --git a/specs/Bug System_Haze Man -The Local Hero-/spec4.png b/specs/Bug System_Haze Man -The Local Hero-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..006d522805edd08ada8d67ed9de634ef74b5bc42 --- /dev/null +++ b/specs/Bug System_Haze Man -The Local Hero-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a4e18e39a9c61d6ef264c5f76432b4af7ad42a1c7d13fc33392a2f010ba14f +size 330143 diff --git a/specs/Bug System_Haze Man -The Local Hero-/spec5.png b/specs/Bug System_Haze Man -The Local Hero-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2516f43dbff0442ab2a4e5239c3dfdb049ca0199 --- /dev/null +++ b/specs/Bug System_Haze Man -The Local Hero-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffcd9254277cca72e8abb9a9f43bdf788bab9d0ef59fdf7bed5358a6b5baf59c +size 355741 diff --git a/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec1.png b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..07be7fe237c7980c5e5d7747fb4e58bdbd3efdf6 --- /dev/null +++ b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8346de217332e0c0391c041a3bd46cb1eba367625e46b97b0d0bf1f62ad5e440 +size 352150 diff --git a/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec2.png b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f166ce3f2804d2b30f103c8dd1eb9c717bed7194 --- /dev/null +++ b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a286bdee4ce0d85c170db2ea3cd0142b7a1aef7863680590188a39cf73df7a2 +size 314567 diff --git a/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec3.png b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bb29a3bf2dd20203f03fdca714b7142cc3d6c000 --- /dev/null +++ b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17456f298f979858a8dfc6ec82ddca0b371657d9485454b9b859ae4f2300d918 +size 324445 diff --git a/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec4.png b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ba9f68c71295d2676c9b88c24b5a94869da2c1c1 --- /dev/null +++ b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad4b1d519299b9906e6d2ef912018c8476facb5037bb2f7c7bd1d6462c4709c +size 318855 diff --git a/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec5.png b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..16228c67686a9a37db98c36f32b860d28881d30f --- /dev/null +++ b/specs/Bug System_Manakashi no Yuri wa Akaku Somaru/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e99421ebb8cc8e8125c60f46c9e050d1ebf7fea0b899f6b897a021129f62cd +size 326937 diff --git a/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec1.png b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3623185d648e8c7850ae21e859b608e13b7d9903 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784a143df889c6f7464427f6248687158fef4f23884b9ae430248a96b2d9642e +size 337477 diff --git a/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec2.png b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ccec31b6a682e175fd6d525610ca689d1724e288 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df25292938defb78753b7b164f0b5ac92d526ffba33eca8b2413c1662ddf8c07 +size 339942 diff --git a/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec3.png b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9178e4a4fab14c14ec152a86ba558a3f902ffd32 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5fde54b2331c58da7cad6b9b7534fd578f4e20cb3bf49f2745ba7d0c98c4ef +size 360999 diff --git a/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec4.png b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..72e83c3c561fb42453ab61f16fda3a70c92c7c95 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc82822e2349cc58a8488c177213c49ab1d74db1043eb9f04b6beceb49771ef0 +size 360280 diff --git a/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec5.png b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f799868af97ee7e30f3ac7d30ce77cb4a521ece5 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kimi, Yakata ni Mebuku Zouo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee9153d3f4b9edfcff82a965bdbcc2752d218802face32c37d0f5b79bc30ea7 +size 334807 diff --git a/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec1.png b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf6ba03dd28adc76f2d3d0c0755a0ce344dd5424 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fdf002053055b33bd3ad4b257236874678b71c46d54334c3212ce8f9a54536 +size 334208 diff --git a/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec2.png b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ce4c1f8b737799d813d0b6faa860feecbc401c2 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f78661c1f27bb0e577a2101eafffeadaf3d65f4c6dd980eaaa529cd5d830c7 +size 326821 diff --git a/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec3.png b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a32b2c5a7d9f84574c49537db3ea6fcaf31b3ca8 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58459d751bd3f92f95b14c1bc3fd39710bed652fa76dbb7c69d2d4b84f4beded +size 336986 diff --git a/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec4.png b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..dd03ab80da1899e3e336a1ad10bece4236b51c6c --- /dev/null +++ b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059310797ca7a1b3be3d437728645911376898091366fab3e0fd571b3ca752a9 +size 335472 diff --git a/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec5.png b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..686dd7778a3547ef6c29182f04559a5f6d7aebd2 --- /dev/null +++ b/specs/Bug System_Shiniyuku Kishi, Isekai ni Hibiku Danmatsuma/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cbf7b0c372175132560aed87768e61795761c9fa1d106bc2c6ba93ba3bf75d +size 340459 diff --git a/specs/Bug System_Sukui no Serenade/spec1.png b/specs/Bug System_Sukui no Serenade/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9c07d3644078254ceebe6a364144ba84a6250673 --- /dev/null +++ b/specs/Bug System_Sukui no Serenade/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2fc93d8022933ebf35b18dc9d2351c7bc02ef7dd084b57567565eacf066a56 +size 358314 diff --git a/specs/Bug System_Sukui no Serenade/spec2.png b/specs/Bug System_Sukui no Serenade/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..71d43b9f1ad3af24a89350b555620b2101551d17 --- /dev/null +++ b/specs/Bug System_Sukui no Serenade/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb2219da1bf8bf6ef527121ec8139ac49ec389bfc5cd0e48ce78504dcd3efce +size 344443 diff --git a/specs/Bug System_Sukui no Serenade/spec3.png b/specs/Bug System_Sukui no Serenade/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8a3632dc74663087a86317b35cba582de101a3 --- /dev/null +++ b/specs/Bug System_Sukui no Serenade/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fcc9f39dc6ac1ed622e5015cf39b576e08c56464ff468fa54fffd1cbfdfe1a0 +size 312810 diff --git a/specs/Bug System_Sukui no Serenade/spec4.png b/specs/Bug System_Sukui no Serenade/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..490f87349dcd9c9c8a534acb5eb2cb40e275c516 --- /dev/null +++ b/specs/Bug System_Sukui no Serenade/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711bc4945e6ff67d21e12a684e54e6326840a20b8e849819a2198121ecf3aee5 +size 293080 diff --git a/specs/Bug System_Sukui no Serenade/spec5.png b/specs/Bug System_Sukui no Serenade/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7cf2a98af52dff03c5eaf96dfd9f201fe27c45f7 --- /dev/null +++ b/specs/Bug System_Sukui no Serenade/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9a6278b76048a08290c51386fa39117e467e441235be2d8f96412dabebc448 +size 346062 diff --git a/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec1.png b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..181ba9555168ff637e0c938f5462fb6446033d90 --- /dev/null +++ b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15e0f197cf0ee5ab487ad85ba9c72e7b62a93f697b21b5603c07bd55b68612a +size 248754 diff --git a/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec2.png b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2c99ec384e7920d7471009fe5da93c67604b27e6 --- /dev/null +++ b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f390dea74e04d637953aae40721fd1c4cc954f1597890d944e015873a0249814 +size 316341 diff --git a/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec3.png b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a1192fd14a5d6e09a5ded02b1f2617ffe1848642 --- /dev/null +++ b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dbf795dff565c0bb5054408a0445cc32d423db5b6a77598d7df1ecbb1e3d3c +size 242381 diff --git a/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec4.png b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..af4b9079574bad9a526cf6dc7c334366f7e8698e --- /dev/null +++ b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a0f0d195c236e30579e709a37f9f3414ff7fdbc39e3c511e6499607b171972 +size 216006 diff --git a/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec5.png b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2442754e5dd13eb922ecbd26a742b7647ab9b954 --- /dev/null +++ b/specs/CIRCUS_D.C. After Seasons ~Da Capo~ After Seasons/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec069607182ced050cd978984a4725265a1775c27dc21b357d762cda718a6dc +size 308528 diff --git a/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec1.png b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..712eebb0fcd435f6ae6bc2dbdbde73816e71234d --- /dev/null +++ b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134ac8319c5266de2f5f88d6446748c9201bcccbefd1d87356a168387aa34129 +size 257322 diff --git a/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec2.png b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8511963a1d0299a41ffc39f7729912ffa4ac808d --- /dev/null +++ b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c513204a9ea529b1b5c235ef5a1400b53e991891d754d4a1bb31fa5bde70b817 +size 288139 diff --git a/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec3.png b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9775ee9fa5066d8994ff715bf52f1a7443c8d806 --- /dev/null +++ b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b98a16fa02941b74febda05eefe25d4a72255ea8275818d8e37bb5ab59d807f +size 307876 diff --git a/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec4.png b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f0efce6934a44ecf6e965e7d78929d5864d87b53 --- /dev/null +++ b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c5833527b9fb3d75e956c127fb365a787a82ba0e95106a7393bb7c0b8c8c88 +size 309928 diff --git a/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec5.png b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5db92857878cc99c98578855db50e1a7a32d7b --- /dev/null +++ b/specs/CIRCUS_D.C. Dream X'mas ~Da Capo~ Dream Christmas/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d74a90de6803f0a09b1130ea3aab7ca8046de4bf29f2ec5c44391f0e727552 +size 305156 diff --git a/specs/CIRCUS_D.C. II Fall in Love/spec1.png b/specs/CIRCUS_D.C. II Fall in Love/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..27c69340a9c3a26135d45d55b26192aefa6e39a1 --- /dev/null +++ b/specs/CIRCUS_D.C. II Fall in Love/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54251d2afbdd48b4c0d1ec48c29b99dfd6b8e2f1a48e61afa376355597c6f3d +size 208352 diff --git a/specs/CIRCUS_D.C. II Fall in Love/spec2.png b/specs/CIRCUS_D.C. II Fall in Love/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f1149ca8ec56cd98db1ced86e089d809827ecffe --- /dev/null +++ b/specs/CIRCUS_D.C. II Fall in Love/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0663e7eea131b81042726b1888af9db207070a749c6ec876d11d991aa808f6 +size 304615 diff --git a/specs/CIRCUS_D.C. II Fall in Love/spec3.png b/specs/CIRCUS_D.C. II Fall in Love/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2cf228dbec25cec76d5b22bcdbe414e8e088e748 --- /dev/null +++ b/specs/CIRCUS_D.C. II Fall in Love/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c410ea66947af60dc9ad4d73e6ef4276b92405dde1a94021be329109afbac2b +size 260270 diff --git a/specs/CIRCUS_D.C. II Fall in Love/spec4.png b/specs/CIRCUS_D.C. II Fall in Love/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..669bcbcac99a07f9ad2d60532bf13b5e915c956d --- /dev/null +++ b/specs/CIRCUS_D.C. II Fall in Love/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd0c126b952e960a3656c6802ed942f3671591bff6bf725d2f629edd9831825 +size 300223 diff --git a/specs/CIRCUS_D.C. II Fall in Love/spec5.png b/specs/CIRCUS_D.C. II Fall in Love/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bc92d10bf6055c0e1ba78150069729e92de7fe5e --- /dev/null +++ b/specs/CIRCUS_D.C. II Fall in Love/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce68b81f609512f856abb6c93136ae3d8c41c3b42a9790bfd830816d7481143 +size 182650 diff --git a/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec1.png b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ca6108afaa4955a58f2777a05c54eca49b455021 --- /dev/null +++ b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58bbf8f05ff571afe7d23ff9f417af90d8332272455c88ee7cb2ba675b4fa338 +size 262879 diff --git a/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec2.png b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..dff73fa977258f902bca07a6cccd25a1b7f95fef --- /dev/null +++ b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e58b0470dd0745bec72d3839bcd68f31706a446667c7540b22da50aa1d9949c +size 303249 diff --git a/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec3.png b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..23bbeb220745f4c81b3b0b6e6169dafff05af2ac --- /dev/null +++ b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ffd2950d1a15dc442200c95b726dc498a62643918b8fdb5700d9f6a7eb4e5a +size 282047 diff --git a/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec4.png b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c1bcbfa8e9f8c8d842106b2d34b9684d975e9e82 --- /dev/null +++ b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d7c2976d06ee5b8e1649ec5900655f1132cb5201950025b0c327acb9e29196 +size 262168 diff --git a/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec5.png b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a53af789bebc4dab5d10eda07f08f1cd3f08b54e --- /dev/null +++ b/specs/CIRCUS_D.C. II P.C. ~Da Capo II~ Plus Communication/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de27e8a7e2f586e4f85b592bba94ee648808ba332ac6c890630b56c0ce5c24f6 +size 270615 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec1.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a60bcbb0a0df17d7e41e730363fd04bbbf287fc2 --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124ffc509bc7016107237c92f3bee40011d220619990a9996120e608f9e76180 +size 298783 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec2.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..32b44f58b6662f84e768020e8de0988ff1c4c72e --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358b142287ef86e7d5c4cdc650d79fbbba2d2623159dd77c74047bebfc2612f2 +size 288457 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec3.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6a34c2d2027900a971848117cfb884dc2afaccf7 --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757c805714282ce5fe4a265ae306b96b068662f1ced03d7a6fc6399155781f00 +size 306151 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec4.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..dfa0f9d880e3d48d96b25b58df6116c0a9ce267d --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568f2bc13422f7a7bc75799abafa571a2739fcbf0c0f1a955be1a6a89f0a1a02 +size 297980 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec5.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0323fc25fa14730dec5a712cb91814ec93c1ad --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Dearest Marriage/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b900ed922fcb14e47df430ea9f1e450932b1614d0b8e3d333f839a5a3b244eaa +size 319988 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec1.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab3de5daa956bd9832c61d104c47b8c6c872c48 --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fea3ed42b2799adafc540e00dabebf76eb04e057057089d6dec38c6696ab295 +size 292392 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec2.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f250609342f1858ec927ef93bdd0cc98f5f9444d --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8a822210ef1d9935c7c1bf43a3ad3ef51547959ab73ab803d30221b4133359 +size 279857 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec3.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d049f997a0a8b0d682aa46a6dce2de596fb7aba3 --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010bb766af43cac6aec4e2f83c222fe882265834b0c9a17a52c2f08e7d3d6b8e +size 295818 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec4.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2c4b0856fe08f52c28882044b86b9de645ee55dd --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb73bc73d2838d24f53d0fa4c03141176a8ced0037a383862939688e900ae3e +size 269833 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec5.png b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2f592571b3279cdbcf4487ae5ecf5ca0406fd1c4 --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ Spring Celebration/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e06bd45834c49743f1f9aad3c3d55967ed7ea7f860019e2bfbf615b34561ac56 +size 215044 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec1.png b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f28896bd5941672f4b8adb16ae469d51012513eb --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f81168a9f329fa6604be173a0ba61f9466654ced75a352a54f59d8cd90fee93 +size 291336 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec2.png b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b3e2ec3a88dd586f84e38abd2c87b0725d368abc --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af2c5c856f8ca3c9eeb71a1ed6027883348ecbdc3217042b001f0c7e4c40b98 +size 303302 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec3.png b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c6d704b4400efd1fd093375aa4fffe4284953aa6 --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f638b28487756f9be88a86f4768c6323d0f312eb3a6230587ceb1fed831488c6 +size 336021 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec4.png b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c4a7ffeedbd6a2683811f2902e9c6e269101ea4c --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa786a0fcb9cecb92456e306d5578954e48c476b3e84a2c0d131fae0c204f0f3 +size 316255 diff --git a/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec5.png b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2974f4a1d647e63d03aa69ca37e8fd6ddaea8503 --- /dev/null +++ b/specs/CIRCUS_D.C. II ~Da Capo II~ To You/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d443017f6f1c98fd581d7fc055bd87deed22c0333299e55bd177bdd0ce5b3853 +size 299485 diff --git a/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec1.png b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e085eb2a7a76725fa9c41be0780ad0a2317a79b5 --- /dev/null +++ b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b75de181457f708129c464d7921f9af4c230ab7eab46046bc6635d59594d86b +size 274533 diff --git a/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec2.png b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..66433c4dd5c0ba2a1c661dc548c8d6417523ee5f --- /dev/null +++ b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90d12ec93ccffaa2a828cbb490b18109fa268ab232140dde102cf9ef792d2176 +size 265150 diff --git a/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec3.png b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7614e4633509976e6955c536ff7ea93f21c20c45 --- /dev/null +++ b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5ecf8185455a3d3e150322a973a0246cc022dbfaaef50b8ff7a88ae0c8762c +size 289455 diff --git a/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec4.png b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..092476c4695d13f7e1c6150cd0528951134fa227 --- /dev/null +++ b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9283602bb94abe3df40f452982a8925588a02be039259cfaf73108728dd3b4f9 +size 298380 diff --git a/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec5.png b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..149f560c573be5e6a1db99cfd4f747a233d119fb --- /dev/null +++ b/specs/CIRCUS_D.C. III P.P. ~Da Capo III Platinum Partner~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe3965ca4d046113a96564b4399a2e6c900edee48d4f154c228caf0f627c15b +size 301156 diff --git a/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec1.png b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..79d0e21ab8a8eea30679ad2bdac3ab2149f0248f --- /dev/null +++ b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2583b24eaf69fe500b16199fa6d97e1d5683994fccd0419a59d48be2c103282 +size 251765 diff --git a/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec2.png b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bdbd3c96b6cf9555e115a098249d99acec721f5f --- /dev/null +++ b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8678a6ce8f0542f26a582366419f6dbfb064b2153adcbfa859eb87d409b92af4 +size 312639 diff --git a/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec3.png b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b62e7a6ee494d280ac15f0153cbb70ed66d6b683 --- /dev/null +++ b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f4c47945fca2c083685cf56abdd5d5ccc0ffcb0c7b292114bab78f4b63c455 +size 303569 diff --git a/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec4.png b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f282d4cb56eb7dcbf0a846381fbfa61222f0e478 --- /dev/null +++ b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed2e209f63ba75fc2dffc5a0145ddc3b6f8a48749ffdc8fb9b596309f78e5de +size 324498 diff --git a/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec5.png b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0c9d0cbda8b4cf0a7cd6bf47679850d49c4a09 --- /dev/null +++ b/specs/CIRCUS_D.C. III R ~Da Capo III R~ X-rated/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b8855d44f91ac54acad7450b0adb23fc18cee77a8e94a7a2929c11bf628b5f +size 334699 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec1.png b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd62ac9c4539285bac67b3d800b0b38046dc143 --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db8f08628c88b5d4a9a14afbeaa53b02d9914b3d661d52cf307753924a0750ed +size 333886 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec2.png b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..412fba06a05fbb15ec1278fd20e0b30e5decdfb0 --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dad16157b2a318f05f67760bc7521fcbb3898ef82f3037e55e3236914692666 +size 279878 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec3.png b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6d76e3059a169f273a7c0f83fafbb8614bc552bf --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:471013b4212a2062901f3d24a11757d86947edbadf2479e4864f7d8023f1f798 +size 280845 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec4.png b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f30dbf4fdf59d98f5557879aa5e73113f9ab2d5 --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b84f6c82945a106ce17bed8a061d142994190a26613f603a551e54489c22858 +size 315440 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec5.png b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ba1e6659948b192cf142822f0b1de7c6b7dbd085 --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ Dream Days/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6018d0960240294c1f8e4ce3522395d5be5517273cee057aee5c80b0be839d60 +size 328632 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec1.png b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6b0008ac54e9d867eacbc76f689b965b6685c52c --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ebf078635e203142ebff38ed40bd849bc5258f4f503932a06b9c9fd502c529 +size 289240 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec2.png b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4f381e1e614e8811b3fb2cce114e2c2a2aed80f5 --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d931a0c0eadfd6228324daffe70a04520542bb846368570bae80833ce2640a07 +size 265193 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec3.png b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6fe2ac9d134886cb61561ed4e9362fbebd63ce --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4349c5b8c2aa6f18032c0c5ec94af13dbc7772f027496faabf1b6c34b7e866 +size 250599 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec4.png b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..66740a82d6fecbf3d3218d38f2cd9c3bd230aec5 --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637c775583b0954101b8e8e7f371d7e7c17870e5269cfe67def5cde65e145f57 +size 263405 diff --git a/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec5.png b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..12648c319fd7cd77f75cb5bee85955893f09f68f --- /dev/null +++ b/specs/CIRCUS_D.C. III ~Da Capo III~ With You/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b76d5b0572a75fb32a3349c8a8bcafa4e2288fde8eb6b8b8875a56a7a66e2e0 +size 255564 diff --git a/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec1.png b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..25b051f1185433b793e8e4b0bb830cc0815456ac --- /dev/null +++ b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9637dbf54474a17c65c2edb7a1b35063dfbf8082c8be219217912c988ef90a4f +size 259009 diff --git a/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec2.png b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..21cdb3c8b2b3f5a9256a81bd234c910a23228ac2 --- /dev/null +++ b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667ec7f98ad6fea56d99855eb6bcd799981471498a596b7fa74d0c5e96407843 +size 216427 diff --git a/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec3.png b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3824171fd4bf754d9302560c0c5de550ff8123ba --- /dev/null +++ b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab9a8f8a2cb2585a7d07152b9c50af92b50595650c59613bf9a53445b9055e23 +size 267837 diff --git a/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec4.png b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5ab4281aff7c0f5abf0efdc2d013f4fe0e46ea58 --- /dev/null +++ b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e718319852750b8f696f47d0e63f64e1a8c5f10b857ec2528253c2579b0c12d9 +size 306563 diff --git a/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec5.png b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8f0429ac86ca091a57bbbd7f12eaf8682cf3b824 --- /dev/null +++ b/specs/CIRCUS_D.C. Summer Vacation ~Da Capo Summer Vacation~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362a77cebdac6dbd594389f3517b8fa3590f7a8741f38e64a17bb0392c923c4a +size 282014 diff --git a/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec1.png b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..177d49ea56433e8c52629dfada5dac9f5fd3671b --- /dev/null +++ b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1298e9cbeb6cebcbf3833a59de008ca474761c8ab8bce586bce72f66ce1e7d +size 300861 diff --git a/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec2.png b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..63f2b30238e65d332d67af2038cf5bafcab8a141 --- /dev/null +++ b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a0c4a33bf6f4f0682c1c229a3cfd262dcb82dc5845747dc7d1845d21eb6a08 +size 241706 diff --git a/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec3.png b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b8984de96ab5a373d2d5fd13be3376d3dcb69ff1 --- /dev/null +++ b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8496b89665cf81250e8114912d722f25f46c26f65c4be6fb57190a602b12c6b9 +size 258465 diff --git a/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec4.png b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c157796b87414faf5c8f6bcb4657f635b3aaac3f --- /dev/null +++ b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ac69a6c1295e83bf81d3a0e8441f0318f9a0c9ffdf4bdd9c450cbc34047a7c +size 236237 diff --git a/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec5.png b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..49ad1ca7b4841b56adebcb84d2337562dc3ca1ae --- /dev/null +++ b/specs/CIRCUS_D.C. White Season ~Da Capo White Season~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5bce99ab0cbde5b1f754295ea0e5a9c77814335585760a884db2cb462240c8f +size 231276 diff --git a/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec1.png b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8819092d30f76d0d6bc7e9421877e6ef56bd04b2 --- /dev/null +++ b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f048d37a717b2b0f75e82e54a7a41dce892fe1fa38246c91373432377e1bf249 +size 308415 diff --git a/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec2.png b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..35b8c6f7e7443901500d205d60dc8b0a74566778 --- /dev/null +++ b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4332af568ab8257c663b57a0d26cc2056ad3798d81256d89a799d58b909f5a +size 256349 diff --git a/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec3.png b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..575f2ebb6461ffe9ad1e3a08b31e2a421512289e --- /dev/null +++ b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db64626950482660700d93b84a62b05aadf0979448acce866295786e0c5cd28 +size 313564 diff --git a/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec4.png b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d7183abfcdb25e5a1481823ac8e85492c4ae9c0a --- /dev/null +++ b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da04ca290a6bf525808af5992c21f2df7dbb56cdf9dce2e476508b9db064ba9 +size 254181 diff --git a/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec5.png b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..aaa43d000162b74ed81d0d2338f6319b7c71c819 --- /dev/null +++ b/specs/CIRCUS_D.C. ~Da Capo~ Onsen Hen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43944309d1319ba6a3d746812f0d721036b0e7eca97acc5cfc5ad836f9f1928b +size 256594 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec1.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e127672988308802142d21e7b2a88fd577950bd2 --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2734a2c119ffead345e6082202ed1d5871507e17ae1aac46a90206f6337d2ed +size 295419 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec2.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ee4f8a80cfab7385cf0c4a0af846fb3536af0f6 --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f303ff020d9cef55c611c7025668c50dcb3123974ff21706074fa45a78f186e +size 296254 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec3.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ba0fa3a56459d7cadb79cd1350b07e938dd928a1 --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815c6e0991c423516be06455ad518207040509c6e57df1d0d1ba44c12fca90fa +size 275313 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec4.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3d0abff897d27b492f0a2d22f3723b29a9735c9f --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d91a9ad97c25dbee71ac888ed1a2eb77bd6f24a694ff1f2d847ad3a17565ac +size 279625 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec5.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0711c47c4b250ae60fb92ce011da2303cd6b6238 --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Fortunate Departures/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4759c37c36658c033e6eca6dda34c51a49fcd2363c0fe01bfa0e613253b096b +size 298150 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec1.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ad35b4edec3ee7366d57ae4c0e81e6f0082365bf --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068740238512687fbd8d0191cfff66ad6278a47b4ed2bdabdcb83680b8470094 +size 311540 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec2.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..04fbf664eab2cd7aa20e52d9c554999f8b6227bf --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ceb1fe44f8eef0ada63cc7e1dc70374a036cc60a0aa0b4f9148c6ca808c0559 +size 303191 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec3.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..db386f11a2e1f55bd5b115b46ee5a9169d5b2585 --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29875165c24280ad3e5dc63cf57ae4edb410e3b6dde5412577fb6d5186e432da +size 294954 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec4.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4e6f4cb9e0272c1338be31dc358f9c1b8fd72fda --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b87e0540c706d6c62a3b5f6fa694078ce4d4783b1639602cebba75ef6991f99 +size 290842 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec5.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5a55a0ccaf5186f5359f3bd60f233583627e962b --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Plus Harmony/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a52c3a3d21980e90ae9fe2a659f7e6f67891ec2d7da5cc2af4c6e727675d8f8f +size 298739 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec1.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..715f90cf52c8b8e98995ce7e3eb748d98091ad46 --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7372acd1acd6fb76b6bb938a8d109047a44fb63fe63820419258205c3b353b9 +size 280748 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec2.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..517ca79f4409ada0537abb5a8007aba5b05c4aae --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f76f43f0ffdd2e3c6b234db982d8e541092b3b10290e96f67be0f7d1361222 +size 289725 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec3.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b38474cf157be0361d43289c4525b2927235c84f --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8327522180352e7bcf3d48cc63536a95a4cbaa47bc6f398502f264e47d42b6f +size 277859 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec4.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7f639ac2a3ae52ba1515f1a9407a85798a222bd3 --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99a3cc695efae42c2b5da3ba2e2b5b31b6fbc4065537b34d20728c65bde47c2 +size 281494 diff --git a/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec5.png b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6fc9ec79b7a5d90acb8cfb93a98d3941693122be --- /dev/null +++ b/specs/CIRCUS_D.C.4 ~Da Capo 4~ Sweet Harmony/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493ea856692a10e749a362f10d2960a013bef1bd6a8e0eab74e6c205203a5be7 +size 275321 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec1.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ae26ed591f9b81f5e50161b102b297439f2bd233 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e977b2accfb5c0dc10d4362c289ea8ddea48aa7f78f7fdddf4181aefce47b4a +size 265328 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec2.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3e570592c9a91d158519881acb7b0e9f833c0319 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f693b6c2fed4a626f35243ebbc02f1f9854c3d2e77879683796951a3b729f5 +size 300307 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec3.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2609da8d0884efcc8ce88d35b33f19ed2e0bf5dc --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbb8d89e2b3654fd649dea0f5c83bf7e5f0a586431187c59ec64963260ec1bf +size 309338 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec4.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..53183dc987307a01beb986c16a45264c51a53f9d --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5932ad9a6d4dd32cff7aa9fe98ae4383ff5319f3e6b02a7031dfccf19deb7dd1 +size 288949 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec5.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4d7438fae2504e15f304e1a28c86b9e0b05c31d0 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Future Link/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b58223ce62ea0f4bdd88acb52f3e7b6d6cea9ccf9572af74a40c0973a8fdef +size 265893 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec1.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..eecafd4216103fda225af3a05f5dea825c9e7992 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c84040f5e47c0fecc9d6af96a6b9ee561572f355f29531d559fb782b5361cf68 +size 277238 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec2.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..16152d326bc641a3683fa9c137444a980334d9a9 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0d962d2502d4513717a859eafe5a549760f06b5cd9440480f78d9a55554d9d +size 305802 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec3.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..50f50beed6ba6b8007df3a416a9e1865aaa6564e --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ffc911b150227980ab14ea6ef1ac957fecbdaea904c71495f54487c6737177 +size 300206 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec4.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e8cc6e98432a86574c2c60d9ec1ae1aa49fa49d8 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8889545bae18b3ff2e0d1bf1bb1cb0c66723c125bc61c3edad8b1ccb8c9f01cd +size 278315 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec5.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7de45943ffc9743fef148d206fe25eb853234052 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Plus Happiness/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aae2b5a48c3179737ca7a9f9b429378e57f44bb2c562dc1e176d059d955f957 +size 257108 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec1.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4317c2394dff2cb1ac6e996c7ee2c1c61ecc9c28 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65bc56b7047f8568884f01c032437e6eef30c6e6f8121f34e0ca6bf05367a3a5 +size 216202 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec2.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6a83e6e76f16cbeaf1828860e147da5fd47a0b82 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df8bacf99bda2680d6b0da847ec261e8ac49b4a091194f54c864dd0d5f23c03 +size 282656 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec3.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..eca7c8aa18faa20ae8f3b11a75c2cbe41cf318d0 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68693fd325ec85f06b6f6fdd650f5404565d82ee49e825bbf2befa5223fa5589 +size 253801 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec4.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..77c450af789ebae2f1c4b8b7308d80496b75b324 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a285664d55fd699160218e4dd696c02661710a6cd5115f17814ad9179dcb58 +size 299162 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec5.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..01a28bb7d7c3c654183d8f369c0f5bc024366246 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~ Sweet Happiness/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1388672cb11d7af5d212be8d4e59cac22986dee53304c094e07bb699d517e390 +size 222882 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec1.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d85684b6bf818455559ca7023368a4e76ac1cd7b --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc592e485f9f20c45f7bfbb1c07255102293ccfcf6bfb9dcf9b8d6f5efcb03bd +size 257871 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec2.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..25abf532a722b75a307a2680e1c7474b88d1ea23 --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da92eb1f9a0f07be91a9dce01cc921a8a8c693abbd347eaee174c0f434bdd6d3 +size 273886 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec3.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb3af92c07eafbb54ae4c5f9590aceeb71f2d4f --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed8db3905d4dfb3d3f37695343f5b157fb44f7a07cc8fe9f4f680837d2197e4 +size 241602 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec4.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..93b576a18a7e39263b4d02b1087f54b01123ef7b --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d9e364188485f2824aacd7b41bed6e88991a4aaa5c21ded03b22bdeff3f297 +size 265345 diff --git a/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec5.png b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6710aecd0b5c72aa211e859fd4e822732c46872d --- /dev/null +++ b/specs/CIRCUS_D.C.5 ~Da Capo 5~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:951e3e3289f447154d493631768ef4e1bbbc8cfffdc2998a7c97c03e6fbb5c1c +size 212036 diff --git a/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec1.png b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1edeb88c6d9f8fc05b8d31e1d0b25c8f4d9cea2d --- /dev/null +++ b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056770a095be190cfb469bfc3c3ce4253f6e87223126dda0bef0bf3a8b81c798 +size 308468 diff --git a/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec2.png b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f0a871d603dc27fd2b7b53f7ed6fb03a01206c12 --- /dev/null +++ b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3586c21c413f1f8fd6853a29f0004554562f4d8dc88e104a6441c567e96a69 +size 225902 diff --git a/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec3.png b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..44d015fb08efda2633a1b953c29da0814d0021d9 --- /dev/null +++ b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a18920a48d0ccbc1965b4168be7c71667e3c62f94c966df42b572c54ed6013b0 +size 275590 diff --git a/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec4.png b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..18faa58d4dfdb6352d9e8f75ca6d772ad5a7b30b --- /dev/null +++ b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd33ae83476bc2766962351b46658ac170316dc89a703e057a6002850d24288 +size 260630 diff --git a/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec5.png b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..13d8b282bfb2ace3211cb19d45cfaab9edbc3c92 --- /dev/null +++ b/specs/CIRCUS_D.C.P.C. ~Da Capo Plus Communication~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2bd3eae1c55d3700f6b035e6ab258794b173bbaf688605ed392af9977ab1f9 +size 322116 diff --git a/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec1.png b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d0229a3589bcee25382bfac82541deed2a22807d --- /dev/null +++ b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573a2ad6a74ac3a4bdc37449ca90b97d61672f7dc40e2d8e28220031aaff0ab4 +size 287829 diff --git a/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec2.png b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..62dd734cfa99fa2d4299ab1c59969ea75c7a3b4c --- /dev/null +++ b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aadc49a078bbcad8a924c26dcae038e03bc1e4b2845d40cb3c8a641e13d583d1 +size 245602 diff --git a/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec3.png b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..845e2ad59b7070fef8b404154cc416f7555018bd --- /dev/null +++ b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5fd5a292b54b8cb87ffd8a729994d9db461de2aaf5107d35f9470c890244bb6 +size 270075 diff --git a/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec4.png b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7263e85b2f8e3511f51cba1c3be7b74642139acc --- /dev/null +++ b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e754e7dc0392e04900f717481d5ff6dd93bee3082131251d1a470bd2e62fec94 +size 282949 diff --git a/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec5.png b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..88e5707de3be51fa821d67904fbc468604b07148 --- /dev/null +++ b/specs/CIRCUS_D.S. i.F. -Dal Segno- in Future/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dba5d5d1b5222a6612c91d70b21ec3432dac6795affeaefaa1f116a5521dd23 +size 284946 diff --git a/specs/CIRCUS_Kotori Love Ex P/spec1.png b/specs/CIRCUS_Kotori Love Ex P/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2efb0f8cc628471e7aae93b91097832838559b10 --- /dev/null +++ b/specs/CIRCUS_Kotori Love Ex P/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a8b246ca9ce2bfa77acc4ace8127a0b813009a0dc8cc287785e2ac1a102724 +size 256080 diff --git a/specs/CIRCUS_Kotori Love Ex P/spec2.png b/specs/CIRCUS_Kotori Love Ex P/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..76f6db39776c5d902f619c68f3539766368b9c22 --- /dev/null +++ b/specs/CIRCUS_Kotori Love Ex P/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a0498904c061ff20e607a9387429e2248b89e01f5ca54535390938b861a80d +size 245702 diff --git a/specs/CIRCUS_Kotori Love Ex P/spec3.png b/specs/CIRCUS_Kotori Love Ex P/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e845882d3aa91894f84b85e9e18b91de55f96368 --- /dev/null +++ b/specs/CIRCUS_Kotori Love Ex P/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbea9a433932b0134881ced36841a0bd01e0c6d37a2f8dccb753bc4c8fef5135 +size 228074 diff --git a/specs/CIRCUS_Kotori Love Ex P/spec4.png b/specs/CIRCUS_Kotori Love Ex P/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fb2d9dfeaf25391a97375fe325f9423926abfddf --- /dev/null +++ b/specs/CIRCUS_Kotori Love Ex P/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb595e50b46695746574af7a75d59f3e8a4c2b3583916596a36e4fca5a1520ba +size 300389 diff --git a/specs/CIRCUS_Kotori Love Ex P/spec5.png b/specs/CIRCUS_Kotori Love Ex P/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..366f0e14d49d5f3c3d2677d78785ac2998551847 --- /dev/null +++ b/specs/CIRCUS_Kotori Love Ex P/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c551dd2577dccf7496f42a31f569f99674c879c1e6c68f5f68643794b79fe0 +size 184020 diff --git a/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec1.png b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e78c1a7067ed77f2f9fa05b314a9810ebe1bda48 --- /dev/null +++ b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9702cc572277900b5c4809a05c5dad5b030f8a865eb05759e40133920a07dc58 +size 307992 diff --git a/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec2.png b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d89b2295b3ecfe551b875d9a17d9208b9a69749 --- /dev/null +++ b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b41b43ed16383e381888f18b27fd7b7a7cd309d680640591628db757694ef4e +size 306601 diff --git a/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec3.png b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..325e275a3f995b1dd79fd4534ddc0d921a0398b6 --- /dev/null +++ b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54b0daab708fff2f71edb12e2e717c0910cc568600267e4c38e06eb9197b933 +size 312847 diff --git a/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec4.png b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..74bbd1c1a0a155a440a0ae1c4a27688117f229b7 --- /dev/null +++ b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd8a099ef615dc0e839461d88951d7572b254795c8ed7d370f4408918874a62 +size 302796 diff --git a/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec5.png b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f7422fe912acc3bfc21660fc0942feab28e89a96 --- /dev/null +++ b/specs/CIRCUS_Royal Garden ~Otome ni Koi Suru Ouji no Gikyoku~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6911eaef5aee92d73d8cb2cf6c48a099e3e77d241a8c2048d905064b2beab2bd +size 303712 diff --git a/specs/CIRCUS_Tenpure!!/spec1.png b/specs/CIRCUS_Tenpure!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..30b79118eb6cf39e12a69a0897def60c9c7779cf --- /dev/null +++ b/specs/CIRCUS_Tenpure!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98468cdb64e4cd20c9cf313688bcb43c7e45ba1c829f2b6587c4e64a866ac6c1 +size 299143 diff --git a/specs/CIRCUS_Tenpure!!/spec2.png b/specs/CIRCUS_Tenpure!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d3677c5f5cab8ac6854a5018e9c6b2ba918561d7 --- /dev/null +++ b/specs/CIRCUS_Tenpure!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ffd2d770b02b80aa2017b83e169f32842d660753cf975dcbaeec0858373356 +size 302017 diff --git a/specs/CIRCUS_Tenpure!!/spec3.png b/specs/CIRCUS_Tenpure!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a7b84021547133d74a619f8e394dec04b350b05 --- /dev/null +++ b/specs/CIRCUS_Tenpure!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d220506013ce67c12c1f8fdd80c6ce09bbcb4452063da9d2430abd1a34ec99b9 +size 234344 diff --git a/specs/CIRCUS_Tenpure!!/spec4.png b/specs/CIRCUS_Tenpure!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2b723ad681b556d0280927b756d0bdffab8081d2 --- /dev/null +++ b/specs/CIRCUS_Tenpure!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d5cd50b97fca8ee0e5d42e19989102c38209aa796243f693f10213aafdd713 +size 306723 diff --git a/specs/CIRCUS_Tenpure!!/spec5.png b/specs/CIRCUS_Tenpure!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..74f807e87ea2811407447f66ac0b81866821fecb --- /dev/null +++ b/specs/CIRCUS_Tenpure!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588ffc71b5dd50fb7f28cdf619af5108d32f8230c778fd98a902249ff21080b3 +size 285505 diff --git a/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec1.png b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1514d8e5a3f94151312de18c29a2639a5e0f9fb6 --- /dev/null +++ b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8094c224d9db9ac15d08156e9bfbb555218f4c93cc6b13f57ede2047ca2ff5 +size 325003 diff --git a/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec2.png b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e52532fc9e794541ae82ed0ab6add331559e039c --- /dev/null +++ b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41354630766a600e71d02f4b230fecc73a35fc27b2123e4d102862db480fec97 +size 295423 diff --git a/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec3.png b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e376f70afea8723deb2db464676b9e6d3ef21d97 --- /dev/null +++ b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee1a786ebaa04649d94c13a7cb2d8ffedfd4fe34a640344120b37d7c6627f79 +size 315922 diff --git a/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec4.png b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f28dd06a41c648a8b3bff13a64e7f2b1ace900e9 --- /dev/null +++ b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2869ca3631794f2de960c4d62341bde0dd74cc79e80cc7230047dc22627591 +size 294886 diff --git a/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec5.png b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..de5fb7fd8a4f80540d9af6445309fe8d1867c31d --- /dev/null +++ b/specs/CLOCKUP_ESEX Shikorsky INTERNEET Security Cloud 2017/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59082359fab69e2185bc2b19ce59f95801f0642f041002234d8868a094bf9eb7 +size 309814 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec1.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..dab30598e6836b4f6c87472bfb8688c9e52cbce8 --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32639d7e2d105693ec22a518cfc33a17f2ddbf6a4576065f8fd2e52499cfed56 +size 321858 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec2.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d7a146b1b4e65815433a1c19c4623ab5f1e1161e --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:320f9963bfa415aacf2bb32ce73bea5192d1ce86cd7a89be19a61fc3dc905cc1 +size 293214 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec3.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..29d766db1ab73ab307f2e5f83e8c5d2e2d747b55 --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3253bac2542c8f4b4d7a063cca90f75510ff899c3ad0bc7169ede95f10be846c +size 300599 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec4.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..141979679b5b6aacbaa9c0fefa14b5ca4231fb04 --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847048eb6702427f49386dcbfdfa59cd9f54d92d0d10820d6c4abde1666edde8 +size 331399 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec5.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..92a7472c2428ff52147c04c8a8613e149ca417e9 --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat- Gaiden/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e23c92ed74ef41d5964b966183c65102d453f7453550b83c6043c67bbd1cd1a +size 318160 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec1.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f37e0357369fe875e2aae04951f0b4d8778bf8ac --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5bf14308a9eec9ba8c57a778502e606c9fb3c2dd735af8d80386782dcb89af5 +size 315057 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec2.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1b984fc071433bfd2dea15779d34957ec3851eb1 --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a68297ff1ad2b60becf9154b8a8ab32c609d9e2adfd396b5e99be6af4fda92 +size 300482 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec3.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..31685db08a2464d22cd6c6e63e4356dee4332775 --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a80484ba7b018b5ec9ce967595a334f14a033d59f299613077403f746eda1e +size 288567 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec4.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..901d4e7dbb1bef03ebcee32703b370cda4d5bf7b --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff8f9a33811de3b886a8dfc09033b1fec7a5d777236a415945874a0d6b90d25 +size 299697 diff --git a/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec5.png b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f77ccad233a8fc1e2ecbe72375522c7530bb9ac9 --- /dev/null +++ b/specs/CLOCKUP_Nemurenu Hitsuji to Kodoku na Ookami -A Tale of Love, and Cutthroat-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bca138e9b9153e97d0fd443c28294511447ccfa7da200c2b42b13963b64a741 +size 307951 diff --git a/specs/CLOCKUP_Ouju no Shima/spec1.png b/specs/CLOCKUP_Ouju no Shima/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f55a5899e94ecd2dc033380330e78feb0405c333 --- /dev/null +++ b/specs/CLOCKUP_Ouju no Shima/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3fecf9ca1153b3444f7713830a3435a926976b2434d74472b0963b1bceff146 +size 181829 diff --git a/specs/CLOCKUP_Ouju no Shima/spec2.png b/specs/CLOCKUP_Ouju no Shima/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b011353bdb38c5eb53ec7797be4ad897e74963b9 --- /dev/null +++ b/specs/CLOCKUP_Ouju no Shima/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205626e94a2e53a2c395acdace7175360e3c0f50602518e5f6eb1a0e83d75365 +size 254803 diff --git a/specs/CLOCKUP_Ouju no Shima/spec3.png b/specs/CLOCKUP_Ouju no Shima/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c8fe1e759329842dfa3a1812c449beba22417513 --- /dev/null +++ b/specs/CLOCKUP_Ouju no Shima/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102030e575087ad8d61703444e2212958137568f4acab89021d6985b58f4fcd5 +size 272933 diff --git a/specs/CLOCKUP_Ouju no Shima/spec4.png b/specs/CLOCKUP_Ouju no Shima/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fc7aae2e3acdde7896da00b4342574bfc91be1a2 --- /dev/null +++ b/specs/CLOCKUP_Ouju no Shima/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b8085d236b0d2d45343a8d0f75f69cd0cd64464247c3bee0bbe33a23bca441 +size 295344 diff --git a/specs/CLOCKUP_Ouju no Shima/spec5.png b/specs/CLOCKUP_Ouju no Shima/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bd9d34955ab0b49b3e7e16e629aeb4499c9e041d --- /dev/null +++ b/specs/CLOCKUP_Ouju no Shima/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bbc2cc95c0151b08a5073d5849b8a0fa7ca7bd570a96640479b91274d79e02 +size 264008 diff --git a/specs/CLOCKUP_SACRIFICE VILLAINS/spec1.png b/specs/CLOCKUP_SACRIFICE VILLAINS/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c737aa44a76771aef766dcad93237223c50cf7 --- /dev/null +++ b/specs/CLOCKUP_SACRIFICE VILLAINS/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55290ea3e2fc386be390697b02c5f4a340c468fe7bd4332cc6ef003dcc280c74 +size 269747 diff --git a/specs/CLOCKUP_SACRIFICE VILLAINS/spec2.png b/specs/CLOCKUP_SACRIFICE VILLAINS/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..77c1398bd705db35bc289d8b9ab1c1b5a6ebf061 --- /dev/null +++ b/specs/CLOCKUP_SACRIFICE VILLAINS/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbbf18f0bbd89634102e89c919c5e10b2eb196ab7a1f113242843cac315ab418 +size 277272 diff --git a/specs/CLOCKUP_SACRIFICE VILLAINS/spec3.png b/specs/CLOCKUP_SACRIFICE VILLAINS/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..02ea3be8bc425f9f73e2d879a081d5e65ef297e7 --- /dev/null +++ b/specs/CLOCKUP_SACRIFICE VILLAINS/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec0f551320221954118d4aa4bc190f40c2871d44b12d890b76187d2eb4ecf45 +size 261226 diff --git a/specs/CLOCKUP_SACRIFICE VILLAINS/spec4.png b/specs/CLOCKUP_SACRIFICE VILLAINS/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..47e09ba0bb083a1fcb20ae53570bd0b48e2424bc --- /dev/null +++ b/specs/CLOCKUP_SACRIFICE VILLAINS/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be0fd10afdc41841c94da91595766ea99a3c3c03dda027ba285f38b18e43c78 +size 259280 diff --git a/specs/CLOCKUP_SACRIFICE VILLAINS/spec5.png b/specs/CLOCKUP_SACRIFICE VILLAINS/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..753ff6e7bf080d8fa468ecac248c22cb7e5a77af --- /dev/null +++ b/specs/CLOCKUP_SACRIFICE VILLAINS/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfb1244fa6e3ac048da2a35791da55699803827e2480f746f846f109604df5f +size 310547 diff --git a/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec1.png b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ce6d98189dc23472b9a19d4f1f5b01cf6215870c --- /dev/null +++ b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0036457b9ac795b2b060f9a27a203cdfdbb976e3c755699f11e00fdb4bb6a7a +size 307281 diff --git a/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec2.png b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..aeaf16986611fb37019b3d44896e1855c0a79770 --- /dev/null +++ b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1720f1127161b967fee96bf95188de6ef85e762a09a03010832a8c1bdde4f9eb +size 262964 diff --git a/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec3.png b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f85f69cf9be5376c5b59d1e4cc44190c00a56625 --- /dev/null +++ b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e52bd5a21ee6047fe2b6da4741a761cea473a34409aff81ae5430fbb17973cd +size 266874 diff --git a/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec4.png b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..94f559d36b198a94d63ccd62e95ef505551df871 --- /dev/null +++ b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9e0fd5e087ca2d4bb1d748784c5cfd84fdd184f6ef9457c5ef8b641a7788d0 +size 208683 diff --git a/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec5.png b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6c5e858a0fd35640a94955e2ff3e4203d0a70413 --- /dev/null +++ b/specs/COSMIC CUTE_Gleam Garden no Shoujo -witch in gleamgarden-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736336894edf5d1e20aa0a9fe2685633bcb1b162b4f443cdf9e07c100d35a020 +size 255389 diff --git a/specs/COSMIC CUTE_Love, Vampire Flowers/spec1.png b/specs/COSMIC CUTE_Love, Vampire Flowers/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..db7da2461037ae9abdc1b96c3b517b9ec048017b --- /dev/null +++ b/specs/COSMIC CUTE_Love, Vampire Flowers/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456f27f328acd66f60478849603493d0c07fa7b772eedb321eb3f1f9ecca1266 +size 300795 diff --git a/specs/COSMIC CUTE_Love, Vampire Flowers/spec2.png b/specs/COSMIC CUTE_Love, Vampire Flowers/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cadb1678f4d3c8ae55183b0bdd1401db9f74f1b9 --- /dev/null +++ b/specs/COSMIC CUTE_Love, Vampire Flowers/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7eff74a0f9f79e61e7442e9e04e36bbbd27e45d0e2e73b86c8096e9a50d28c8 +size 217432 diff --git a/specs/COSMIC CUTE_Love, Vampire Flowers/spec3.png b/specs/COSMIC CUTE_Love, Vampire Flowers/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..453ad09b2ab45665008388512f61ef9a73faeee5 --- /dev/null +++ b/specs/COSMIC CUTE_Love, Vampire Flowers/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128f778e252561ada9cb1549643ee50a45d1dfc0de768032a4622123a3bbff56 +size 301473 diff --git a/specs/COSMIC CUTE_Love, Vampire Flowers/spec4.png b/specs/COSMIC CUTE_Love, Vampire Flowers/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5f36819eea071fc0bdb0a49a5cc8a62d4058902b --- /dev/null +++ b/specs/COSMIC CUTE_Love, Vampire Flowers/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f17c9956cf7ee1c899780a7f22e878d1d3f065acf3f986161ef138bfedea80 +size 285256 diff --git a/specs/COSMIC CUTE_Love, Vampire Flowers/spec5.png b/specs/COSMIC CUTE_Love, Vampire Flowers/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9c4b32fb1e4eab98de7e7d7cf77636203d59ec76 --- /dev/null +++ b/specs/COSMIC CUTE_Love, Vampire Flowers/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4293af804c2b2afc25d3c79492b2d0e09c9b27cbdd461982fb5b022a0c2b7b2 +size 293220 diff --git a/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec1.png b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f8ebe30824b9b7725f0c59a509a6a488780ccb62 --- /dev/null +++ b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e45edb989d936c8fbd9c2eb32734825ccee8bc61eaf15124f71c6862859048 +size 319517 diff --git a/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec2.png b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6198f890ddf58045e7dc5bfd00fe09176da9eaeb --- /dev/null +++ b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3364adc998310141a49cb2392bb31015bf07f7827713f478e838cc3db3083c3 +size 269761 diff --git a/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec3.png b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f23a59b4358785cb4bc5159189c9bb03beca9a --- /dev/null +++ b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb70f9bc0d209472dbd9fbed501dad4b8eb09bb23290455b7f4897656c43f8d7 +size 298157 diff --git a/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec4.png b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..179d94ccf8a6fee39a5a531f67589d495887d0aa --- /dev/null +++ b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e408f0d340152776d6be07d5d41a910b4ccf1cb3a37901711fe2599be348be05 +size 278052 diff --git a/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec5.png b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5dce5b9a113242c20d2cfc1e990f3fd5ee604b22 --- /dev/null +++ b/specs/COSMIC CUTE_Lovesick Puppies -Bokura wa Koi Suru Tame ni Umaretekita-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6117274a02628d704b5f0c44abf78bfd26d01a65f8e4991cc12abaa9b6974d01 +size 305419 diff --git a/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec1.png b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9a21bfd5e8200e7037d19d953273bbd889ef11a7 --- /dev/null +++ b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4237c5a53d186235214fc593517a1aa8aa823a2ab924376fb196e3c0f19dbd2 +size 260583 diff --git a/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec2.png b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd0e6baf7b6b348d51a68da9d5cded5fe84fbb2 --- /dev/null +++ b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20007942b9b8cd05f84e411f94bdbf4ffc80bfc54fcced3ae57ca1dcfd1498b0 +size 286903 diff --git a/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec3.png b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8e91c741a0d24c29ecae5f6e443981f90f35e787 --- /dev/null +++ b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8859bb08f02cb8b10748fd4460253f104ea58ed289d408b9fdcc7a0f686f7832 +size 294633 diff --git a/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec4.png b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fab2f510f533cae7d8707d55edad4c288734a49f --- /dev/null +++ b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adebeb5e1bbdba8806abadff6e0d79937c2655d47f5e32f8735e373c82ce8ffb +size 314155 diff --git a/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec5.png b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e109af7d5e8d17949aaa1fea78fcb420bb4135ef --- /dev/null +++ b/specs/COSMIC CUTE_Sora no Tsukurikata -Under the Same Sky, Over the Rainbow-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49ac45b0f02ec5638e8f7dbe38c30289d3cc1ba0bb1199e32b1c9c35da260be +size 320878 diff --git a/specs/COSMIC CUTE_Unjou no Fairy Tale/spec1.png b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b96f78c63407c346a9804105219ab052597ec7a1 --- /dev/null +++ b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1845cf5f5ad790b98ebdee92f55924d26567c5b6e36b5ba0eacd5cf3a603b379 +size 295993 diff --git a/specs/COSMIC CUTE_Unjou no Fairy Tale/spec2.png b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f2100205fe96d7e99edfe97451223689a3e6911 --- /dev/null +++ b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848ce38004a3decd4f259be0fa838e0216c8cf78c17ccc8b37caeb4961984d80 +size 309300 diff --git a/specs/COSMIC CUTE_Unjou no Fairy Tale/spec3.png b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..217b36a3a41262bdda1ed5ede1842f659fdad126 --- /dev/null +++ b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237cf5859807307515713747a2d2358c1cabd4aca6220a189cc5477888fac986 +size 244090 diff --git a/specs/COSMIC CUTE_Unjou no Fairy Tale/spec4.png b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..af62050d2014ed9dab94575bd06e7d5e9204a683 --- /dev/null +++ b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a56a1c05abbe548bf06f20aeae53e9c20c37e5c9966af7aecea70179a70b9d0 +size 203733 diff --git a/specs/COSMIC CUTE_Unjou no Fairy Tale/spec5.png b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b4eb6b261c7db07f35f95f410bf282a5af8b5a28 --- /dev/null +++ b/specs/COSMIC CUTE_Unjou no Fairy Tale/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe2a2d50174ffc95a95e3a53d3a351d5511059f6e7fff7bd432b987a5d56aca +size 240751 diff --git a/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec1.png b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ac234629db22bb3d49a08f4d80f0990671b7f66f --- /dev/null +++ b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06621c78b28f14b076d3c92b1d9c76811dc8f5a60543029010b0f1c662c89c5b +size 328653 diff --git a/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec2.png b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..05dee4c24307143405fe904f87c2a562b141aae6 --- /dev/null +++ b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147fe8d70e9ce7e30c121e56a077e764f9c2aeeeaee6c48c48526f99c21035e3 +size 351948 diff --git a/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec3.png b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9d38b8cfd3e0d08e8afe5fa3436e0b25b1a4aa94 --- /dev/null +++ b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894211bf415bf479ebcae7082a66b6e52bcee7e381015b3d9878b209dc53cc51 +size 339973 diff --git a/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec4.png b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7b17322d88120443a68b97d78b0c30894f264f66 --- /dev/null +++ b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2331bd848cc0e2eb360e09b2ba3e3cc648dfe0e4f3cbce4c06eb65dfa7ae1d8a +size 343061 diff --git a/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec5.png b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9015ba23e9c0ea06de68c48f5dbffa29d3c693bc --- /dev/null +++ b/specs/CRYSTALiA_Akatsuki Yureru Koi Akari/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c424a4ea36195ddc2a133b1abe59729ee52157431dce58244cc2c13c60119e +size 307840 diff --git a/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec1.png b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..45538a7e244a5a7566298aeb205a325cab4e06e2 --- /dev/null +++ b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741f532ff3f12de84a4124d37364c4988d1ce66361d77ca5a244e0e3149eb417 +size 311044 diff --git a/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec2.png b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3323f4f1d97ad2f897503a75b04fa0cf6d39f37b --- /dev/null +++ b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfc406caee9cdad90b5a9d6b474d607ef2671f9f7d760c4bfaa45a06574abb6 +size 327373 diff --git a/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec3.png b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd02cad7414310be7d72bffdfea97dbe14761e53 --- /dev/null +++ b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff7eaa34aae5f4db13dc7e73d7e3cfc42487378f3f07ac2452ae0c319257430 +size 310970 diff --git a/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec4.png b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d5bcdf9434ad6451c4d1e05715cfdd4d3306c12e --- /dev/null +++ b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16ab8d7781b5c73cf841e9771f9cd17132aa89f7d6f55750cfc34286c69ce4 +size 309960 diff --git a/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec5.png b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ec6c3d5f43f1a98dbd2c6824ae173d1e1baf4271 --- /dev/null +++ b/specs/CRYSTALiA_Asahi to One Room ~Toaru Natsu no Ichinichi~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9cc2027fec99041c299826862e3ee8653c733c061bfbd9ac86cb25b024ce5b1 +size 327647 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec1.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2e904882bdb92b47fd6a746766d02de68e358c4c --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508f24741ce97169500ecafcb8f110c832e8a4e890dd41c82df7135c14eff204 +size 337342 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec2.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7f92f523dc07f1fd20a601ad62f28abbb9425c28 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dde7162f97907064f34a12ef4a18770ea4758e141f6c1e09c96620c3b016e58 +size 298304 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec3.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e090a56ff7a23b70b40a478d61e5f7b8767f9661 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d6d43861a143cd3051915926114f5e2dfe053a5cb3520a0ed75daa3701f346 +size 290673 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec4.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..27c536d62b2496749ef5f3b2fd5f03c07ceec165 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa26dcddfd88f225a4407f6811387588ef256095812809bcd6ccab7fdf82d87 +size 285684 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec5.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..57e6345a12b50e2ffa1348705925a0ee35067809 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha -Tsubaki Renka-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef9a8298687daec2246b59095c78ea08adcaa8f46bea177f6233cec8acd1ef0 +size 319016 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec1.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..97897816c7ce749a1496a040277cc199abb3b849 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10c59009dd169ca71ab8dfcbaab3487d98ec24e36247bca2dbc16a8242cf8a7 +size 327857 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec2.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..dd18cd42be6d28f2aafc6ae6a22055492283a4c9 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902d837d7a19e6338adef87a89cc644d0b3492bd1d1ac8dbbdfaa83a70553773 +size 338472 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec3.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0f45235d3e9c130366ffd7adc83ee36b02627fdf --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd79a369b1554ab79aed73c05324a720ebb245dae2c3b78a0e5c20b80a910568 +size 311123 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec4.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d19705f23cf4be7bb7c57c9fc2d78442993fe4c7 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e214882cd3784c8dbd676145932ce22a1d8a7835f8317517dae8c3425f39838f +size 323939 diff --git a/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec5.png b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c551d415fd30d8e55e6d9b48e4f81a80ff7ebf10 --- /dev/null +++ b/specs/CRYSTALiA_Kizuna Kirameku Koi Iroha/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a86312f3cf6a0f53f18f746e65cd88dd969c51ca9a41b45b72bf1c65748883 +size 338487 diff --git a/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec1.png b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..435142ef20098fb8b6745b9757337c61972f4a14 --- /dev/null +++ b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378c6137648e2e3d7819863d066a2a20d80545a99f20a0de466d4a9eb6a8af6e +size 303614 diff --git a/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec2.png b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..97df7da7119fa8de956a6a5e0a47d2b72114fb3f --- /dev/null +++ b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8cf14de39158389b1a2fe0a5d6d98de9d84e72fbe6dd6f0b7f44978b4455109 +size 320753 diff --git a/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec3.png b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4d8d03abf0089dd8f5e70419a265f6c777ee33ed --- /dev/null +++ b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724e0c27ec1a715935fab23209db9d992ec2288aa16069e7cb5466b6b54288a6 +size 311634 diff --git a/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec4.png b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..78d80b5606eaa91a2359f2aa3719ee22bd751ce5 --- /dev/null +++ b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3164f2422795048f12c59c402f240593fa7411d13e6010ece3a0924e650a7b29 +size 280117 diff --git a/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec5.png b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5dbce27a670a76cd240e51838f7e38eb14e76299 --- /dev/null +++ b/specs/CRYSTALiA_Momiji to One Room ~Toaru Natsu no Ichinichi~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2053136ac40769121c2ccde5d8c0dcf853f5a20094510910f5bd7322b523f332 +size 326779 diff --git a/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec1.png b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8960950e0673f56195552173173ab01841b912f1 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4b921b5119a2cb9be7c547189432abbf00d0ab61725271e55419d9041d710d +size 296107 diff --git a/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec2.png b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..87cfef9026e88a59e28ecdfd696c0a4e2b7793ef --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4ab094402c2dc477b7f497a8d4cb3fe69c861c01b243873d14a3bdfe896692 +size 300333 diff --git a/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec3.png b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0133d7137c7a31b5cfe82ccaf627afd32696bb8 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f67bfcea338a8d3ccf25c677506f4e2fc47069d62aed3b75f4ae82d2856614f +size 318586 diff --git a/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec4.png b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d474faa6ac2be75c2590208815843159ff17a2c4 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5272710daaf18af3d8135858eb39d730ae5364c78fc6af37d714971ea7a1639 +size 316799 diff --git a/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec5.png b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9684933b1aa641efc146ec8065456127db572151 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! -Eternity Blood-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49547da4b7df289ed77f9b0d42fd1f0b9947547b79b14dea5790545d0b92ca38 +size 310655 diff --git a/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec1.png b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..01296a4c09ca465d2f5a3e84413d411dc702fa20 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a120801d0f40cf49a3a4e98b43dfcab471723a5abcc4f389fc9a4e455a48a221 +size 254587 diff --git a/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec2.png b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..107656e7a69677c4e195c9f38d3cd33992ece0b5 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600ebd344d8a9517c1fb5ec655fb7027ad8a402195fe0bd185b50e0af0f67a26 +size 317677 diff --git a/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec3.png b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c778e1881d6484385808b47f2476313c660f99 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4d9b7cf8cbf7bceb96703271e3e79630cbd2c36ee74a8995d00336d9358fb2 +size 285119 diff --git a/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec4.png b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c2282813d6d450ac6d132c78536e08f30855245d --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d33b20a3c9d86f3d725031f30b88f91699641df21034e9b4bfe01e518c150db +size 317620 diff --git a/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec5.png b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..19220faf2ba4917e77b5315bcf88575941ca1c58 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Des no One Operation/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e73c640550038c5302a9799d4fdbf1722f5802dee52f65504041ceb5d58990 +size 324987 diff --git a/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec1.png b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..847f56bff1a1bfb694195159a1c12e6a381e32c7 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fb8cce140fe7431105c62f480388fa7b7da36eaea0c4dd2f7298513f33fb9d +size 320531 diff --git a/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec2.png b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a2767130ba2907cc85ff98a450a3cdc9403d2aba --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52351cff99d37c4124eddc7a6a5aca9857e3768c8680aa7e9f78f71597b08c0 +size 316912 diff --git a/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec3.png b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4b3eb09b6bacadd6a18022266ca5cf295775c036 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0609cf5cf1ae664bbb1dd5c04ad72b13167e99ea4d8460e290110bc98338686c +size 321444 diff --git a/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec4.png b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..012429049b10f1b82f25365dd99cd4b913f7c4de --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c084da4e4c407c100a3046cd52960d22d18625e3790cd64e8e2d6ebc727857 +size 324850 diff --git a/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec5.png b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ac62059ceb9b313868852647f9a81671a2351a4c --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish! SS Rouge no One Operation/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c343b5fce37b1bbb0193078f1cd7d51bf3346293e4eee0af8e29894d370ee53 +size 300714 diff --git a/specs/CRYSTALiA_RED Cherish!/spec1.png b/specs/CRYSTALiA_RED Cherish!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f286e54c7607fb2937b2c08cfc3c8926b12f6ab9 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72d9ac6064227be4b01f17a88f05ee6c5c177ed79f24fc9b4f38fa6871bc85a +size 325065 diff --git a/specs/CRYSTALiA_RED Cherish!/spec2.png b/specs/CRYSTALiA_RED Cherish!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f5adc54f9491aff4a58a38064569e645ba2edf1a --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f0c0669aa9faf7a128435f16802b276c16018af8edb797036f7871802b4d32 +size 330456 diff --git a/specs/CRYSTALiA_RED Cherish!/spec3.png b/specs/CRYSTALiA_RED Cherish!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..23af68ba783607f73077af6bd1166b3d0393ee42 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aec542d1551d091c73af53197b47ed47447824e56e6a4fda1f3ddd8d04353e4 +size 326073 diff --git a/specs/CRYSTALiA_RED Cherish!/spec4.png b/specs/CRYSTALiA_RED Cherish!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b77ced651cf120a4cf676f237e3d622293e9af5a --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2cd8c6ec1a37cda59f992f656d411b3b5261c425a6fd2fde71253344f5e6d8 +size 309925 diff --git a/specs/CRYSTALiA_RED Cherish!/spec5.png b/specs/CRYSTALiA_RED Cherish!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7fd90db424a1c44a32e445e50494806ca69daa98 --- /dev/null +++ b/specs/CRYSTALiA_RED Cherish!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b7f5a44bcc480bd650e7567d79183e745f427d19d16cb398d22980c6567e2 +size 289490 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec1.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7485acc6589b1afc2004047c6f5186c11a244c23 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7a96b9f9efcef15f6f598624ca80f4ce6188090345ddfa0f7ade315d9a739d6 +size 307491 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec2.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8204b355d1470833c6a3446a1f9089af6c99fe9a --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7a1c249969e3687d7f103623e4c5b636c0e3cb2de089b5ecae37b0384fca08 +size 323413 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec3.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..375ab986e4abe6ea4c8d109d0eb6f917b3399622 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3477b087f963598faa961b909b0f78f2a223d5a1114a9e9bcb29db664c57c948 +size 319317 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec4.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5c0f1d674d9e680a4f2dd7ed06e562e27d16f30c --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d86a30e38f0f0a8392b58526b0f8cb1fe662a1c7d7932cdb3397aa800d6e01 +size 312781 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec5.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b79991d7daed7b289fc2939a3a9869ba43eb26e4 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Komari to One Room/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a62b1d1ba7f20091faecce4978e06e39efbc7a64e354d24c58ee20cc9e4dc7 +size 316399 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec1.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3cabcef44ce8993afd1df0eab22840c423316f9b --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9814427ee61288e3901bc49e45687d2d7bd31483c37e8376219eec79678b774e +size 316961 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec2.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d8b312734fac25b4ec7942474146d3fb4800e6aa --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e3e0074678987f1ac0b0dc8d7db50bb10ea0d2aaa46b348232c64c95244c85 +size 306888 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec3.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6de46f4bb5afeb0a3abf9654ed2bacf80561096e --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72533dea9a85aef2a265a4a7dd75cc88db704e0fe952c80d94dc15b07d50b47e +size 323182 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec4.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c23218a33f07de8a73b975aa92ce126238720be8 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43de45c5ff8b53e5bccdca9cf0fe4ce2968eab5ee5d00568c896dea3d50f048 +size 286980 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec5.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..30e610de2903117d618518dd5affa8e546a8626c --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi SS Nadeshiko to One Room/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bda2c30da74d68c6a3351eb7c7006f6e1982944948d0d78b385244e7fffa92 +size 283548 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec1.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a10593846ea0f3c2adf376278ac4e615320b80c5 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3c9f1fe7686f050b79b62cbe4e4014d5be5de9630e1a0be4c1248df7d22c44 +size 302896 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec2.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0246682ed3193dacd59d74f6a65d53510027cda4 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2971a03f579703e8d0e6ac5050546a1127752b34994db01b7d01a16c089df09e +size 314545 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec3.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0966267584601c8e09e465dcd2c8ff5c48576d6b --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f4c3c042a4c42d970e8f34673e72fbdcaeceea0bef60a72f082a599b1ce9df +size 329851 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec4.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..dd8038ea366eaa7feca11afb9769937b2301d627 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab6d485926042b8e53d5974f82ccb8942222ce1e1edb14448270b6a29695c22 +size 326470 diff --git a/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec5.png b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7ad16846c93806f83063022ea60fef92bfb319f1 --- /dev/null +++ b/specs/CRYSTALiA_Setsuna ni Kakeru Koi Hanabi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe386bef7e3de21e4ec35952d17d98b1dd684a355e0bf13cd33f7156dd8d9ba3 +size 320909 diff --git a/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec1.png b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3f753d4b3e48f88a070d469943712f5047e73cf1 --- /dev/null +++ b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8947d13c275c848a7da7b5f62b14126671f541bc761dfb03a0f5301d5fa4bf35 +size 331708 diff --git a/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec2.png b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..46b777388a1f6aeb208adcb83edd2853068f75ba --- /dev/null +++ b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c58d44c85c0e9313eb6b61887526056e137deaf9f867521045e41311021ad86 +size 325378 diff --git a/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec3.png b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..da56c5a9dce45005928169d3d830810298cea276 --- /dev/null +++ b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393ac91433f42e6ec57e4485d77dc2a0ca3fce85f807a129a128176d4d8fe35e +size 334806 diff --git a/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec4.png b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1b136ebe8e0dab4a2dd0430202b60243ae54e94a --- /dev/null +++ b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42da665215dde60852fd7f531812e79eb46172ebfad419ba7e5682a495e7fdf0 +size 322206 diff --git a/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec5.png b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d13f3111e8dbba56e1e3ebb138f4ead2e4260f3d --- /dev/null +++ b/specs/CRYSTALiA_Shion to One Room -Kizuna Kirameku Koi Iroha SS-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda35e184d8f344a8fda2abe3e73fb16e90075295fdf6b707af9055233b09168 +size 324564 diff --git a/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec1.png b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d2375a31374893fc87dc9f9d133cd3ef43f18ce3 --- /dev/null +++ b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86d957772cd1d7a6d49b43cf6fa3156dfc373a39c3ab3a9a13485dbe441a208 +size 344128 diff --git a/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec2.png b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a1f6c4376e5e5fa6beb5d435b5070e8596f6355f --- /dev/null +++ b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc7059a0208ce1b3025d61dc45433f63b5944d030a9363d6a2981f5ee5fa316e +size 346182 diff --git a/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec3.png b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e7c9ba382c1079a6c679caeafca1a76fa84e20bc --- /dev/null +++ b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbf27840d5c2241c18a462c87d3f4dcdaf3a32cecc1fb80082591167904262b +size 350555 diff --git a/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec4.png b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0832098f08b6579179e618d88f86f36cfb1754d3 --- /dev/null +++ b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351fb6fb00d01bdb27b7857f432a072cff2d5b0d084a07b3b423804bf30ad0f1 +size 318095 diff --git a/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec5.png b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d737cf5c3c5d9a0cdf5a910318e20281f1f3a9ed --- /dev/null +++ b/specs/CRYSTALiA_Shiraha Kirameku Koi Shirabe/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ad07cc9567d68a0fc13573ae5f61a27fd0306b6c33559ccc51a78908b1f0a8 +size 348703 diff --git a/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec1.png b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f6aa2202309f0f3bc1b2c608bc96731090916858 --- /dev/null +++ b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee697769c9991a5e318d9ab33257941cffd6a1e461de3406c82d564fa3049b8a +size 325618 diff --git a/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec2.png b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c0227cccfba2ec21514cb7a87ef6d63eb5131d13 --- /dev/null +++ b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9a00420d5cb0fd2e61481a46bbb0dbda3e15f2896382b90ab4e3c0069a2c8d +size 320613 diff --git a/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec3.png b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ddca96b4035c3a80e71e424b857dd290cce349ae --- /dev/null +++ b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f33adef55b3df5a69d2b2c7e5e50d7753fe8e510c802f3030b967e16e864e8 +size 329166 diff --git a/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec4.png b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2b1b1d08d6eff2574414eaeb72a635074e8620b1 --- /dev/null +++ b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0029f028d5e03a9e56fd45eaedf935b16c27d143847181a3bfbb8aecc982f8 +size 326514 diff --git a/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec5.png b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e648e76bd4bcd216a219cae165e2642937ac0f87 --- /dev/null +++ b/specs/CRYSTALiA_Tsubaki to One Room -Kizuna Kirameku Koi Iroha SS-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0964dbe56cd3a4eb46991e8fc563c0e8db84318e209141732f298f326d9a9a93 +size 324440 diff --git a/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec1.png b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..5b8f02b021b3ef8d80914f251020e5e41eeb8370 --- /dev/null +++ b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a1a4d80243e313d99a8c78dbca95cc7d0d9a26dff348ff983d2c6aec64db86 +size 308659 diff --git a/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec2.png b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..476d801d7808e5f8b4b0a4dd6637f8e438cbebed --- /dev/null +++ b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad70ebffd85f680a119dc7e610df77c8736d3048fbcb14a31436d981a23dc4b4 +size 324102 diff --git a/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec3.png b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b2fbf6f16edf45063eeb0914a01e9c08c71f37c9 --- /dev/null +++ b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230f4a606525966290d2e27909d7a39b767cbd86248589d823cd4e1f6c9e8502 +size 263497 diff --git a/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec4.png b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b9a45fe0100f56b12fcdf54db02dec9e222b7c9a --- /dev/null +++ b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdd0283da4ec5302785c6b1626e53ee8de3772e48c166868212a17e4baa44cf +size 320263 diff --git a/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec5.png b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6608cf54d402b91c888c53e15acee4636944df3f --- /dev/null +++ b/specs/CUBE_Kami-sama no You na Kimi e Extended Edition/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae13922bed1e52b7bac4da5de22c543b9c6ee041f8c7e168ea093a785370e94d +size 304465 diff --git a/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec1.png b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d054d76d4223f7596edb97f06118e44c66be7a4d --- /dev/null +++ b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb43e7c9f28641bc16a62cb77990b07c3fc2b9ed9e954fcdb94d3089449a95b +size 277988 diff --git a/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec2.png b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9807ab8942550d566e727fa79393407b97fda999 --- /dev/null +++ b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272b919f1335836b060e554859da9e21c96056800dc51f682835eb96b61aac63 +size 256453 diff --git a/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec3.png b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..14af91741bd8699170eeb5da8db282a7a55b52ba --- /dev/null +++ b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44dc60b87c73c92bcd00c263a4ab2db16f6b687f33f9b25da4d77c931b6c275b +size 325697 diff --git a/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec4.png b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..63e8b063ea56e21de2bac857cc37496966154565 --- /dev/null +++ b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634f55a949221ce310c2039a08a960f8da14ab56389b8f9fa4abb9c0c1c8c04e +size 274789 diff --git a/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec5.png b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1b7060a842588030e62bc6b6a208fa16f1c1e044 --- /dev/null +++ b/specs/CUBE_Koi Suru Kanojo no Bukiyou na Butai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d7f2f8f41c38905c0ae50cae50dabdbe6788a477de8c26a1706e54990edf8b +size 323347 diff --git a/specs/CUBE_Koishi Irodoru Seigiranman/spec1.png b/specs/CUBE_Koishi Irodoru Seigiranman/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b51096752079c4b8818668e4d1d1c627f340423d --- /dev/null +++ b/specs/CUBE_Koishi Irodoru Seigiranman/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e7e56650f44d881d4797d09e113ea30e53cae50631c2380d900d0db6b42aa3 +size 329773 diff --git a/specs/CUBE_Koishi Irodoru Seigiranman/spec2.png b/specs/CUBE_Koishi Irodoru Seigiranman/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a473373f0e9045d1d9982b7d9b8f7cf737c952df --- /dev/null +++ b/specs/CUBE_Koishi Irodoru Seigiranman/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dce46a01e3ded621279eb45951c78458493be2d2c1586728e8c8071429f046d +size 330019 diff --git a/specs/CUBE_Koishi Irodoru Seigiranman/spec3.png b/specs/CUBE_Koishi Irodoru Seigiranman/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d82737b0ea01d1108c5441a358e26e585c976db6 --- /dev/null +++ b/specs/CUBE_Koishi Irodoru Seigiranman/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db75e3290ca44f19804f20434c5de90642e71a2956cfe6422ba69234fb92715 +size 315957 diff --git a/specs/CUBE_Koishi Irodoru Seigiranman/spec4.png b/specs/CUBE_Koishi Irodoru Seigiranman/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d7eaad4f7cd60e2bf270a7b220b314bc86c34f69 --- /dev/null +++ b/specs/CUBE_Koishi Irodoru Seigiranman/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d2443e6114052b209ea175faaa0f0a9fead81fd4ed411eac99feb295b6cd5b +size 342767 diff --git a/specs/CUBE_Koishi Irodoru Seigiranman/spec5.png b/specs/CUBE_Koishi Irodoru Seigiranman/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0ca4b56e6ba68fcca707609cbc18c0f777dbec12 --- /dev/null +++ b/specs/CUBE_Koishi Irodoru Seigiranman/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa266fefd52d2aaae060ac5b0143b888edf9e7382eaf610a46148311cccb1b0f +size 307446 diff --git a/specs/CUBE_Kurano-kunchi no Futago Jijou/spec1.png b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f2fc4671d840cbb9860a7546d6477b5cdc7a08f8 --- /dev/null +++ b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0765729ff12e29902b2bc9db807ec16e08f133ccf7a76592fe67e83d0539cd9f +size 275800 diff --git a/specs/CUBE_Kurano-kunchi no Futago Jijou/spec2.png b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3b9695a906cd2a6db4b9250ade0df0876cf842b3 --- /dev/null +++ b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc01a62b8c9cb08df16e273f642ec1c36e617e3d6ebcb10fbf78810c37d9ec71 +size 270427 diff --git a/specs/CUBE_Kurano-kunchi no Futago Jijou/spec3.png b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..74161a42813453fd9fe184d910d074c1be4c3790 --- /dev/null +++ b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1abcb9699bec919f2fc3927724faa2035810ecfa67bd62d4e719f2752f55e06 +size 312309 diff --git a/specs/CUBE_Kurano-kunchi no Futago Jijou/spec4.png b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9d241ab3f627466c90b59b5e330a4c9f32218ee1 --- /dev/null +++ b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f1ba6ed013afea8da658a18eec294ba33e29a6043580d49080d9645c98622e +size 298655 diff --git a/specs/CUBE_Kurano-kunchi no Futago Jijou/spec5.png b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6441fff988628dcccbeec1029a31a6416727c861 --- /dev/null +++ b/specs/CUBE_Kurano-kunchi no Futago Jijou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72eb3842b6350520b6235764c15ab75c9e118c8cd31a82db7552dc61bbe8423 +size 301817 diff --git a/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec1.png b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c44750498f406d87cc665b94a36751b57479ea6f --- /dev/null +++ b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01edf20514a3a9c99e9a44a24b77dc4eae1c73aa774e1e0acd6bbde146dbf8cc +size 293186 diff --git a/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec2.png b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..69c767b19dd6bac80488ec459993ff7a0c55aac7 --- /dev/null +++ b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb8792447436c5e135d267f38fc4e958695eb923ce292c11b891426bd0c4344 +size 303087 diff --git a/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec3.png b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..106cab0c0eda31645503c728c6ac374de15144d8 --- /dev/null +++ b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc6bde23f1852caa64fb1cc6315d3684f85802d9f74cccf30441354152d0b13 +size 292936 diff --git a/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec4.png b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..664007cd4068f5e23f7ef980b98fe189c363803f --- /dev/null +++ b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6dc8f02901f876480e8da1f1010c40e31c6b6025aa2f73f1ffbe097aa9042c +size 274930 diff --git a/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec5.png b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5be48c75477b3dd93a399ea2dc03b04d8aad9e07 --- /dev/null +++ b/specs/CUBE_Mamiya-kunchi no Itsutsugo Jijou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f1d05e695d18f97dc9a2f990075c5d18910a0adbd7bbe7d301c59dbae587f58 +size 312748 diff --git a/specs/CUBE_Natsu no Owari/spec1.png b/specs/CUBE_Natsu no Owari/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2e2abef3c6ab1e2aef9f2cf0c30dcecac3387147 --- /dev/null +++ b/specs/CUBE_Natsu no Owari/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db7e73e42a9144b75be67b0bd89193f8c1066d5c12ece25e3acb641f1f31776 +size 308378 diff --git a/specs/CUBE_Natsu no Owari/spec2.png b/specs/CUBE_Natsu no Owari/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d94334b1baadd695b3e259b621df217643be884 --- /dev/null +++ b/specs/CUBE_Natsu no Owari/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb104699e44d43570d09b23aef7bc2e2dff89d6702dd441a8f5c7f99e9725bb0 +size 284677 diff --git a/specs/CUBE_Natsu no Owari/spec3.png b/specs/CUBE_Natsu no Owari/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..af14a6b1afbfccb3ba9bfbd8f57b3c7ac8ed9fcf --- /dev/null +++ b/specs/CUBE_Natsu no Owari/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc573fb1553a81007a52d1058b6ae4e8609c2d90938026106552c39d93df1a6f +size 312867 diff --git a/specs/CUBE_Natsu no Owari/spec4.png b/specs/CUBE_Natsu no Owari/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9cfbd3e30fbe7ad688712764021ee2068d84229e --- /dev/null +++ b/specs/CUBE_Natsu no Owari/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c3ffdaaaaa26b7ca9e3bde7545abd64911eefeb5ac3cfacaf2257c2d09c0f6 +size 317376 diff --git a/specs/CUBE_Natsu no Owari/spec5.png b/specs/CUBE_Natsu no Owari/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..51418b026b3eb3a2da95048b0577a82beaa8895b --- /dev/null +++ b/specs/CUBE_Natsu no Owari/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f64638ac9fd04f1a50626b21715b6744a4656370bbc14c9dc5e908141c0d27 +size 321477 diff --git a/specs/CUBE_Neko to Wakai Seyo!/spec1.png b/specs/CUBE_Neko to Wakai Seyo!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..35cde1fad972ec957123e486d12b426d3350d40a --- /dev/null +++ b/specs/CUBE_Neko to Wakai Seyo!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ce98a0d7126e1cd1f61fd8de12ef7ef18f1373a9ebc75679584309fc8d68f0 +size 325599 diff --git a/specs/CUBE_Neko to Wakai Seyo!/spec2.png b/specs/CUBE_Neko to Wakai Seyo!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0f03e731a73934efa910cacb7e6c19b24ffb55 --- /dev/null +++ b/specs/CUBE_Neko to Wakai Seyo!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0492d7c08fdd8c49348c55502b0df799eb69d8bea10f1f9bfc8016d5efd822b5 +size 282327 diff --git a/specs/CUBE_Neko to Wakai Seyo!/spec3.png b/specs/CUBE_Neko to Wakai Seyo!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b397665684934fa769460958c281ca993f649483 --- /dev/null +++ b/specs/CUBE_Neko to Wakai Seyo!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c470319f79427c1cdefae5fbae41c52bc91ccd73f3548bfc7999371c3ff0877 +size 312758 diff --git a/specs/CUBE_Neko to Wakai Seyo!/spec4.png b/specs/CUBE_Neko to Wakai Seyo!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..aca7fc2e2f31a3a7658583efc5b4f1b7755e17be --- /dev/null +++ b/specs/CUBE_Neko to Wakai Seyo!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0af5f098d3908e6ec4acc5d8c71ed9fcf80e7f2ae5e8306466d0c208d9fb29 +size 267620 diff --git a/specs/CUBE_Neko to Wakai Seyo!/spec5.png b/specs/CUBE_Neko to Wakai Seyo!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e88bec7c7784640eda3dec53b1db709b7e3d68 --- /dev/null +++ b/specs/CUBE_Neko to Wakai Seyo!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3ffe5646adaec84959e84b3e868afd83454585adb640629663e747c6563f31 +size 324698 diff --git a/specs/CUBE_Same to Ikiru Nanokakan/spec1.png b/specs/CUBE_Same to Ikiru Nanokakan/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d01f4b15d68734bcdd5aa642621c3b7c06a15a4d --- /dev/null +++ b/specs/CUBE_Same to Ikiru Nanokakan/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630b2878e154a1be315382d173993a6890cde187e13892bf9b1810dab93f06f3 +size 305469 diff --git a/specs/CUBE_Same to Ikiru Nanokakan/spec2.png b/specs/CUBE_Same to Ikiru Nanokakan/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a451c420eaaacdcfbf5e5599a0d6b627575de033 --- /dev/null +++ b/specs/CUBE_Same to Ikiru Nanokakan/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa55c4642365fc55bc2c8c10547d71fa9f5a91b350d1d3f7aafbbcb3fd5b2a85 +size 222104 diff --git a/specs/CUBE_Same to Ikiru Nanokakan/spec3.png b/specs/CUBE_Same to Ikiru Nanokakan/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a75e37abfdc0b3197f7876b07958da9772e70baf --- /dev/null +++ b/specs/CUBE_Same to Ikiru Nanokakan/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea54484eed2fcda42a4d5ce19c0889bf170dc8b5b53ced6eb05c585848c258c +size 287497 diff --git a/specs/CUBE_Same to Ikiru Nanokakan/spec4.png b/specs/CUBE_Same to Ikiru Nanokakan/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d8c08032b2089979ec313aecf97abaa5ac5346f2 --- /dev/null +++ b/specs/CUBE_Same to Ikiru Nanokakan/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d375325cacf7ec2ee2b05aeb10ccc035b5d62d9b743c65d2e63575252ede2b82 +size 320443 diff --git a/specs/CUBE_Same to Ikiru Nanokakan/spec5.png b/specs/CUBE_Same to Ikiru Nanokakan/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e908f3305d318c0ee60ed5d33b5dc9cb04f41615 --- /dev/null +++ b/specs/CUBE_Same to Ikiru Nanokakan/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f07a028e7a84203ce12120a3ecc0185dec2dec2e865fa541a6f73022a15f0496 +size 250391 diff --git a/specs/CUBE_Umi to Yuki no Cyan Blue/spec1.png b/specs/CUBE_Umi to Yuki no Cyan Blue/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..22e2bc83851ee14ccf8c9ef92584f04dc0981001 --- /dev/null +++ b/specs/CUBE_Umi to Yuki no Cyan Blue/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc32f272a56c8f21cac80cc56da38eeca44db1cb4b7a98f41d0240dd796f114 +size 289597 diff --git a/specs/CUBE_Umi to Yuki no Cyan Blue/spec2.png b/specs/CUBE_Umi to Yuki no Cyan Blue/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7e120311f51ca84e2915d6b1d31b0668b0789c20 --- /dev/null +++ b/specs/CUBE_Umi to Yuki no Cyan Blue/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee495e876659a3639f0b10d48fbcc8a69feb2350ca760c3754d86c74ff2a9bb +size 218487 diff --git a/specs/CUBE_Umi to Yuki no Cyan Blue/spec3.png b/specs/CUBE_Umi to Yuki no Cyan Blue/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5015097e98ca192b0af47e1d0ab08cecb76a3a28 --- /dev/null +++ b/specs/CUBE_Umi to Yuki no Cyan Blue/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52f80362746ce1c68c1395039a59eb05501ae4225b7a1e05a435eee5da7fc4a +size 305799 diff --git a/specs/CUBE_Umi to Yuki no Cyan Blue/spec4.png b/specs/CUBE_Umi to Yuki no Cyan Blue/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2195cdb57020a9c6e9bed04ce1f79836c377f983 --- /dev/null +++ b/specs/CUBE_Umi to Yuki no Cyan Blue/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a41c5bf77dd7e38c62a592270fda48b5654318506c611181c0acb975658f88 +size 304709 diff --git a/specs/CUBE_Umi to Yuki no Cyan Blue/spec5.png b/specs/CUBE_Umi to Yuki no Cyan Blue/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..02d93fe5d97dd5a2963cfe9378d9e9204170b565 --- /dev/null +++ b/specs/CUBE_Umi to Yuki no Cyan Blue/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9235abb8981d7541dd0098f4724c5acfb31a8a76e3204eac31e3a2a34469ee8 +size 308986 diff --git a/specs/CUBE_Your Diary + H/spec1.png b/specs/CUBE_Your Diary + H/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..88aaa77fcb1a09852c37f10f032ebb9739e27ee2 --- /dev/null +++ b/specs/CUBE_Your Diary + H/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539b7f326a72a7ad0dceecff90429cb0d5a37579ed95322dbc666c96eb04658f +size 333532 diff --git a/specs/CUBE_Your Diary + H/spec2.png b/specs/CUBE_Your Diary + H/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..887822d1166025a3164bf779decd2a6e8f934ad8 --- /dev/null +++ b/specs/CUBE_Your Diary + H/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832b76c57a756d9a665b2bc0f2bb8ce82043e95f4c7d255907e934104f944305 +size 334399 diff --git a/specs/CUBE_Your Diary + H/spec3.png b/specs/CUBE_Your Diary + H/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3256a40aaa7d36c7bd8a9d57bce1b05f00ce1064 --- /dev/null +++ b/specs/CUBE_Your Diary + H/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb795dfc094562119977bfddbb22a0c75b5f280d5a6528d0bc08a24093593407 +size 302580 diff --git a/specs/CUBE_Your Diary + H/spec4.png b/specs/CUBE_Your Diary + H/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2becbf6adf5626ac9268537140bf9b615030e857 --- /dev/null +++ b/specs/CUBE_Your Diary + H/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d7220d1eeb4774f48b6d1f107807f1ff1dbb048a2fa27fab3117ee9f70c6f2 +size 337464 diff --git a/specs/CUBE_Your Diary + H/spec5.png b/specs/CUBE_Your Diary + H/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8667afd94aa70474b95466c7a6c2398282cff61b --- /dev/null +++ b/specs/CUBE_Your Diary + H/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b926192ad22cfe228f04e16c4a437a36dc0d07f4d1ea25100c660fe3a7ac27 +size 264037 diff --git a/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec1.png b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..08c477335a1b843b79ff0e2dd5280c72478e110c --- /dev/null +++ b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02138fccda5459122a342ec9903574b6033dea599af35018a565e39a9a25a195 +size 267136 diff --git a/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec2.png b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..01679552062040d2f3dd009ed578b58cefe22821 --- /dev/null +++ b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa43848f9d94ae8bd23858f4019a35a160a059c0afe35945b8a46490267ebc2 +size 287029 diff --git a/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec3.png b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..635c85d4a7dea19011818e8bdb55ce43f776a011 --- /dev/null +++ b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613172b5da94a1ae8ff3a47af8c34eef089a5d219dbbb9a99ed7c9586cef1799 +size 310321 diff --git a/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec4.png b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3843877a4a811ebfbc569e004444995e1e2526ce --- /dev/null +++ b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b546f6529bc419c08116175cc1064b195e4739ce7f4df45c162310c58233a43d +size 302307 diff --git a/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec5.png b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..895bf65c91571e1d3e7af76b305e0288f6816a87 --- /dev/null +++ b/specs/CUBE_Yurameku Kokoro ni Michita Sekai de, Kimi no Yume to Yokubou wa Kanau ka/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93c399b7967be86f26e17dd9a8e5af6b5f05df0115c85738b4d3ffb99bb260e9 +size 302157 diff --git a/specs/Cabbage Soft_Amairo Chocolata 2/spec1.png b/specs/Cabbage Soft_Amairo Chocolata 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3963e79d3d3d456f0f35f360d3ec03d59dac1e15 --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5cf7b69f489e6e9d7b8b2c29f61f3c610290569a455335ff8730d4b1bff004d +size 327675 diff --git a/specs/Cabbage Soft_Amairo Chocolata 2/spec2.png b/specs/Cabbage Soft_Amairo Chocolata 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..152356431db99ef2ef9e92b0225f2e076390576f --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d92ba4a1943d55c0c8c35c36095a7b2c9ffbd134db30a98f40863d3e4be2fd +size 325869 diff --git a/specs/Cabbage Soft_Amairo Chocolata 2/spec3.png b/specs/Cabbage Soft_Amairo Chocolata 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7f93f234b43833f579cfa7a66069b939c1c3d388 --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a3d1a0190577ac0a44c2c041f4ac07621a8551f1e35e9e96df08d6b132adc5 +size 320617 diff --git a/specs/Cabbage Soft_Amairo Chocolata 2/spec4.png b/specs/Cabbage Soft_Amairo Chocolata 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..18be1835286908c772354a64088d0284ac23e12d --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f46d7fc6558835b9cea7844a712232fe82024c8446bb089ea576246e80df1b +size 297904 diff --git a/specs/Cabbage Soft_Amairo Chocolata 2/spec5.png b/specs/Cabbage Soft_Amairo Chocolata 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d1c8827a9c04e561c84b05d18cad43018bcb3ad2 --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f280ad69561442175e9e7104be83dfdaae74bccf6ed04de78e70efb4331bf477 +size 287186 diff --git a/specs/Cabbage Soft_Amairo Chocolata 3/spec1.png b/specs/Cabbage Soft_Amairo Chocolata 3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..58cb03e7da2e7952310d3a2570a4f1af4a1a186f --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c03f362da3592a3ff410b0d48e71c75c1b2499462d2f7e4b9b2f71fe8b7004e +size 325213 diff --git a/specs/Cabbage Soft_Amairo Chocolata 3/spec2.png b/specs/Cabbage Soft_Amairo Chocolata 3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ba4fb493508f581c16f3bd964f7b1e20d968752e --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1895d6777f4c868df23bd36c3075635d9a5d7d57e94fdde87169fbaa585b3ef2 +size 292000 diff --git a/specs/Cabbage Soft_Amairo Chocolata 3/spec3.png b/specs/Cabbage Soft_Amairo Chocolata 3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b7427ff3736b1d06c8a01e0ee929fb7651d3eb3f --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fe36709fdf0d27078df133a4496ae60af675c325dffea0e34f4e8eb38f939a +size 323735 diff --git a/specs/Cabbage Soft_Amairo Chocolata 3/spec4.png b/specs/Cabbage Soft_Amairo Chocolata 3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fae530a2222fdba045c91e42e8af706adb2f2aea --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bb888bb4a25d49525d87bca6418db2abe6a10d30f9b5c19a53c2fb86899824 +size 317941 diff --git a/specs/Cabbage Soft_Amairo Chocolata 3/spec5.png b/specs/Cabbage Soft_Amairo Chocolata 3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e3cfe4110013ce4b94cc431acdc2c6634cd123bb --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata 3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4484b5d12714dc4fab4d4d98ee99e05595f599f70b121bb87d674ba5a06e4d0 +size 314746 diff --git a/specs/Cabbage Soft_Amairo Chocolata/spec1.png b/specs/Cabbage Soft_Amairo Chocolata/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..32c65c9f9dd337465d343517289597671658c0e8 --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d07b8192bd35e19763df9f73b3278ce3f02528880323216c1c97e4f03704b8 +size 315284 diff --git a/specs/Cabbage Soft_Amairo Chocolata/spec2.png b/specs/Cabbage Soft_Amairo Chocolata/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b2944e73a56af880a62aff8823750192b9bd42f0 --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2baa495f7519197f4c18ae3d08dd76225228792b2b4b29fafa1028450cf03bac +size 302102 diff --git a/specs/Cabbage Soft_Amairo Chocolata/spec3.png b/specs/Cabbage Soft_Amairo Chocolata/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..19f99ef757371b3dfb1554b43d0bc7115a8f177b --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd3c550310b9e8bedfbbb6ed2d97d21893ce88643e7bcd695bb218756fac9a9 +size 327576 diff --git a/specs/Cabbage Soft_Amairo Chocolata/spec4.png b/specs/Cabbage Soft_Amairo Chocolata/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e60d43a50a7bca3d63945fbb905fd8aab37af9bc --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202de745b065005dd7f1a10f89fb39eacc876936bab0189279787d1d3f2da73a +size 314470 diff --git a/specs/Cabbage Soft_Amairo Chocolata/spec5.png b/specs/Cabbage Soft_Amairo Chocolata/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..42e5a3e53d821695d4f08044802444359b01682b --- /dev/null +++ b/specs/Cabbage Soft_Amairo Chocolata/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c66804f43713971580db5aff8f51c493e5c5addd0f66a4fe4e10756948267ce +size 326830 diff --git a/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec1.png b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..658d7931f5586e774c30f0f81d38e6b02bc90389 --- /dev/null +++ b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d6806b0ae6d6cbf81f5831b24c3ff7dcef79182baf000d21ef127641210765 +size 320828 diff --git a/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec2.png b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..abca5967b7cdd1f716df96a6634d6e5fc9dbed28 --- /dev/null +++ b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ae7299bb1d7e3ec875ab3505176a2a9a262334b113e27cf2f8373c5698900e +size 270513 diff --git a/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec3.png b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..17cec31c889aee00248d0943c6f6d9eb3b2eeb2c --- /dev/null +++ b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d98fca5a572ac41f1dad1a1c4ecc8f2a464d99816269aed7683fcc9524fc200 +size 310130 diff --git a/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec4.png b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5a151e9f1922f2a160180c7ee84fdf9c6d697791 --- /dev/null +++ b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec711abf9a80cebd39f1a4c95434e7eb2e1e6bea1e379aff0a06fd16977be8e +size 283592 diff --git a/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec5.png b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6a142ca9b33947e68725517cc790a1b7a9b590db --- /dev/null +++ b/specs/Cabbage Soft_Amazing Grace -What color is your attribute-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3a3dfc9bcaf1aeb98f29a2774e4d325b6b94b76077c97d993a224b71f232a0 +size 339602 diff --git a/specs/Cabbage Soft_Hoshi Koi Twinkle/spec1.png b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..52608b9daa9f756a7bcd7bd0a28d2e54f9e241d1 --- /dev/null +++ b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad5eba0da87a1f2cf4a72507d16cd46a5e67b001556a0a43bf32a9e4f0be021 +size 206461 diff --git a/specs/Cabbage Soft_Hoshi Koi Twinkle/spec2.png b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..79f69748fb39e4bfe4d74b0dbf0539792e01470d --- /dev/null +++ b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead3a7570d63fbd93c9836c73c98de799124ce781f1d15a7000ee0c56733311f +size 246323 diff --git a/specs/Cabbage Soft_Hoshi Koi Twinkle/spec3.png b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c16da17f55bf88314a15a85cd3122760a2f95792 --- /dev/null +++ b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe78f13115cdc8cffa695cc11f594d05fe5140372bcf88903af063c1f91f466 +size 287458 diff --git a/specs/Cabbage Soft_Hoshi Koi Twinkle/spec4.png b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5fae67e3d55e11eaf3e4834c46ffb7207247ddac --- /dev/null +++ b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:799e11aa8238d7e0b3e49b6d6feed85384521dda916221e79811152aae988388 +size 246410 diff --git a/specs/Cabbage Soft_Hoshi Koi Twinkle/spec5.png b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fd7fcff7c667bb18bec61a996bf6af829f545835 --- /dev/null +++ b/specs/Cabbage Soft_Hoshi Koi Twinkle/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a3ec29389eae2ce898fb4d1b0937d3027044a334509090f9242730ee974eac +size 292050 diff --git a/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec1.png b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..210def9c892350e333ef6bea8bce2d9d39263964 --- /dev/null +++ b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dda125d48ac8140c2a6f00d6101641ad38508c40bf95fd589a34e86c4784bb6 +size 269995 diff --git a/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec2.png b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c0a296a7df1cc6fceaee46cdd446bba8c14f52c1 --- /dev/null +++ b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7491b2d595aa2122033a82a1ebfe267f62b71047505ce6f89e6bd143893fbb1d +size 322289 diff --git a/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec3.png b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..428c72ebf2a9056932b3fb48bedf93e73693df56 --- /dev/null +++ b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0174b0a9be613afce0458bc606b206ab5f9bac1e4e030cc30f80d7287fc569 +size 312871 diff --git a/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec4.png b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ad8db2850ec55eaf604638906635c6252c5bdc9b --- /dev/null +++ b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e37f1ac1bdc6fe61b29c2d965da89b367d459a8004e34725b42de516ed07f7 +size 177167 diff --git a/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec5.png b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7eb978032da8ad4109199824436823a0673a7356 --- /dev/null +++ b/specs/Cabbage Soft_Jewelry Hearts Academia -We will wing wonder world-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc29ef77b463e7d809b9021266257163d765590d828de44ae3d531af907960a +size 306743 diff --git a/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec1.png b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6ad5da0b113fafbbfcf8f76826d8c68c04c50908 --- /dev/null +++ b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc8543bd5ed7348ba5d2e8ee55642910aae52665268ad5f568ba50eeddb63f5 +size 305802 diff --git a/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec2.png b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0c2851e007543a3f2df124f3c38613134a8ed2ec --- /dev/null +++ b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf586d20df058bc6a7de11f3ee49461668e7991249c00f11fd0bedc7521100b +size 304263 diff --git a/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec3.png b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f0f7caecba5bc55b1dae286a0064c4dd69696408 --- /dev/null +++ b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da2cacac9727573c935d7bc0ada0a50bab7747179753896ecc42ace16484b0b +size 303587 diff --git a/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec4.png b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0c0cc1582ab651433bceabbba2a6bdc9f7bf568f --- /dev/null +++ b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a085c6a74aa2a2722310f7fea4acdaedc6c40e8670ba7699b3a3f66ef2e42cd +size 300191 diff --git a/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec5.png b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..acfdc223fc4ac4e68b7c606b22d6efd5dd9b163b --- /dev/null +++ b/specs/Cabbage Soft_Sakura no Kumo Scarlet no Koi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00849b0cc678f57fdedd1ff37cb8c0100370f994e0e8322d75130ec286f709ff +size 292213 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec1.png b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..47cb004e4fe2b4f8f2034dfb259a1e2dae4225a1 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908a4815bcdd73a30e7d646ad36f98ef62a3b89d2cc3a686f45685958a32d262 +size 201888 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec2.png b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..da3b48b496cf8b2cb4d7f6f0afab97ccf66aba35 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ebcd6ca61024001c1a8061a9d1870cfe07a5609091277a8db0ba58977f10d0d +size 256792 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec3.png b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cee165c4ac0acfbc9b28f20c286598c703cf5a90 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d87d84c6da75dd653b1b6cbf39c37b1149ffdc82155d306e5db72ef5c77886c +size 273264 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec4.png b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..21d6f62710beb1dc145d8cc449904b1b2c472848 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7e080bfed19e99982c033fbe0669e080afa679ac863405784cbaaccc30d1d0 +size 240968 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec5.png b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..15619126b36d3588d78a0f3a39c638449f10435b --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Gothloli no Koui/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee1781a9eea63453a3969d3f576d0b1904d3e6cfd4125d44e36862e56f5ae78 +size 270814 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec1.png b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3843fffa54d60e57861305543dadeb58035429fe --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c616ae2d9d496696252cf916fa034db2de8ab719da096d9e488498991192e6e +size 281279 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec2.png b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3f07b3c886dc3742d69fc3d795e926777a3634d4 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74bbfdc30b26c61b2c5b0ae93440cccbd052f113ef8d18bdaaab2ecf345f8cd7 +size 239452 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec3.png b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f74ddfc4ed51710b8a60e0bfebd86f2998114aad --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd6e8d6218199f8505d1e49ff0a0d29dee34f88e96e151d51b0d5cc0081e803 +size 194989 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec4.png b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5b7528432f0810d1d35b2e1746c72db59d5a1747 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da15bbe4ae9323d52cc64b9cbf78efc003df1e7a4e9aa6162aff4850d443189d +size 250596 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec5.png b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c92ae7043e1b2e979f5cef6fcae6e6ece4e7f55b --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Koakuma na Kaichou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75bcaa927cc76cd03ff0f534bec6f6dc0380516e5252700305878e3538c307c8 +size 255125 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec1.png b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4fe14f1df19a8fbdbeae0578c4901cc14316d100 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0282a5e9f62c4ab11741c012a5883cf395c949e9a1298c29a29d3de4c441d869 +size 254926 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec2.png b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..936930bd693e65519da26e21327b21985ff3256e --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0710ef3a1811a3743e6c0c635af68114f0543725a2ab38f367d2212d872f20f0 +size 221130 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec3.png b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..62b51f978f090aa65c990d9797c0b90333d669fe --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6df1f63ce009187d887713b810fce0afaa61eb35e845aba5949489bc451c75b +size 256139 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec4.png b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..62768e3ab1d83d36e8b7181f9ba7bbf8251b5c84 --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df72ab4ea56a168f5b51b45b6a10998918e89978b93d426d935b2b66273cafd +size 200756 diff --git a/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec5.png b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..40dfc1ce7d27308b72be4cc8c08c4b24a0e88e7a --- /dev/null +++ b/specs/Citrus_Hokenshitsu no Sensei to Shabondama Chuudoku no Joshu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7122a77ef3fa1cbe3b832a062be6e2c82556c478d57b2cd523f62d09d88ccce8 +size 264416 diff --git a/specs/Clochette_Amatsu Misora ni!/spec1.png b/specs/Clochette_Amatsu Misora ni!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..87928d2f19d2055e4ae703020a3cb204873f79f3 --- /dev/null +++ b/specs/Clochette_Amatsu Misora ni!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3ebdc20376de334cacdd6038b1c827952230b47bd86d890da1c595e0368016 +size 228221 diff --git a/specs/Clochette_Amatsu Misora ni!/spec2.png b/specs/Clochette_Amatsu Misora ni!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..42cb1cff7b5a590ca9c2eab8651f94e881a671a3 --- /dev/null +++ b/specs/Clochette_Amatsu Misora ni!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251b5226b0de378ca423ac8399dd2afc45318f0fd8a9f01abcbf60ef31f93e19 +size 313734 diff --git a/specs/Clochette_Amatsu Misora ni!/spec3.png b/specs/Clochette_Amatsu Misora ni!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..68dca4bc2637f8584c8a82cf7763f2792270326b --- /dev/null +++ b/specs/Clochette_Amatsu Misora ni!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d5b50e0f51fb795882648f836a1e2165d29cceaf1a084afa47ab5d7acd1ec8 +size 236144 diff --git a/specs/Clochette_Amatsu Misora ni!/spec4.png b/specs/Clochette_Amatsu Misora ni!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..96d728183f4c9376d2be0041eb396c7556800871 --- /dev/null +++ b/specs/Clochette_Amatsu Misora ni!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ff54e636c2361498cdd0f152c6a9a4911ed5e4f457c17db3985a177d07b33f +size 304430 diff --git a/specs/Clochette_Amatsu Misora ni!/spec5.png b/specs/Clochette_Amatsu Misora ni!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a74de45f2adfb2e2b37cf9dd6d5bf4129c689a9d --- /dev/null +++ b/specs/Clochette_Amatsu Misora ni!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e39ab1205e2a369cf28efe5260b1fb299d40c6a53e1337e01e8a6fe10226d6 +size 253194 diff --git a/specs/Clochette_Haruru Minamo ni!/spec1.png b/specs/Clochette_Haruru Minamo ni!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b056f0c82c45edf63f3f1d0b2de5a87affb3074b --- /dev/null +++ b/specs/Clochette_Haruru Minamo ni!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de43252f53209e720dc2766e123e672968a67568fbff5fa017a1561b2c8acba9 +size 330086 diff --git a/specs/Clochette_Haruru Minamo ni!/spec2.png b/specs/Clochette_Haruru Minamo ni!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..03da0acb48ee42f8467db6b6c75e24f62b479809 --- /dev/null +++ b/specs/Clochette_Haruru Minamo ni!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b954293c43f1796099ccc061c7d39859fbf42d993f6897d7a1aefcbdff114cc +size 322029 diff --git a/specs/Clochette_Haruru Minamo ni!/spec3.png b/specs/Clochette_Haruru Minamo ni!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e97612f815d119a6bd2d53384a450f950a19431f --- /dev/null +++ b/specs/Clochette_Haruru Minamo ni!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0cc4097d81eeb0935841e181828b66f7006fa37ad256ae4808b4750830a8fb5 +size 296185 diff --git a/specs/Clochette_Haruru Minamo ni!/spec4.png b/specs/Clochette_Haruru Minamo ni!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..70cb81c682324d5fea834b0aa77bf198918621f9 --- /dev/null +++ b/specs/Clochette_Haruru Minamo ni!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761f8ddbf3071061bb4d5a00d56137a116918f9479cc4a4fa5d3cd0ab1145a1f +size 329230 diff --git a/specs/Clochette_Haruru Minamo ni!/spec5.png b/specs/Clochette_Haruru Minamo ni!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5d39dba4674bcb551fb6756d1e22e4072f3dd58e --- /dev/null +++ b/specs/Clochette_Haruru Minamo ni!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a771d42a4e96f02922e91c3b72ef8084950ecd1cefcef6dcfddf92966a9b004f +size 326647 diff --git "a/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec1.png" "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..72f44f0cd77889357f84951d77d73fa5530d1715 --- /dev/null +++ "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e4bd7c02fb06dacda5a63c92d20e3055f88056515d4f1aebee39c1157b0966 +size 290884 diff --git "a/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec2.png" "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b55fe8b9744447a6471197d2391e7f778fbcf26c --- /dev/null +++ "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4497bc3126b068a2c91cfdf3f06a24469de5a364fe37a3c9227ae9eee2b0b00 +size 301864 diff --git "a/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec3.png" "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..fda21c90eb5d244957d9607ca3a952ec6e42d9de --- /dev/null +++ "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e6b1cdc9ab94b8760e4c61d732ad3241a059e1b34c6539ad6ccc7b5f972294 +size 253042 diff --git "a/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec4.png" "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..b9de40fffee660cc4766db046c3fd3ddbbaa052f --- /dev/null +++ "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da1b731f80762c1328a40f97bcf5efd11746f6dd5e89fabdf2a64c5da6a4d686 +size 302202 diff --git "a/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec5.png" "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..5137d9b636321991ee4e270757244c6ff370b019 --- /dev/null +++ "b/specs/Clochette_Kamikaze \342\230\206 Explorer!/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e97249fd6f9370bc56d502fd4f9aa05f1e8dd9c566fe10236e6d090f369b50 +size 292969 diff --git a/specs/Clochette_Koko kara Natsu no Innocence!/spec1.png b/specs/Clochette_Koko kara Natsu no Innocence!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c81755cf9c832faf069d2e185b2c2316617a071f --- /dev/null +++ b/specs/Clochette_Koko kara Natsu no Innocence!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d8457a6ac1f1b02eb1548f1b82511953c77148f52cfeda4efe666f601df0ab +size 288045 diff --git a/specs/Clochette_Koko kara Natsu no Innocence!/spec2.png b/specs/Clochette_Koko kara Natsu no Innocence!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d8a133eaccf106cd88334b4bdabb4d416f0961 --- /dev/null +++ b/specs/Clochette_Koko kara Natsu no Innocence!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7923dffc9802fd42b286ff787b7b4333354432f4207808dd977a21ffff56b092 +size 298232 diff --git a/specs/Clochette_Koko kara Natsu no Innocence!/spec3.png b/specs/Clochette_Koko kara Natsu no Innocence!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..16dbe3895fc658ec01e4367024adc2a91e8d015c --- /dev/null +++ b/specs/Clochette_Koko kara Natsu no Innocence!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63890062e007609f5ae6d0d77102f06bf58ab2994b81fade910591054a7fa17a +size 308116 diff --git a/specs/Clochette_Koko kara Natsu no Innocence!/spec4.png b/specs/Clochette_Koko kara Natsu no Innocence!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..aac41b5b8c9d868141cdd244f8863cc6c410eb45 --- /dev/null +++ b/specs/Clochette_Koko kara Natsu no Innocence!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d62d554c41b91dd69a02688e3028d119dfa3f952a046780b8e7729483289c25 +size 316063 diff --git a/specs/Clochette_Koko kara Natsu no Innocence!/spec5.png b/specs/Clochette_Koko kara Natsu no Innocence!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..aec34efe57d0e441e80b088c8ceca487a6ea8fa8 --- /dev/null +++ b/specs/Clochette_Koko kara Natsu no Innocence!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389fd8facecd306b125ecae5ff4b7f17134b4ea62d03926bf3910535dbf474bb +size 289770 diff --git a/specs/Clochette_Kokorone=Pendulum!/spec1.png b/specs/Clochette_Kokorone=Pendulum!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d216709651672bfe301f3526622c5a2592fe92ed --- /dev/null +++ b/specs/Clochette_Kokorone=Pendulum!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:750d4d3d79011e7d6ffa60825a42a4e168a44d70fb332d220a8d7d5a45273555 +size 263915 diff --git a/specs/Clochette_Kokorone=Pendulum!/spec2.png b/specs/Clochette_Kokorone=Pendulum!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..263bc958df265aada23ceed163b6317b53ca27a2 --- /dev/null +++ b/specs/Clochette_Kokorone=Pendulum!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8cd438ca238dd5d1d9ba5ade0a1ead8f9fcc2c68f7dd9fd8552fe10a8e58284 +size 333508 diff --git a/specs/Clochette_Kokorone=Pendulum!/spec3.png b/specs/Clochette_Kokorone=Pendulum!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7510cc6f32aff43f5100779e4109ed7548b89285 --- /dev/null +++ b/specs/Clochette_Kokorone=Pendulum!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:226af87ca51378c75a1f16e043c4478be84520fd5d871deaa317327460aeb61f +size 328280 diff --git a/specs/Clochette_Kokorone=Pendulum!/spec4.png b/specs/Clochette_Kokorone=Pendulum!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..71145962688ce51c00ff440d76d1ca89959b735a --- /dev/null +++ b/specs/Clochette_Kokorone=Pendulum!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f838139671fc612a84a2e76939386e9a8f8bc527121dc275261affeb0acfe2 +size 301199 diff --git a/specs/Clochette_Kokorone=Pendulum!/spec5.png b/specs/Clochette_Kokorone=Pendulum!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9c0ff1d2486c278a79fed4556bb6d6c741c9605d --- /dev/null +++ b/specs/Clochette_Kokorone=Pendulum!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b558cfea3db97c26e86d3f3ebf21bf47b3f697330c69c0a7ea035f8c1b21bf2 +size 334234 diff --git "a/specs/Clochette_Prism \342\227\207 Recollection!/spec1.png" "b/specs/Clochette_Prism \342\227\207 Recollection!/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..79f8af3ac92d78f046b5aba689cee2bde56abb59 --- /dev/null +++ "b/specs/Clochette_Prism \342\227\207 Recollection!/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690af395c674e41b31ecaf5cd31ea2ccd9aab2c2884115647494cd71f45eb239 +size 319572 diff --git "a/specs/Clochette_Prism \342\227\207 Recollection!/spec2.png" "b/specs/Clochette_Prism \342\227\207 Recollection!/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..07a7133cc130fd636f4066c4f9627731a7d6d7dd --- /dev/null +++ "b/specs/Clochette_Prism \342\227\207 Recollection!/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a3d33ad9961a8556000a502a0ff234772960750f1429b35e1123ce912e49595 +size 328567 diff --git "a/specs/Clochette_Prism \342\227\207 Recollection!/spec3.png" "b/specs/Clochette_Prism \342\227\207 Recollection!/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..fc4373ba28ffc19d6b793b93c6841549d6ff3d38 --- /dev/null +++ "b/specs/Clochette_Prism \342\227\207 Recollection!/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38854c97672f40ee9d4a0fc29d14897b3141e5cc39f8216c1727ab35bbbd7c3 +size 310826 diff --git "a/specs/Clochette_Prism \342\227\207 Recollection!/spec4.png" "b/specs/Clochette_Prism \342\227\207 Recollection!/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..9fba83064950cd6f6100157f7eabd6d375223cfd --- /dev/null +++ "b/specs/Clochette_Prism \342\227\207 Recollection!/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0be8efe834af3559e4a8e147bee50e70d34412b8c608324b45069726873749 +size 308499 diff --git "a/specs/Clochette_Prism \342\227\207 Recollection!/spec5.png" "b/specs/Clochette_Prism \342\227\207 Recollection!/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..d10283f29c5ef9b95d7026a9b60a016e65edd090 --- /dev/null +++ "b/specs/Clochette_Prism \342\227\207 Recollection!/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883b7757c1bd2a89185c2e5dda8cd2b08495f26833095ab21fe6701aa75bf581 +size 288578 diff --git "a/specs/Clochette_Sakigake \342\207\222 Generation!/spec1.png" "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..e56ae855816b4ca72233839b04e3f65b86187d97 --- /dev/null +++ "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de3e10e146f4b232b50b503c1766ca737efd9084ac4ae104a394a1390de28ef +size 303060 diff --git "a/specs/Clochette_Sakigake \342\207\222 Generation!/spec2.png" "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..bcbe8421dcdfd2c78383f7a6999fc59d5448c8ff --- /dev/null +++ "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b714589884bd98f55b9616c52dedadb41226d030d80e7e49d6e0ec9b3798e3a +size 312896 diff --git "a/specs/Clochette_Sakigake \342\207\222 Generation!/spec3.png" "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..b7c8cd50833b5997e527c92a3dd8ef533bd4f082 --- /dev/null +++ "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997e0d4387d1275caf6a3cde3d2ebb40900dd6ed641be8655ebcb538284ee211 +size 278220 diff --git "a/specs/Clochette_Sakigake \342\207\222 Generation!/spec4.png" "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..020d1eb2fe851d355981aee7de947810242a19ba --- /dev/null +++ "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a97da33ff7ecfbae787bda6ea8df4c67a453f2509dd54dbbf883ca18b1a13e +size 319203 diff --git "a/specs/Clochette_Sakigake \342\207\222 Generation!/spec5.png" "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..c0cac51f98d884b7d70427e876149e1c069ab666 --- /dev/null +++ "b/specs/Clochette_Sakigake \342\207\222 Generation!/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7936831c8201ea04e177b02abfdba1838bb00542990b236e61cbcae791edc1a0 +size 323915 diff --git a/specs/Cuteuphoria_Dora-ConCafe/spec1.png b/specs/Cuteuphoria_Dora-ConCafe/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e5c9678190ffe61548089302512d522d0696d55a --- /dev/null +++ b/specs/Cuteuphoria_Dora-ConCafe/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7682cf301c0934b3832a24e0e240cf7862a4d934077b0443fcc9c8ee90685a5 +size 342069 diff --git a/specs/Cuteuphoria_Dora-ConCafe/spec2.png b/specs/Cuteuphoria_Dora-ConCafe/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..aa65536693e95b31196d8bb0fbda008319e4d591 --- /dev/null +++ b/specs/Cuteuphoria_Dora-ConCafe/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d853c0b179daccf11b4434f64ee0a28bf79c8219427f3c5eca3f18d77890c156 +size 301816 diff --git a/specs/Cuteuphoria_Dora-ConCafe/spec3.png b/specs/Cuteuphoria_Dora-ConCafe/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..518ab7832b2c8a879ff070506b473c42ae00b11b --- /dev/null +++ b/specs/Cuteuphoria_Dora-ConCafe/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00b2786dc2ce64241304f3696657df59f0adc45243380ae56eedbc837526368 +size 250927 diff --git a/specs/Cuteuphoria_Dora-ConCafe/spec4.png b/specs/Cuteuphoria_Dora-ConCafe/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b305e7e6493a5ec9995a7da313d9627c39c11941 --- /dev/null +++ b/specs/Cuteuphoria_Dora-ConCafe/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2c80d99c66604432dbbf0f86bc9f684e90a3148cf1423bcaa2bd2dfde2137c +size 332324 diff --git a/specs/Cuteuphoria_Dora-ConCafe/spec5.png b/specs/Cuteuphoria_Dora-ConCafe/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b323d4a7c6dfd92f15f7bb9c3cf78863de8eda4e --- /dev/null +++ b/specs/Cuteuphoria_Dora-ConCafe/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6d7b926795a02980af0e2b83820796edcc0145afa60d3f513fe083ceeacfdd +size 233626 diff --git a/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec1.png b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..65235998ff841e2ae303b7740e086f0f1f51bcb2 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed0351800f11bf64ec62f0a674811e5e5cd9d585031948774c67ae648050cef +size 291217 diff --git a/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec2.png b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8ffb7b47e9105c7ea32d1be0c2a0c48885c6961f --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01a4f21939a1417249a4c5b7e04cde15ab89f573b0a479029c85eaba8e717a5 +size 304102 diff --git a/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec3.png b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e657d903f8405c45b3924ad9cd92e9bc63069e86 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88340c387f5a08ae32b8ebf2d0f7a1c26cf4babf205f5c2895cdf063d62e8054 +size 265682 diff --git a/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec4.png b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..06784e2723579031c7d72cbb4d6095a91a76fabe --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85bb561300e0591046bd316e193da4f87d46be76cab0158f8028cdff0bd4f8ab +size 287543 diff --git a/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec5.png b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c4ed869ab6f00f323c39715d6e060acebe8d9df3 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Idol Konton Bishoujo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21fc5f64d68cd4fc6c106135be15c132041209c4d8546a59390b749d5b9dde4 +size 302873 diff --git a/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec1.png b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..01e8223ac82d0af3217328afb958f402d60cd68f --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ceb2df7015d1330ac18a6b29ad5ef9ec0133ae239793a40fc8bd07a1f2b5e9 +size 269001 diff --git a/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec2.png b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..87eb040ccdecc40441ddc752bd72defaf51029ac --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c222852c4e5bd9d6f849868f196132b785b4ee0b254ef40b0e5912a4a24161 +size 276086 diff --git a/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec3.png b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c43ef2ea7b5311a346857d50fb16b36618606520 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e30686312711d5d2433da87b53a2715e3ccbe1fb1c4bbdfaecd020d4a5fe6e +size 314902 diff --git a/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec4.png b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c2e01c3622d4b380c63027d1f7f52c612533aa45 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a72c3ac3059f486bd0d67ea7157818916a1d8f4f0b5350026d6eff56a5469e5 +size 308582 diff --git a/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec5.png b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..abd7e8cba96c4b6e9bb09a084739a838f7e4a5b1 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Chaos Labyrinth/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b30ad0bd7a904a95b91ab803588771ad08fa1a15f1062a2fba36cff80f627b9 +size 298631 diff --git a/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec1.png b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e05c4a99d9b94ee9a73274e47109e29eeb69789 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b081ab220ef0dabd59646e709f02bc50832ec189303e82008903958a8ecbe09d +size 288701 diff --git a/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec2.png b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..15dda4565c8a9f7ee7a9a460443a9bf8ecd59f76 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef98f84ba90e78bb3bf5e18f119ddf2af14574432b13d019ace025f660b15de +size 353319 diff --git a/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec3.png b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..43bf6514bd35230be51f1533ce9a5507ac5e3951 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2b6fa3729ea4d5cc8cb76a377104b1cb1de2cbd1e7c515a68cc1d67ed28092 +size 340535 diff --git a/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec4.png b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fb75c8677b89e340854220675a3f5ce8a36fd5c6 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e300019b2b8b20c4d9ab9e8a79b8a5e29f131f6d35c841ca65fe2b3539b7cc5 +size 311279 diff --git a/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec5.png b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1b33ce2aeb6d423e835266b3f492b3f4b9ce1723 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Hanasaku Otome to Koi no Grimoire ~Guild no Nai Mura ni Guild o Tsukurou!~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bed4052e06a290fad576e12be128c08c875cc79a349353921e6c4f5fe4df82b +size 292638 diff --git a/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec1.png b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4d705fcc468c814877015665d0a23a00e68fc47d --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed93bf04e31f77d014721d918318cad4b20d3df56ce0f7589086e5521b97c10d +size 326710 diff --git a/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec2.png b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f22d19f2bb56217bc7b9ae5cba88a5bb130b5a78 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f76a58d4b864c86a5138c67f3148a8e453b542399b27a535fcf21f82c8f172f +size 280517 diff --git a/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec3.png b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d4e875e4265b8ea6c6771bc3b522df7c3742d7e1 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78b14e6776b4c27a761af358926c2538692dba0090ea9b6daeb36970c26e008 +size 335928 diff --git a/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec4.png b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4f1fe95d511faec09d5007c6b2bb86a0f04f2542 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4d15cee88c8964bec7a6679c3419452a8714164e047419f94aabb7dfeff67a +size 279887 diff --git a/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec5.png b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..36b654a06049374cf4e98c47324fc21a4309c039 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Douchuuki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2bdb07fc828e8f5decc606c58765a53952b770a740ccd5aaf2d26d35d6badf +size 342954 diff --git a/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec1.png b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..20a8849ed3634be639225e7ea6f2376f04934c91 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aee9c4997aeeb4181c9cb211d85f504f367a32c8a1a0614cf0bd7bae74c5df66 +size 305677 diff --git a/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec2.png b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e1569dbfada63b2e1a577d4844ce7ca3c9b171b5 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84666581fcef5e4e7b658d872bb2f6d8891a9123d9a81c3231e101f24fe56b6f +size 295261 diff --git a/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec3.png b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2d700a01fa34475d3098fd404abda13971d56b86 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81273bf4d5da1c60a3a9becf9b689bc48062d8eb73eb87427f5a4b209b7bbca0 +size 341200 diff --git a/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec4.png b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c05789b51cbd1219ab8fc180037c395dd3a714af --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d358a8c56482137b18adaba5438fd6dd6b734b885d50cdb06b0d67d02843c3 +size 343686 diff --git a/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec5.png b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4578467f0e7760cb9c1f72d2551ef47ec8054b92 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gakuen Ki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e110f95bc4f050d7a52bd500bcd5e8bcad28ae32bcb59c13ba25a5d409135d +size 274380 diff --git a/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec1.png b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e7fdbf78fd64f1ff3a848b447901632bce92c0c5 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159b5666723b17682111e9889d35d49666b95ab8d67782a2090c78b973c40f22 +size 338976 diff --git a/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec2.png b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c732b8f17236ed42ad1e5e740b49ac7ee6c18f --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd8a81455179ebb54d8a5346102e4ee803ba29c04907896d776fb364a5be9e2 +size 317839 diff --git a/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec3.png b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..583df34f9a8072bf517616e638370574a2133c3a --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278c3ac64a12d476cc0735d70befca8aeb851e7592a3208dbece2c9a5e80ff77 +size 343232 diff --git a/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec4.png b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..67795da1f495d6ac0830db2a7b9a565b1ef75ad8 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae3d842da6e1bcdc6cd0747745d9a9455e22b2f2f1ded1eda96ff104ea92299 +size 233459 diff --git a/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec5.png b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..651d1f21dd6c84ac68d54a8d62ae647d35a3e586 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Gensoutan ~Ayakashi no Hime~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9095ab324179ac86191ffa736f06555b7859a9da5b728efb8efbefa40ff19578 +size 272451 diff --git a/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec1.png b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..13ec5d7432cac9c307b08dfdc3c6db1c58a05df9 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb4e00afdf50574390240f62651367cf823208bcd4b34485c313609f0a47b3a +size 309269 diff --git a/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec2.png b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..98c8d9fccd9d5aef7f7a49fb942ffc165bc7adff --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c56be6eadb1f78fe791f8fbf5794019b0cdecb67f6218f1d5c9df5fbf87d98dd +size 305841 diff --git a/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec3.png b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..37ab5956847e4d15be9818a157dc1fc359a0b0bb --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1670878cc34ba22ac4ba5cc8af82a82c7ce7bd8fc18705789e0d026a02bbd57 +size 291935 diff --git a/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec4.png b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..20afadb124e5948793b1ccd5c2fbc13bd27691d9 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4c30bebf27aef48af4194ed78e11e63df3d47f294fb8dbefffdd9453d81c6a +size 320080 diff --git a/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec5.png b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..07db46c94a5d4b222e0c1edd251f255acd89e5e5 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kagura Soushunfu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7159bd232de88217870b6a3832651780fb07da866860b2c258b7938a535c484b +size 272231 diff --git a/specs/Debo no Su Seisakusho_Kurenai Kagura/spec1.png b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fa433c7dfd87c10a70d6605d4d02f6dd73fa8ee0 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd975254731e186c01cba789feb1d9985be6f8716a81a8cf4fe8ca50f2c1732 +size 318709 diff --git a/specs/Debo no Su Seisakusho_Kurenai Kagura/spec2.png b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..19f35620ae739c3596c0b866ee1ec392c4033f58 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d99ea193cc912db303883bbab94a286841d9ee30e510b3b3aa8b56822238926 +size 312728 diff --git a/specs/Debo no Su Seisakusho_Kurenai Kagura/spec3.png b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0db46fe86dd300f5baae4ef49268e21f56187624 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a336235db0d086c16278291d6d528531f7fa6ff169a68b8f34099fbf5d7c5ca +size 304343 diff --git a/specs/Debo no Su Seisakusho_Kurenai Kagura/spec4.png b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c372ce77103208f5d262a272062ccbf7b626b7bb --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc4ca72a07a03409a4522fa7a86f222cc48dcf13254af342dd3c77caf31ec38 +size 285543 diff --git a/specs/Debo no Su Seisakusho_Kurenai Kagura/spec5.png b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..25fdacc886c9473bba5c411dc57abead26d8fdb4 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Kurenai Kagura/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d865789ff5f2ff140006f6fc9d5b6fd3dbd54e369eb3409805cab52e870b3bb0 +size 305405 diff --git a/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec1.png b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..058fe5bcd0bf82c3259158bd210c6ca538f46ba7 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a51092a8f0c501bc96b44b971eb5a03ae0e043714bd6bad25f3b2bd424185b +size 301748 diff --git a/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec2.png b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9d640f7b4e6762197e2b906f5275be4e8be2c0d0 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf4eda53f44eb6ea7c2d69412bf1518da124b0758d08cf9fb93c0a2812c8fcc +size 337185 diff --git a/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec3.png b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..41945944f97350aeb0dae7eeeec909e3a1e66368 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1e7be12c97441302840113191979feb1f588ad0a7e99cadb2c393920018c6c +size 286833 diff --git a/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec4.png b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1bc8321a8e55cf8905c93998c78c2e75158e70af --- /dev/null +++ b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f84dc60d6529dff844adf3db5ab027c9963777b77782e6212a21cf1b9e0c482a +size 275227 diff --git a/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec5.png b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..12adff4f47b2b13d216807cd13145e7081a3743c --- /dev/null +++ b/specs/Debo no Su Seisakusho_Sora o Aogite Kumo Takaku Plus/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:577fa0d5db9dbaa7c508b1974bd9be054f9a8f94f30f9907cb7d89b933fbf63f +size 335604 diff --git a/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec1.png b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e70d748283ba6bfbacae8645caf6b086210e6d74 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac96891f0255650bb73cf18828dd13a1d96c462481d129b5164904d7459ff0dd +size 303565 diff --git a/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec2.png b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..96f2dd6da4219dad601c102cf2cab6a3fe6929b1 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1a76d6a67f6332f4441647154c3ba697d122e9be24a6dfa18d27978d885d5b +size 212910 diff --git a/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec3.png b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fc0c6e1401b8f473be73a2f15f0a02b44869f11b --- /dev/null +++ b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d1cd7b08ee4841e17152ffa5c165527a1caaa034d419e5d9db0313ef552356 +size 246459 diff --git a/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec4.png b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f813003dfd3badb88422c98232be8bc2c2fbe056 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57cc263c152b77970682bc71a3adf3d715c26139d6a5033b1eecceb1ef19b03 +size 352066 diff --git a/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec5.png b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c4725ed90b13498561adbbcea080c02021ee2516 --- /dev/null +++ b/specs/Debo no Su Seisakusho_Toki o Kanaderu Waltz/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72c3f01e60e31f30853ee352e37e586a374a9c8d5e55adb8cb37cc15ea9b7f6 +size 289915 diff --git a/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec1.png b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3c47f9a2b1d3b67aa1fcfd0a476a22b1ee9aa69b --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c200245fb5b59c0cb6cb98374fafc1e997bf2b0aa936fcf6bb975549b7557a78 +size 274849 diff --git a/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec2.png b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..432c3a8e54a815c371d6f44152d0fbd17a18f0bd --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193e065788383cdfba021b6b7b4ef5dd2c0f65520dd6f533dc6340921f830913 +size 263031 diff --git a/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec3.png b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3a919140fff3fa9190a501665e565514ff18d7da --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace721aabc19ec0e9e8e6754fda08ee533306f8eb718977cf0ab5ffbbcdf06f6 +size 232869 diff --git a/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec4.png b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4e62fab08e660ccbd4c3663ea2d63704ed5baabb --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381b9742c9453085cc0aece827ca5309754ef9fc4a4307eb502d7848fe917766 +size 269624 diff --git a/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec5.png b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff049f6e951cf0988eadc356d898158f154b6f8 --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~INNOCENCE OVERCLOCK~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33380264ef0986329c61ba9084149e3770ae5f2da5e093b1aa010a4186d15b62 +size 294025 diff --git a/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec1.png b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fa73dafbe24ba9b39c6c95e6ddc759ff42c1fae1 --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f17f490012c00d86f87af99260674740b8e5d4e6a2e7990a0a47ebb609e329a +size 252423 diff --git a/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec2.png b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..71b195e43b8038750adad747352a9311ca18659f --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09d695d2069ba2013b4d05d89275770499f85ef2008980984dac84c3a98df16 +size 282320 diff --git a/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec3.png b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..24155ca3fda965bcd8db0328b001d6ba06ce2cfd --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30277fb1398343a3e91123c4c29d069e398d4fffa81ca615f3973676ede3102e +size 267806 diff --git a/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec4.png b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c0a369dc25122f351419bfa181cc0e755b3d3a65 --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fb79cb3f9548d3f903530c81dfe19aa2b8c37dbd059525e7745e2796dd3a8c +size 256553 diff --git a/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec5.png b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3d966cd292b9c0ed51a58d61015e0203968d1130 --- /dev/null +++ b/specs/DiGination_FLIP FLOP ~RAMBLING OVERRUN~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76f0ad70c0498f9ff703b257011577e31eeb91ca8000291cacf32032f13c81f +size 233805 diff --git a/specs/Eufonie_Koiken Otome ~Revive~/spec1.png b/specs/Eufonie_Koiken Otome ~Revive~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..83501ae5b111c7c98a3eaa362c4400126619d21d --- /dev/null +++ b/specs/Eufonie_Koiken Otome ~Revive~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a484b0a255506debee9061036dc90a834ab6b37d548123f61c685033d1f9d0 +size 320912 diff --git a/specs/Eufonie_Koiken Otome ~Revive~/spec2.png b/specs/Eufonie_Koiken Otome ~Revive~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..123584955e90dc6e5c31966f4ec0b638b30b2501 --- /dev/null +++ b/specs/Eufonie_Koiken Otome ~Revive~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb288a1c648b2e42b1ae16b7ba74029dfda0d05b5b3a183574cba2f1bf518a08 +size 335361 diff --git a/specs/Eufonie_Koiken Otome ~Revive~/spec3.png b/specs/Eufonie_Koiken Otome ~Revive~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b870a2f8ba4f0e2aed0bf5573cece748fd2a05c7 --- /dev/null +++ b/specs/Eufonie_Koiken Otome ~Revive~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10f0a5634d6b6141349f6a8f09777081018d5445fc07acfa376bec82a10f182 +size 334430 diff --git a/specs/Eufonie_Koiken Otome ~Revive~/spec4.png b/specs/Eufonie_Koiken Otome ~Revive~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..26d18d716c9778ec8b827ca15ee6e14c4ec36134 --- /dev/null +++ b/specs/Eufonie_Koiken Otome ~Revive~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82694d051a1837ebd9d92db8a2ececda93004bcd54941ea0a0923ecec65baf1a +size 334668 diff --git a/specs/Eufonie_Koiken Otome ~Revive~/spec5.png b/specs/Eufonie_Koiken Otome ~Revive~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9df13f821dee8b418d756b0d0479d45621b8fc2c --- /dev/null +++ b/specs/Eufonie_Koiken Otome ~Revive~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d0c70a4b462d50c0a2b5915f765106545e4d9098d5496eacfb1a59357cdf6a +size 322522 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec1.png b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..86f0b44690af7b9d6ff04210fdc21de0a8cda424 --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791721d7da25d1bd24e66b79f8e11aab6baed81fbce5cfc2edcbdd2173bc50e2 +size 280166 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec2.png b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c95d4f81244846c2ad56779c3bd6421fc6ae4cb2 --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc9b65a90123c674f74cb1bdc63c4aa839fe5d3a823ce9bcb187b3c44c3d0b2c +size 285849 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec3.png b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2cd0d4524c2b0c3d312a8bcc58268902e7e2661a --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb1ddea4a9541d4d9c8364e47397ea094eee8ff4c7d0ee4041ef59377004484 +size 288977 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec4.png b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae3fb1c23f5bbcbb0ad05b396021f1e8faaee351 --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:030e79b1f7402e7ff416b31207b686170221745ba1355e25b63ad8fcd74bbe3b +size 292061 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec5.png b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0091f9a3f7b8e49e78e6772eaf82a524dbc99bfb --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa Finale -Shiroki Hoshi no Yume-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6122ebf76672567e2f816467c9ce7aa9ba609d2a0d71ae95161371e08ee099 +size 285658 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa/spec1.png b/specs/FAVORITE_AstralAir no Shiroki Towa/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..49086049a8e5fca8084487d7c681aa39ce503cd9 --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8e6a74a8b08e9806d920da11d969c801a56df4b90731a7d0367ca155b795b9 +size 288675 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa/spec2.png b/specs/FAVORITE_AstralAir no Shiroki Towa/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..afada025dee840bfe14fdab8223e86926b9a7893 --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1127f5248d8b65f0484b530ba555173a5a45218b2f227af33c70d980450dac9b +size 291389 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa/spec3.png b/specs/FAVORITE_AstralAir no Shiroki Towa/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..caf3dcc6d8de3a29ab4188a355e4d8fc6a92c63d --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efb1ab1daab0f3bd8d2866beabd711c4ec7131b3da0072dcc4104436deb6b52 +size 293798 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa/spec4.png b/specs/FAVORITE_AstralAir no Shiroki Towa/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0c00cee81d2cf943f840520efc5ce6cb6adb6a3c --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414e3d76d9830a18ed96c75eb73c39ce68a7fc6330127e5ff61897324736e4e3 +size 290532 diff --git a/specs/FAVORITE_AstralAir no Shiroki Towa/spec5.png b/specs/FAVORITE_AstralAir no Shiroki Towa/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..83fe2d15ef0d4b2a40fa397ebdda057fb8e5e11c --- /dev/null +++ b/specs/FAVORITE_AstralAir no Shiroki Towa/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709f40d3c1e3280e99b888ecc91fcc0a5948947653406245cc70373c0258824b +size 292886 diff --git a/specs/FAVORITE_Happy Live, Show Up Encore!!/spec1.png b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e289026e5ec7ce993001757c5ecf6f88eb267d1 --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686fc5a5d5a72135c141adb0062ed6955038d00cd546efd910d16d8bea3f7a15 +size 316276 diff --git a/specs/FAVORITE_Happy Live, Show Up Encore!!/spec2.png b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..549c89e146e2299a5c0e772ee18bc2240f6b066e --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f348442ff28a2fdbd1d019ea54435b9987aebe3049a2ffb968ebcdc82749330 +size 312221 diff --git a/specs/FAVORITE_Happy Live, Show Up Encore!!/spec3.png b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0d0bcb27b65505b299388ee2c831f79b347c6d1 --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db08e9f7c79ed008793d4b511a4813d07c48a7bd187b5fe2b1d730b1a98ee87 +size 300424 diff --git a/specs/FAVORITE_Happy Live, Show Up Encore!!/spec4.png b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d2a85d622ba9431cad71d2125150d95b681ac182 --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6eaf753cab955227e9bf92a16b6fb518a700126c1edc736079acc50f1920c6 +size 304675 diff --git a/specs/FAVORITE_Happy Live, Show Up Encore!!/spec5.png b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7b1541c4132e2768d46a37b7e8791bff15046f9e --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up Encore!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9747c3c5dcb2cb93bf9551474df4000b803b6fb3d26ca94fbe4f4f13f2f3428c +size 299152 diff --git a/specs/FAVORITE_Happy Live, Show Up!/spec1.png b/specs/FAVORITE_Happy Live, Show Up!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8c435f68e6edf189039178ccaffaebf9e9f9632d --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8673aac7d0e6c5fb6c8d3f0b8a0a4de43e182c6cf3cc3f68147caaaf7aac7c50 +size 319595 diff --git a/specs/FAVORITE_Happy Live, Show Up!/spec2.png b/specs/FAVORITE_Happy Live, Show Up!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3d9044db64bf673122bd6561fefc9d0e4c52450f --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de6e2688233087b50762df1bfeefe48c3d352b1d2ee4d554d4dd4b81b432cb2 +size 304469 diff --git a/specs/FAVORITE_Happy Live, Show Up!/spec3.png b/specs/FAVORITE_Happy Live, Show Up!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bbdcbbf3bde2cd77081c8c0007befe7615c7dbf0 --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1477c2a65b32608a349247dc6953bd64fe3f2d6c1ac7fd76177b81d085b997e +size 295129 diff --git a/specs/FAVORITE_Happy Live, Show Up!/spec4.png b/specs/FAVORITE_Happy Live, Show Up!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..00b0efb7e9430ce5ab7b5b6024560b027cc44c29 --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7f127e3a9bae11ce263d31822ea7a5c2838296cf1e52c3ee37ac5f08deab12 +size 290986 diff --git a/specs/FAVORITE_Happy Live, Show Up!/spec5.png b/specs/FAVORITE_Happy Live, Show Up!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..249387ba424a7c94b9d706fe65dea28720c92443 --- /dev/null +++ b/specs/FAVORITE_Happy Live, Show Up!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eca1ef330accca8885d99015310f8cf4740000d80991d57e0f57d0b296a26d7 +size 266640 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec1.png b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c2414c8dc9c58b4ce90401e1dc203c90a7e152c9 --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3dafce304ce9c85978644b042b72c5b37485bffc19bbad60e0b96a965e2b74 +size 313584 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec2.png b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6046e8e55ba9f8077da9e339b975ed0fbbb3c8bf --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832a8b6322285395c2b44c1276e3c7f4608996964bfff2209a055def99a4d26e +size 298125 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec3.png b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5007f92b8ba15541fafa8d1f53f52489b7689515 --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf057771707f00791495c0b9a73398aaa2abc6a7e7aade81b40bce3b5fbf569c +size 325422 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec4.png b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f07ca69cdee4148c3d46252a3c03bd222cd6c309 --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a29196b7d396259d863a9ee7f2f899d4ecd04215fbdd057009bd4e7af769873 +size 310207 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec5.png b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e6a60680cc8d00c9d6f298065825e2498c49dd80 --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Eternal Heart- HD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6003bb7447b4af1a5ba7e6c6e318ee54cbf4baa8bf2b9f15eb8f7b37cb7714cf +size 271091 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec1.png b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4d590864a07313574c1a353d87e228e90f981f02 --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f453499030ac1a5b68e28979308d314e785770a0656c7ee565bebc2e53625a +size 309869 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec2.png b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..932bed65d1886a7a6b083177301b9d5b3ce1fd7e --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5bc95229db7e40524c3af6e5a8376d88f0d208f894f6e4a6bd7a4c79fe9320 +size 281998 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec3.png b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..abddf0f5afaa7976d549941b5980a4a99dcf30b2 --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ccf530427bba730fe3bf1cf8fb763394758f5ceae3b0ea3b54f6698263a5f3 +size 271933 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec4.png b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..795dadb455c837e3fbe9506093eb80bdb21ddbcb --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961d9f54a75a2dbf32d8d3469698fe84762eb4ca3e855964d22bf80ac31f03ef +size 306702 diff --git a/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec5.png b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..144d7b2b994560cc83b3b3eabd5c2a6fc136a42b --- /dev/null +++ b/specs/FAVORITE_Hoshizora no Memoria -Wish Upon a Shooting Star- HD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f783a60ddd113f35654d2d57e5bf996ab3cdbc0deb0c5dc140e0533dd17626e +size 309033 diff --git a/specs/FAVORITE_Irotoridori no Sekai HD/spec1.png b/specs/FAVORITE_Irotoridori no Sekai HD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8929503fd4356dff8e61d469b592eb6e5be121a1 --- /dev/null +++ b/specs/FAVORITE_Irotoridori no Sekai HD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85578bef112947c6993e32fcaf2d945523fe1cb20800f846455c9a6db0066eda +size 285289 diff --git a/specs/FAVORITE_Irotoridori no Sekai HD/spec2.png b/specs/FAVORITE_Irotoridori no Sekai HD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..aad9779f2effe3822d7ec00afb40d907ccdef12f --- /dev/null +++ b/specs/FAVORITE_Irotoridori no Sekai HD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ac337383630dd848f6ec309fdf7a01fd2bd7a53d5a6c637e58a0afddd66be3 +size 285590 diff --git a/specs/FAVORITE_Irotoridori no Sekai HD/spec3.png b/specs/FAVORITE_Irotoridori no Sekai HD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..09e8ff5f2dcbed6cf991c799f2cef2c455f89f9e --- /dev/null +++ b/specs/FAVORITE_Irotoridori no Sekai HD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5b933a3b667c803fab47acbfe738f4fc7947d81b1745e1d0d39ab3a971cc63 +size 283986 diff --git a/specs/FAVORITE_Irotoridori no Sekai HD/spec4.png b/specs/FAVORITE_Irotoridori no Sekai HD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e5cc2a90049f5189138aafb7600fb420fd1d69bc --- /dev/null +++ b/specs/FAVORITE_Irotoridori no Sekai HD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b996edec08040a674f125f96d1ebf047e7309b17144580d621a92d09fc69a7 +size 282952 diff --git a/specs/FAVORITE_Irotoridori no Sekai HD/spec5.png b/specs/FAVORITE_Irotoridori no Sekai HD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6cf2dc146ab1a715fa870e1c2ddadea1475f461b --- /dev/null +++ b/specs/FAVORITE_Irotoridori no Sekai HD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80187c37d845882792152c205938d4d66f68196cffb2de2528b8f8b6291a3287 +size 285119 diff --git a/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec1.png b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..86f11fc3077805311af692348e3a2892df847772 --- /dev/null +++ b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6f14f91c96d27a81f31cc785f32410bf351c16b82f10e6a7c14ecf15216dca +size 251091 diff --git a/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec2.png b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7fb862510efb077db7d2b81df12712c7e9703430 --- /dev/null +++ b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060850309d6786205258f72676baa6dd4f90a7bdc95150a2f08b37eafc546251 +size 207554 diff --git a/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec3.png b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9f887026ad5982ef797191c615e5712241693ad0 --- /dev/null +++ b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515dc095333e2a84b88cda284ba40473f35c7a32fab9ba64b7f43fae710a167e +size 214095 diff --git a/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec4.png b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c1aeb39631f5760e048f5887ba28500162741335 --- /dev/null +++ b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:633b007c27af6168d96729de798b70a5886075806d44aa091db6b14f06f687e7 +size 249301 diff --git a/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec5.png b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..880145c570810e746992d28a2b1182ac781251fd --- /dev/null +++ b/specs/FAVORITE_Sakura, Moyu. -as the Night's, Reincarnation-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977693e54bd011187b6c084a3edb621b9b73fe2cb681981e070b5a6b362611a4 +size 225175 diff --git a/specs/FLAT_Hikoukigumo no Mukougawa/spec1.png b/specs/FLAT_Hikoukigumo no Mukougawa/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..5023338bfa2d7b079a125315dc0311c87ff1f17c --- /dev/null +++ b/specs/FLAT_Hikoukigumo no Mukougawa/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473d4e79f3d500463f2f1da8073e70645fad067c6749f6e61de73c74c4730a44 +size 292181 diff --git a/specs/FLAT_Hikoukigumo no Mukougawa/spec2.png b/specs/FLAT_Hikoukigumo no Mukougawa/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4aa662787d99ae6208bf6a4b0eb1c8f80ba2f506 --- /dev/null +++ b/specs/FLAT_Hikoukigumo no Mukougawa/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d08c4db3956e15f9bcabbed892c3a81933983598d486e15cce86c9491e8674 +size 309575 diff --git a/specs/FLAT_Hikoukigumo no Mukougawa/spec3.png b/specs/FLAT_Hikoukigumo no Mukougawa/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..314b8093d2c7f84fb0c297f12aced44f48260d6e --- /dev/null +++ b/specs/FLAT_Hikoukigumo no Mukougawa/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f9dc4e5634c26e601145f0dddeb03c506cb7291095ebaf8b98995e7648c902 +size 265233 diff --git a/specs/FLAT_Hikoukigumo no Mukougawa/spec4.png b/specs/FLAT_Hikoukigumo no Mukougawa/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8bb9cd679ce3527c494b7dee69ecb461824ea323 --- /dev/null +++ b/specs/FLAT_Hikoukigumo no Mukougawa/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083121b3d4def8429dc14f49dfa5a006e36a3226da544134ce2d0d975460faeb +size 262776 diff --git a/specs/FLAT_Hikoukigumo no Mukougawa/spec5.png b/specs/FLAT_Hikoukigumo no Mukougawa/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..219c5a7827326a25c6dcc8d74d57ed0a3f0dd030 --- /dev/null +++ b/specs/FLAT_Hikoukigumo no Mukougawa/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c7891538eeb089f122893280d8c7973ee33fee10e6fd0d889d35bb1413dccf +size 345506 diff --git a/specs/FLAT_Rebellions Secret Game 2nd Stage/spec1.png b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d0094c050c31036873e51b142f648ca3ce066f8d --- /dev/null +++ b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4caf0ef8792cda3c6773e7346266aedc04644db7154a58c931c24091dc9765ba +size 338148 diff --git a/specs/FLAT_Rebellions Secret Game 2nd Stage/spec2.png b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..aaa6b81f7a105a9aba8d05c3fc2650d6ab0fb52b --- /dev/null +++ b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d2bea5bec8c5fe9525b7b5d053a6255f900d6354de3f3b5cb51dc3b44db279 +size 338384 diff --git a/specs/FLAT_Rebellions Secret Game 2nd Stage/spec3.png b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fdd54f6cd08f2179231fd2e318e63bedfc98f798 --- /dev/null +++ b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0553bec1f24587f44af63ba8eecd334b3896898d224301e1ba50082c1c77c9 +size 340306 diff --git a/specs/FLAT_Rebellions Secret Game 2nd Stage/spec4.png b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..54c7439dc514e91056461c7a9dfbd23b5b3c2b51 --- /dev/null +++ b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a285a2d73f895adc6292107777a52c83f6d6ea86582ea9cb804a807a316119 +size 338163 diff --git a/specs/FLAT_Rebellions Secret Game 2nd Stage/spec5.png b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..78e88a580e61abd223d323b7aecb5b9b77d0623f --- /dev/null +++ b/specs/FLAT_Rebellions Secret Game 2nd Stage/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22bee99b3399339e8e02acacd847b12ff4b391271bf4677bda8c4d87d9cf1c49 +size 264631 diff --git a/specs/FLAT_Secret Game CODE Revise/spec1.png b/specs/FLAT_Secret Game CODE Revise/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d9c301dbae26b341ddfb4c71b3688feb540c66d7 --- /dev/null +++ b/specs/FLAT_Secret Game CODE Revise/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3014c067f9c7028158b8adfedd8a3de5da3f550a4405aa4df3684f2b6eba851c +size 305620 diff --git a/specs/FLAT_Secret Game CODE Revise/spec2.png b/specs/FLAT_Secret Game CODE Revise/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..464bf9be56a62b042b02a1e3ba167f4c78a6da57 --- /dev/null +++ b/specs/FLAT_Secret Game CODE Revise/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:558e7deb0f8f88029229eb182007d78690b69a37810db5cf5d18a646db12703f +size 299236 diff --git a/specs/FLAT_Secret Game CODE Revise/spec3.png b/specs/FLAT_Secret Game CODE Revise/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..38ef322fc534477af7e8b70e0d89c6a62a72056c --- /dev/null +++ b/specs/FLAT_Secret Game CODE Revise/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f25e335ad16eabfa6f674b5fdd20836a23e00402e5c976d6dc3513e869fe78 +size 324387 diff --git a/specs/FLAT_Secret Game CODE Revise/spec4.png b/specs/FLAT_Secret Game CODE Revise/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d13c616e3bef5768d03b9e129c5da9b061b6c21b --- /dev/null +++ b/specs/FLAT_Secret Game CODE Revise/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2bd5ae7f123ed21c442eda2943a04d2b9c487e4e945b8170a4e195ade573325 +size 315222 diff --git a/specs/FLAT_Secret Game CODE Revise/spec5.png b/specs/FLAT_Secret Game CODE Revise/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bc5e36cc95e135a4d1d26a8ada2d4afe08e5eca4 --- /dev/null +++ b/specs/FLAT_Secret Game CODE Revise/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9a5278f5aedef3f1986ac6a7969d25e615784d8b17129b7faa1749d379078c +size 286827 diff --git a/specs/FLAT_Utatemeguri/spec1.png b/specs/FLAT_Utatemeguri/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..31bccaa2a5b4419e92567fe24e8322a19218ebe8 --- /dev/null +++ b/specs/FLAT_Utatemeguri/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ab25a51c1eb338ebbbf9e784e2aacca4737c655a3f793e9b64f7d6dcc9ac41 +size 334204 diff --git a/specs/FLAT_Utatemeguri/spec2.png b/specs/FLAT_Utatemeguri/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3f6617d04480bf17a4b854bbe9f1b59e1f816dee --- /dev/null +++ b/specs/FLAT_Utatemeguri/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dede9522b4ea570085806d6ea40680abf6a934f8d82bc87acb66ebe0d33d878b +size 335109 diff --git a/specs/FLAT_Utatemeguri/spec3.png b/specs/FLAT_Utatemeguri/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..288230af0a54502353020774ac385497a928a48f --- /dev/null +++ b/specs/FLAT_Utatemeguri/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93cad5d55d4524d0e505bc3042c9ce57b56366e303ea7426885bc4476707fe6 +size 329312 diff --git a/specs/FLAT_Utatemeguri/spec4.png b/specs/FLAT_Utatemeguri/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..61f9904e75052a4aee0468f55761713699bfe215 --- /dev/null +++ b/specs/FLAT_Utatemeguri/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb809fe86d4230ccbaa9599098e04aa0379b4b8b3800845d5a35ffba214c23a +size 338079 diff --git a/specs/FLAT_Utatemeguri/spec5.png b/specs/FLAT_Utatemeguri/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb0e68b2653456af0d44c9bf34de7d93a42f78d --- /dev/null +++ b/specs/FLAT_Utatemeguri/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc22ef9e84cb9a8b4e685c46aad56f943041cd29d45e7560989b677808744c3d +size 323004 diff --git a/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec1.png b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..aa1a05f7a61b18976bc8d6c1c97115f1793d42f1 --- /dev/null +++ b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e717ab338d862c4d294df4fe797a60032a1563633758e6272e47a3cd53bc3d4c +size 313689 diff --git a/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec2.png b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cd1d0a8d7210983ea52d5f91cde04f96a6e96b80 --- /dev/null +++ b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e275290b5b5af5138baf43fe295b65cbcc6c5e4734eef26fd94152d233959f1a +size 268900 diff --git a/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec3.png b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8ad0c08b1fc12c9c1d139350de421b5643d88ddd --- /dev/null +++ b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153081d75a51380a47fdea51d4e2c50df589c54b09e6b2ca5f957f6a366db7c8 +size 299748 diff --git a/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec4.png b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..651e6f24b3e5204d23236d6ad6443f76253268f9 --- /dev/null +++ b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf817efdaf1c7e4112113a73e06eec26ac4d396c496baccc1c19fa11fc056a0 +size 306458 diff --git a/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec5.png b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3e87dbe1366cf713c95fe98a6b8090f03c87cffc --- /dev/null +++ b/specs/Fluorite_Missing-X-Link ~Ten no Yurikago, Togi no Hana~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a125d3c7fe403f7ae96496d0ac94cfdccf1f6f042d4a1bc8cda98ba773e7244f +size 311295 diff --git a/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec1.png b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1592e39fc84137753679d5e0af70ba71104dccb8 --- /dev/null +++ b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8bf34414dc471b1ce9844b2b5c35e1d825a1e91d990fc5a2583a37f83f5bad3 +size 322562 diff --git a/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec2.png b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ec410f932c1906911716f91b51e6d672da9ef63c --- /dev/null +++ b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3be45dc29e494c4fa498f19b1974d2de82eb2570d797a3915d2c01058f3497 +size 314189 diff --git a/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec3.png b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..afc750eece8a46f28f3b7c672d53a6775acdc6a1 --- /dev/null +++ b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19adaba2021b41ef081a5f625bb00e12708953dc1188ccfb657af942b9890b89 +size 325806 diff --git a/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec4.png b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..80154efb204e338b5bbf0f83ac2b9308e839b049 --- /dev/null +++ b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60cd745a01fa0361ec70d8c76dc02122ed0b7f7025a32e3cb1e4e04b2a8b18e8 +size 331443 diff --git a/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec5.png b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b3eca892c0f324c1f29f44e14a31fb4adab01db7 --- /dev/null +++ b/specs/Fluorite_Sorceress Alive! ~the World's End Fallen Star~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f950f805c77919c1ed3fdc291062160a84f8de822a15b095b17f627d5811a7 +size 298867 diff --git a/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec1.png b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..455a54308f6f9fa0e139a0d0d70e7c7b533d6867 --- /dev/null +++ b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703c97f96ffffa31d9858b5c077623b54a87580198712f74bb7001f19614e2bc +size 318418 diff --git a/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec2.png b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f82e6cfcbd3ad2fb3e5efa037c6e138c6446c30 --- /dev/null +++ b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c4abb0b5f83317e7aab7af13dcbd2f5d86f59fd5a56c8d5660a52c31034096 +size 332106 diff --git a/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec3.png b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9d7a853605855eb759ea1c016ffbe9fa280f28d2 --- /dev/null +++ b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd0e8856cd9775b3a326e3eec7241ca2cff6ae6d68767ee688cf65203e97e0a +size 314155 diff --git a/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec4.png b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a9cde9b239be4c7aa9f03026330fdb88a26cea0e --- /dev/null +++ b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcb1a4ba574250362d4a822613082c93cd04c1ecb163271858891dad67da0cd2 +size 324672 diff --git a/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec5.png b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb010e8b527a833d82f1c5a9e2b1b201230d734 --- /dev/null +++ b/specs/Frill_Sei Shoujo ~Seido Ikusei Gakuen~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:665aae3e6652c74a891eb07583636f342919fdce0d9623fac28a420f55b361f4 +size 318374 diff --git a/specs/Frontwing_ATRI -My Dear Moments-/spec1.png b/specs/Frontwing_ATRI -My Dear Moments-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..eb81338dcf2e15e576d5241180530f8e86ed7b70 --- /dev/null +++ b/specs/Frontwing_ATRI -My Dear Moments-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2f4c29734810d22b8c3d2e9c65d5b54365bc87ba0a63208d385bfb812a1dc4 +size 310460 diff --git a/specs/Frontwing_ATRI -My Dear Moments-/spec2.png b/specs/Frontwing_ATRI -My Dear Moments-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ac7391752d0787077cf120ccff5f93b9f1755f63 --- /dev/null +++ b/specs/Frontwing_ATRI -My Dear Moments-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b8177ba8ef8de541d9931440df398d2688701c211be9203360a823e61dd5a1 +size 307749 diff --git a/specs/Frontwing_ATRI -My Dear Moments-/spec3.png b/specs/Frontwing_ATRI -My Dear Moments-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c5b68845d8acb3aa35b0cb95ede6ded2ca38057 --- /dev/null +++ b/specs/Frontwing_ATRI -My Dear Moments-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f92452318b3d9d0b507d7745bdd6ba786e2da38d04ef797b434b4e94eb6d8cc +size 297478 diff --git a/specs/Frontwing_ATRI -My Dear Moments-/spec4.png b/specs/Frontwing_ATRI -My Dear Moments-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..176f95937b0ea80d15cb91073f5b0ee2974d8742 --- /dev/null +++ b/specs/Frontwing_ATRI -My Dear Moments-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e238caa6cbc190a4236f57d071d12348ca63d30353d4b57419c0c603289691 +size 298538 diff --git a/specs/Frontwing_ATRI -My Dear Moments-/spec5.png b/specs/Frontwing_ATRI -My Dear Moments-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..35bccd3cc3a7005fbe4b5c3ceaa5d0e99804ed5b --- /dev/null +++ b/specs/Frontwing_ATRI -My Dear Moments-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d3298b83a6e04d9f6286ad19b697dc8ef4ef55e0a2f485ae120fcae0560a7a1 +size 289909 diff --git a/specs/Frontwing_Corona Blossom Vol.1/spec1.png b/specs/Frontwing_Corona Blossom Vol.1/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6fb1bcbf2595377627492b20f1371797ea96426b --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.1/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85dd6ec646bcf4e2b0f76b756af9db4e15a7157b68c9a7e6c046021f98946d69 +size 321264 diff --git a/specs/Frontwing_Corona Blossom Vol.1/spec2.png b/specs/Frontwing_Corona Blossom Vol.1/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..08cb8c903e487b0d24f8c9c0286c60cbd1d0451f --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.1/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8733b6552d5ab9cd1c9c4b19a9f41579a991c690c4c966dacbab8b0240d09b1 +size 304886 diff --git a/specs/Frontwing_Corona Blossom Vol.1/spec3.png b/specs/Frontwing_Corona Blossom Vol.1/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..97d6a9a433ee5cc6c5011d41da54d0b1279a551d --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.1/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68812c8328a70b9135c719784e6c3eb1b15b589538ec1de7f5a788fafadb5c1 +size 312221 diff --git a/specs/Frontwing_Corona Blossom Vol.1/spec4.png b/specs/Frontwing_Corona Blossom Vol.1/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5f19dd1e772f3f12d04a74952189d82f87ba738f --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.1/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab4d005ab6a1c6dc40f0c52d9b463dddb9ab5a2d9b4766e37e8cb8a132404b1 +size 305961 diff --git a/specs/Frontwing_Corona Blossom Vol.1/spec5.png b/specs/Frontwing_Corona Blossom Vol.1/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c7592fc7328b2c1e4451dd23b54fdedc9d006054 --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.1/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:603fec5c8fd40edb1ae874f738e6ac26a46fe24c89d98690a4c08fbc2072a1b5 +size 305307 diff --git a/specs/Frontwing_Corona Blossom Vol.2/spec1.png b/specs/Frontwing_Corona Blossom Vol.2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..981f32e99c19cc5a6a88ec5638821132bfafd71a --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b596bb361aaa517c3f98b3e7783a63517e1b1747f581a719f291c47c9c6b4e +size 303166 diff --git a/specs/Frontwing_Corona Blossom Vol.2/spec2.png b/specs/Frontwing_Corona Blossom Vol.2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ad2bb3570687fa5835c6d77891354f1c4368d0a --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09635bbad15b2d1deebb5c1b2903457bd063b0c1d80c6c2df343b4af8f41526 +size 282681 diff --git a/specs/Frontwing_Corona Blossom Vol.2/spec3.png b/specs/Frontwing_Corona Blossom Vol.2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1593e7bcb8f76ee6a0bfdfae233bc19090e7a8e7 --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1949713c89bc4ae6a1604116f5ff169346d202e85ff4a5cbc6813e3280af7b2c +size 313556 diff --git a/specs/Frontwing_Corona Blossom Vol.2/spec4.png b/specs/Frontwing_Corona Blossom Vol.2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..196343ca00956c55d6998a72c37c911ab08fda1f --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4a2a3dee6714af420c6fb2dc5a0645e262dbff56cdd7619eefb5856a6afb41 +size 311223 diff --git a/specs/Frontwing_Corona Blossom Vol.2/spec5.png b/specs/Frontwing_Corona Blossom Vol.2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..faa066676691bc163c17c1f3b4f344886f8ee00d --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fc4f478f215a7efce481ae24fbe724e80aa9ac9902c4e961273cc5a0474237 +size 295467 diff --git a/specs/Frontwing_Corona Blossom Vol.3/spec1.png b/specs/Frontwing_Corona Blossom Vol.3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..54ea0da34850213e9c74eab51b2f6fb5227fc647 --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19095695c13adbd4b100ef85e757974044f4a65e44fa1bed1cdb8ded9e4f5c1 +size 299526 diff --git a/specs/Frontwing_Corona Blossom Vol.3/spec2.png b/specs/Frontwing_Corona Blossom Vol.3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9df499095a95ccf168b747822bb9592080d9eb77 --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbfa0b6716cb250fc6daece16e135e39d3e91d47747d160226f901405d3a973 +size 296990 diff --git a/specs/Frontwing_Corona Blossom Vol.3/spec3.png b/specs/Frontwing_Corona Blossom Vol.3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4502e34e563376c5da08d40f8a0628d46a01f456 --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102f0ee3f5e50cd4958ddd9803ef09e6b6790201d026fd2012c3d6322befb25c +size 322678 diff --git a/specs/Frontwing_Corona Blossom Vol.3/spec4.png b/specs/Frontwing_Corona Blossom Vol.3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..37a05b9ae24794224697e986a29c89b37b29c31c --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188906acba014690833bb98ee09b3bd7e369d9b3e23ca7d5e4d2a3e65586e0dd +size 289194 diff --git a/specs/Frontwing_Corona Blossom Vol.3/spec5.png b/specs/Frontwing_Corona Blossom Vol.3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..baa238da68b0235ce728fdbce6bb80018f738904 --- /dev/null +++ b/specs/Frontwing_Corona Blossom Vol.3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faef98cbf65460bb82608fa9717a898b3dec29e840492df91114e393285c9d4f +size 313619 diff --git a/specs/Frontwing_GINKA/spec1.png b/specs/Frontwing_GINKA/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..33e01b35e65f3bceb0b33a02ed1ef6d44ff2b27f --- /dev/null +++ b/specs/Frontwing_GINKA/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10550add964a43fa1c955ae7b1908ac419e112dfa6e871f34c95e133b9f5afd8 +size 321429 diff --git a/specs/Frontwing_GINKA/spec2.png b/specs/Frontwing_GINKA/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e0e38c86c15fcd8338631354380cfee09562b2c --- /dev/null +++ b/specs/Frontwing_GINKA/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37bc5b065d4926231b8482096a83afaf0e22bbeba2fba399973851745abfe15e +size 317171 diff --git a/specs/Frontwing_GINKA/spec3.png b/specs/Frontwing_GINKA/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..616167ce931f47a705c8a0002f546831de997421 --- /dev/null +++ b/specs/Frontwing_GINKA/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25892bb8073d558a850ab228726ad8153cd637c8460d86202462c2efab5e9c86 +size 303606 diff --git a/specs/Frontwing_GINKA/spec4.png b/specs/Frontwing_GINKA/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0eba9101a9c24d0ce8295fbe1fdcc36ff8aaf0cd --- /dev/null +++ b/specs/Frontwing_GINKA/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86ed3dfb3ca04748ab51aa1b88e7bf4e55e05566c48eb1605fde0d663f0b405 +size 320405 diff --git a/specs/Frontwing_GINKA/spec5.png b/specs/Frontwing_GINKA/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5a99b009f47c59200e391b2d000cccb5a21db32c --- /dev/null +++ b/specs/Frontwing_GINKA/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce0bb690ae9b60444045c2a532a540a737f9235918f3b553efb87de27afbc25 +size 301493 diff --git a/specs/Frontwing_Grisaia Chronos Rebellion/spec1.png b/specs/Frontwing_Grisaia Chronos Rebellion/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..5457dbcd3fdf4a43aa54035d3f9f597b816e81b3 --- /dev/null +++ b/specs/Frontwing_Grisaia Chronos Rebellion/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392b13564939d56f9cabcfba73f2bdd759ec4f839f4eaf1ead57eaf47042ce53 +size 308350 diff --git a/specs/Frontwing_Grisaia Chronos Rebellion/spec2.png b/specs/Frontwing_Grisaia Chronos Rebellion/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5e701b175861b662360403ac34550d3cdf640302 --- /dev/null +++ b/specs/Frontwing_Grisaia Chronos Rebellion/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d08645fdb08c3f25b3ee7e75fcbcbe30685255552b0bdc6d8269403bb8e8b47 +size 295720 diff --git a/specs/Frontwing_Grisaia Chronos Rebellion/spec3.png b/specs/Frontwing_Grisaia Chronos Rebellion/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..59cda4825247700ce39f463015aecfbe3cf9ffa9 --- /dev/null +++ b/specs/Frontwing_Grisaia Chronos Rebellion/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35e0a983fb8d4ae3aa2199d1f3ba46980482f77cdadab723eb15afc459164ef +size 310860 diff --git a/specs/Frontwing_Grisaia Chronos Rebellion/spec4.png b/specs/Frontwing_Grisaia Chronos Rebellion/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e037e409cbf5bea32f3ecdd3417c3268c208f703 --- /dev/null +++ b/specs/Frontwing_Grisaia Chronos Rebellion/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c7e0c961e805dff93884a92749db8d5cd9fe5de3c51b165b49e3a8d410e407 +size 299437 diff --git a/specs/Frontwing_Grisaia Chronos Rebellion/spec5.png b/specs/Frontwing_Grisaia Chronos Rebellion/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c57fe6fda69718de91d6d5da26c79452cf4a2198 --- /dev/null +++ b/specs/Frontwing_Grisaia Chronos Rebellion/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2f87efb17abd8e12d1ceb64f3a059a28b2ab04ee472c83ef1a3b9d075fcf17 +size 250690 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..35b0d759cfca3913e92539be2f835f7b5dfd1caa --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7920b760d41f1a952dac4e821f41049d06fff88ad9db6d70c67159e123efba35 +size 325209 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6232bf7f1ffaccced78d792ebe24efa041588fe6 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb840b773fdcf243d026f88b994a2fd1436e6eb6adbd56de61399b898ed1b0dc +size 309327 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..04ae50c9587b6e4747fb84ec01bbc224ac264b94 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f754f3c988b4af873b2b7a43f0b68351c7480aa21577ad4f225efbaa37d495b7 +size 302035 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a9bad18778940c80db78ac061a208be3c52ce65e --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b0d22ac225ec2ebe415c7db30e2227bcce303ad6b3097fe922fb9ad67309a5 +size 328589 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e84c068a24a97c1205fd7a0a568b5a80ecd22255 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.1/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253ae646d834598940194393fb830f25f6e0db16945161d9a6ef91fbec2be95e +size 320448 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1fee51f5bf0bac082810343339f0de63a425f6eb --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a783a81ab8342d7f5cef3fd31227eb8448579fa413dd8e46698a4c6d4964817 +size 323096 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1e1679d9a29f5ad38c4eb33ea649ab69e42e1a5b --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7b9bb68839dec7fbd63198aceb741ce290926b97ebe51bdf725cd3e2a5aec3 +size 328544 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..297b8008adc182538b5c9ff00d0343fe40eed002 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8bffad34f1601ea0d87c434e462edb15d4d9e31bef799985b05330ab68c2c85 +size 325300 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..30045345dda5c8df0de94aa78f114609caf7eb06 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22052b7aad431b4e328b65ffe8d3e8b41354ccf049cea993e036b4bc0c72bef +size 322050 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9129cf0015fe6ce5be4c2cea5e063202747f2dd0 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3772defc40565ea757af000eaf7b412e3d0a4cd7581b6d82ae6b16ee815f1e6e +size 236479 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..292388338a4756fba2a3fbec467cc1c55415b476 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c70fd1eeac140ff224a440b70a6b97906748c97f4235e4c3582129a0cbec56 +size 327411 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d543a250728ac8df85dc03a5d23e28dd846320fe --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fddf14b0da9212e3b72953a5c9b4d42124c02b1ebac02fca33649957c7f74d5 +size 331061 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3cf6b68733f5f92b75c6976322f901e447a426e3 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e96f7150f09f465a19e8d375fc854e1851a1e097bf328f0c589e915c5aa6fb +size 320523 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4b7d53364561aaa6d0b1ef9f3f12b59425f3ac51 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3d1a9ae58cda86b1ec56123a7cb514a12c67141ab59d4d38b98b3ec55025ec +size 327303 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..57de7a96abf6bcdeb450f12f430c7d2b1199aac8 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e2beb0068e105583df826ae64d5ba2bf3edc63cea0b2280f98ecf4d4a91394 +size 324903 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..723527967824eaf40348ede96347dc9679a93346 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d9f0d0bd119f12eb96dc9ba4432eeb1bc9dddf683ee5095a237424655cbc33 +size 344155 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e76dc4d0765f9c6fa147697cb05e52776aea9299 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f036e999daf208d223f39b412cee8152c8fb702d255dee7e1d6712ee26e6de18 +size 228256 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..916b9d21abc16863def55433b68fc44722c7406f --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b871af9b3a363c2735a998e5be9d110844c47578ec2d070404aa7aadf0306c8b +size 325429 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c93f0e2d41890a32df9d0148b85005a4ceee5eb7 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ceab2c2ef87af49b270232abfe0afa44cb74f51efca4ec3efa209dd5a5a074 +size 321379 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..45e889f4882fff296618f5747aa0cb0b0202dcdf --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.4/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338a24e2b906cc2a4cb116ce833cc358d347b18ec7c8989ebb076ac31219b0aa +size 313809 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..cd431537fccf2b1342acf2125fa132b62dca0ad7 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc9d76df669488ee35135b659c098cae0dc52927b0d4003dcc1c401a994442e4 +size 323145 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..acea92896823bc079bd23cb023167bed150821d9 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2281f8b63859a873fff9ae314b18f422034492dd01c597847c366d07735d89 +size 322266 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2304db0146b969ae7641d26f99cc2f763ca7dd60 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f079854723c2a74f77cc5905a3cd71ea7b59eeae298459fa6045600ec744df +size 321341 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..02c00108736e80f7a1bd342bb5479168baa02825 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78b7149e733cd17631aa054933f3d57e5fd74662ee9ad7e26e20f5b849e6619 +size 323966 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d5792d035012aac3b5cdbbddd8bdfaa433e3c692 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5.5/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113cc0d2539bf85b7200e839ec48322e8221ee33344cb577509619db5fce774e +size 325122 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8ed755a2cd448feefc04c340b2abc7998202ff26 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9488ff983de72934a3df7dbf184a5372eb8051c9f3d1b82dc844757533d809 +size 318586 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..46135715ad11b20f7808dcb1c2aa610b3b465e02 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82403961de5f884fcb7b3d678180207e6d70b19aa2bf14c9b8e0bee64f5f5dc +size 330234 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f2ec8cec065a923a7a57a6565eb8db4f9cbf2fc4 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70338e93a7803092ec2ce1c93e46f0a764e1b353a75cf49c120c853bf807bc69 +size 319655 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d75418e64b9a1c0269f2e2d9ea8512a1e21f1548 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79464a8f426e112dd5e9f743aeb333a24eb266e3fc0f00df1479b462d49ea3c +size 330123 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f0a451065772b0e98fa54f97a4896ba4274d8ca3 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.5/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e7f3a3ba7162c5587938d232c11fccce8de80b1b67693d772c8bf6c86598d5 +size 319310 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..5454cb0fa7247b9843ce158caa4d59ce6c85f520 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e574e42e66755c478a9a7f22894fa3da8face652fbab0083d632e8ab1dc125 +size 316870 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3228d47221099935349bc245aad8b41625526667 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85243d75e5c58f74c86c20cc79735fb7b7398b841596d32489a9649d2f7c224d +size 310046 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..dea6e6d6a85fe2505dc41747a156c1a88670669d --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126166434c23558f66ba0e716ea2407aa936a9e58d21297ce10a9b1820add146 +size 314775 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..30b7b5619a2f4c8ed7f5d33c02957e6d1ec210c9 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4364f7fcde0de984285752a9a90571600b5f23ff16729f086364408045f38ea7 +size 324042 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..60cddbf45476c387638723e507cdfa778682f26c --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.6/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5294cf583d8c5b701bde5b651ac4fd09a0e4ade37ca1f9dae63459c708ed0df9 +size 320848 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e2f7e1fc600dacf99d1953f5511ca345c6ad64bc --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07554624071561be200e1b25ec13e7f11290befb6259415d7f3b3d5a8338c7cb +size 316913 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..94b01e5d17f076f72042a7b223eb2a4520092c46 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2f15f49882d4a47db9e3beefb9cbf37731c2cf1766e01b647b9c446b5e1ad7 +size 309906 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3cb2af113172934bbb1d81691be388f235c441f1 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344c786ec7f50a5d199743c30074955e80d7d39519ae2603dc16197e0cb20a3f +size 323058 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a2a8d17a48b5d8205395ac22a96aa184b3f31f79 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7781b2d6a2125823164df743b8a7939b8945a25e61997afc42738b7e5d23d4c3 +size 319461 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1839ae7cd5e4aa2bc8a83f1f67dfd9f64fead21c --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.7/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849a452f9d5a191f58f1fa9fa88412235b740512f0495ac31762b4a935ad0a86 +size 318776 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec1.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ca602a729ba8ded946a3579649cd843d4130491f --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a73eafdf81a793e342840ba0cd98a72a10dc785a43330f84d5bcf7940671a79 +size 305152 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec2.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3b338b46f11be4f363574bdbb2308edd858917e6 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0831d8b9fa480567b0008e477dc93ad9ace5e3837446b4e5aa81b560fcbeea3c +size 317522 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec3.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a8dcfdbf50fd446432176a8bc827cee546216453 --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b004dedd4eee403f47d684fb5566dd277c0aa7c3dcaafa71e2b17263a62750 +size 319230 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec4.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a132861fb90cb4fdee31c090c7316f86497f872c --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3e64c1e89dc90e7ac62a4a5df6c13a3561e721ebeba87ce16c13e6829f1956 +size 324061 diff --git a/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec5.png b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1d8e8bfc2de2a259fbd3c445ebcd3f541a9b981b --- /dev/null +++ b/specs/Frontwing_Grisaia Phantom Trigger Vol.8/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a78c9d41ed87c583ce654b2f7adcae4e507b67c32e680cbe3f6bea7d5ba19da +size 305626 diff --git a/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec1.png b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0b8337eeb5536b09a1e3b4f6f36e250ad7bb2967 --- /dev/null +++ b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af2f20bf0f0e7020d7c690672f3ea1f711d9ff61768c1939cd39fa7d885f7a1 +size 332686 diff --git a/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec2.png b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e73031684a66e2d8233e8285e3565566fd5308d6 --- /dev/null +++ b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b73559102df819131beb8aa0959dc48137d88bb85baf0c2aae2039aee457dc80 +size 304618 diff --git a/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec3.png b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bc77ae6bb7a1dca82a5bf8dafb2ba780d5cf1374 --- /dev/null +++ b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1459d6dbe14d74ccd58b20bd9310bb708419d4102145b6dc881a6bd6b65f5505 +size 301844 diff --git a/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec4.png b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..97610aa98aefa47ff4e379612a7893d90dba03c8 --- /dev/null +++ b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b49f11bb784865d88b0441fa233d94fe4abc1d88a40c67d6b142d052235e626 +size 341293 diff --git a/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec5.png b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0ec05d907b3f672aa44246784cdba883d8f67434 --- /dev/null +++ b/specs/Frontwing_Grisaia no Kajitsu -LE FRUIT DE LA GRISAIA-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1f3e6271e3dd39904558755f24d345cfe49078d78876f1f0d7308fc15b0877 +size 329520 diff --git a/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec1.png b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c77db26db10b6aef54c1e09c28f0a318dd834e76 --- /dev/null +++ b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d0fe361c2f0d1ed16176963c945aff7894391a63f2c7e99956631e3f59a27f +size 272391 diff --git a/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec2.png b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..03a86336288d245a9cb28528937747397770f5a4 --- /dev/null +++ b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f84df6886b3a76aa492dc4f9b9f9d641aab1bce211e168c14a211f5918faf83 +size 341062 diff --git a/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec3.png b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5b40b2b6d07d82128104cf818c77fc7df81f110a --- /dev/null +++ b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147b74fd6c8dcd2b4edd0b83c9cd7b6d2846fb5cbb3c660c3c9729000a5f858b +size 308473 diff --git a/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec4.png b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..cdfba5428d778d6a4afa988dba4c91570488693f --- /dev/null +++ b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9542b630e9e8ef365603b5064d5dc96d8b965ba08bdbf38fe9b275f5326131f +size 332709 diff --git a/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec5.png b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f3b35e01925f1c788f01cf5dca586ce07df8bb73 --- /dev/null +++ b/specs/Frontwing_Grisaia no Meikyuu -LE LABYRINTHE DE LA GRISAIA-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd8692bc7e867ceb982fc706880a401627bfec7180931778119dd8f8c502f5b +size 328061 diff --git a/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec1.png b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4bf927609820dcdc9de7bd9e875fe116bf524d7a --- /dev/null +++ b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b997882670b0cd9dc16b6b6ca8f87aa5036a6e954e278bc6e6100198b475755c +size 299510 diff --git a/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec2.png b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e57f0f4917e33e9f15d0ea0f2c5ee8a35ca671e --- /dev/null +++ b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338672109e768609cdc3cb79d28293353cb94b05db35a0d5ca25164542d7e47d +size 341798 diff --git a/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec3.png b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..520c99e7303df24ee25fad0807b606b450b743fe --- /dev/null +++ b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c46725b2c1ca465d43476587b9ea2764a42e5d8d359066829fa0fb6c2dd9a5 +size 343535 diff --git a/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec4.png b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ff552d14e07fb0ff49ce7bce44d561caab82d862 --- /dev/null +++ b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d633f4e33497a10b865cd82233672dc9dc205b1b598fcdb1d9627b46548e1ecb +size 344073 diff --git a/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec5.png b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..71b5f3fcec5d3eb9c92e437b488781526d33fdf8 --- /dev/null +++ b/specs/Frontwing_Grisaia no Rakuen -LE EDEN DE LA GRISAIA-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ebadb50c4ab2e51b4fbc9e1ff1ff83571ac7724bc7ec78de9fd9a127d8286bc +size 340628 diff --git a/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec1.png b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3a240b2ad4658950f350f4dc604245883a48ac77 --- /dev/null +++ b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7d29857b3c0d86ed0bad692939705b3a7a019f6c1892924cde12eff29b6934 +size 322871 diff --git a/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec2.png b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a98ee813a7a118036f13bb4028a83b657d4fb36c --- /dev/null +++ b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd989ab59e59008e3a93cec6d66dc886237b8560de9eca94d469cc8234dd6c1 +size 318197 diff --git a/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec3.png b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1dc51a0d3d64ad20e0ffcbf0b9a6a3cd38dbd995 --- /dev/null +++ b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67482ba304ea158f339bfdeee42a06831280baf2233c4b7adeb2154960a6d23e +size 324391 diff --git a/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec4.png b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..828160277051841e642ef4acf5a6d61850227815 --- /dev/null +++ b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be0965a170a5574d69f85131fa78cc99589290f158863a221c860a4fcf05278 +size 312441 diff --git a/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec5.png b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..199927d8310adf2922ed2cc5bffb67cdbfa742b5 --- /dev/null +++ b/specs/Frontwing_Hatsuru Koto Naki Mirai Yori/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b145ae1f4b88906b7fb4265fda8862a204e5f48ccd69cb904073509b063e76 +size 321705 diff --git a/specs/Frontwing_ISLAND/spec1.png b/specs/Frontwing_ISLAND/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ba70582defed9873dc7492f2dab8dd7ebc9e0f44 --- /dev/null +++ b/specs/Frontwing_ISLAND/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acee84ea3658f26b9d71f2c9b68ae1203c42d18b5d9b7d7450e3382b8153661a +size 326275 diff --git a/specs/Frontwing_ISLAND/spec2.png b/specs/Frontwing_ISLAND/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..54e6d356bd8397a04e0adc6275312cb912d0261c --- /dev/null +++ b/specs/Frontwing_ISLAND/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb60e1c6d4acb36e7e0232f8e28b991ea0b6351f9aa19010a8b1dcd465f2619 +size 320874 diff --git a/specs/Frontwing_ISLAND/spec3.png b/specs/Frontwing_ISLAND/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..850d9234cf1cdee4c14cf4893ed453e42b0c50e3 --- /dev/null +++ b/specs/Frontwing_ISLAND/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49869a00280ca064ab14ac3b608cc4bd35bf2aa51a560085f0efc02eebeb0893 +size 333314 diff --git a/specs/Frontwing_ISLAND/spec4.png b/specs/Frontwing_ISLAND/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bef1146687cce37f8e37d02fe106e61e91072bd1 --- /dev/null +++ b/specs/Frontwing_ISLAND/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc080dfb16a115adb025d96e61b26e6dbbfde805f25c1577f57824563766b3f +size 327564 diff --git a/specs/Frontwing_ISLAND/spec5.png b/specs/Frontwing_ISLAND/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0466601c69635370c505d1816bd4051fcc81c908 --- /dev/null +++ b/specs/Frontwing_ISLAND/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e01123b67934357beb3de0f4e7648bf3049a7bb1a18fb26c9c41944fb58b4d +size 325277 diff --git a/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec1.png b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..602300d84f6534165fb2793c3370943ce59e2f43 --- /dev/null +++ b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526e08fdf8f30b24d31819e99f48f42ee45aa3c4bbc340d864e2bb525d3ce3fb +size 315669 diff --git a/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec2.png b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fdfd62ec927d128d18978040eb76589d27210082 --- /dev/null +++ b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a318a3d20b40ef5aa771b872e65f0e954a5313fed1dd05b62df2b0a5583bc51c +size 182616 diff --git a/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec3.png b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..150856141aabb0151373cc908c4e52979b42e490 --- /dev/null +++ b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0563651f025d85ae646f4bd7d2969aba4e28d585f7a6e123a1a11320c4c781b0 +size 316284 diff --git a/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec4.png b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2e7f5a46dfc8827063cce0ff5102d68a97f6da2c --- /dev/null +++ b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99c4720d61c4b1a5dcb2ef161c02c71e99cc7780f1164a57f70e981335d4ae5 +size 302943 diff --git a/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec5.png b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4edfddbfd535ae6632218cea17bffe49ab2447e1 --- /dev/null +++ b/specs/Frontwing_Lilja to Natsuka no Junpaku na Uso/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26720994f75dd9fb4aed91ac6837224150d6cf7256f02616174acb9378c3049 +size 296377 diff --git a/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec1.png b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4780be0d83818f2967887052c664a46448985246 --- /dev/null +++ b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc766ebb81c21dc70b967d8c9791b9aff8ee414735aa24d98f8ae40954971d43 +size 286327 diff --git a/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec2.png b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..78956d53b7574aa0ee333a9eb30c630b6759ce1b --- /dev/null +++ b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e740b7e4c516dff960ee2f0c36dc4c2851843e41009491815617408180d04455 +size 311226 diff --git a/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec3.png b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..170e707deaa844ecca5c031f7ecae8d0f764c4d1 --- /dev/null +++ b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c83fd8d1786bf60444820e87abc227a1094224981940ddf1ac37104896b7465 +size 303909 diff --git a/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec4.png b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5ee869d9788966cf9608855e3e737048999eeb --- /dev/null +++ b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb550bda110349956c1603d24ef4029d9791c02142e48dd1f530afc306677ee +size 294851 diff --git a/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec5.png b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6c35aea16c4abfc8cba2f1d54cf046b51d19656e --- /dev/null +++ b/specs/Frontwing_Loca Love - Densha x Doukyuusei/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dfb71aa74497381db6969c38a92b0c7db771911720fa710471095dc675c5a3 +size 295363 diff --git a/specs/Frontwing_Yuki Koi Melt/spec1.png b/specs/Frontwing_Yuki Koi Melt/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..12eff59948636ddc3f64b466818bcd9c051ac922 --- /dev/null +++ b/specs/Frontwing_Yuki Koi Melt/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbf85669759dde1b5a6b4cf5d104e9a7d3e85d1085b78af8630d4481c6f5d7a +size 301384 diff --git a/specs/Frontwing_Yuki Koi Melt/spec2.png b/specs/Frontwing_Yuki Koi Melt/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..798dc4cfab5969b5d3ad0393dc65b5b46f40f77f --- /dev/null +++ b/specs/Frontwing_Yuki Koi Melt/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce0e73661dd24ce16b503b91b824cd99fca0ac053a0203cfdfd8af332b160d2 +size 318202 diff --git a/specs/Frontwing_Yuki Koi Melt/spec3.png b/specs/Frontwing_Yuki Koi Melt/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9d75b3b24046c2c9d20cfbb98bf5ac2da1c96a3e --- /dev/null +++ b/specs/Frontwing_Yuki Koi Melt/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03202e9900c58d742c0fbe2149ebf38a7cfda99a9e8b0a1ab2fdbc9fac4eebd +size 254508 diff --git a/specs/Frontwing_Yuki Koi Melt/spec4.png b/specs/Frontwing_Yuki Koi Melt/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..85faf3a306219fe95e9e6ff218e53339084d94ac --- /dev/null +++ b/specs/Frontwing_Yuki Koi Melt/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1459e8b26d0a981efeaabe7746337f0cebf0dafad2a613d2995bd37461338ae7 +size 295459 diff --git a/specs/Frontwing_Yuki Koi Melt/spec5.png b/specs/Frontwing_Yuki Koi Melt/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c6050ec9053be4ac5d263818e7152f05f4620bb1 --- /dev/null +++ b/specs/Frontwing_Yuki Koi Melt/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:822baaac78682ce4cbeeb3ade2bc10f4020d40c86ab51c5c5b7eac5910affa40 +size 295901 diff --git a/specs/GIGA_Ai Kiss 2 Extra/spec1.png b/specs/GIGA_Ai Kiss 2 Extra/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e58503e0e0d2cb1046e2f70fa6a52fdc27355776 --- /dev/null +++ b/specs/GIGA_Ai Kiss 2 Extra/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3be31ed31578090bbe5c698bc3d61426ef343b64b7082715f7ab335778cea8 +size 247084 diff --git a/specs/GIGA_Ai Kiss 2 Extra/spec2.png b/specs/GIGA_Ai Kiss 2 Extra/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0fc778864eb4c57f2903861d8fbb809f432d8833 --- /dev/null +++ b/specs/GIGA_Ai Kiss 2 Extra/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190cd7109ae0606830b89a3bd64e2d22b3bbfadc2e8ef669ab03da107cefba74 +size 287871 diff --git a/specs/GIGA_Ai Kiss 2 Extra/spec3.png b/specs/GIGA_Ai Kiss 2 Extra/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..184aa8b169a75a68be0a13d40508fffd1c7e79e1 --- /dev/null +++ b/specs/GIGA_Ai Kiss 2 Extra/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68a592d20e1e6908fbbcc5d68690c2a55de5fd85f9faf7057ae3cb3c38525ea0 +size 255945 diff --git a/specs/GIGA_Ai Kiss 2 Extra/spec4.png b/specs/GIGA_Ai Kiss 2 Extra/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6a1e7187cbd4f65e51e32d300756374b72b0c17f --- /dev/null +++ b/specs/GIGA_Ai Kiss 2 Extra/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd03f72c467431f78022b0942c3f130840bdde9ec2ce014aa7ab9922c09bd94f +size 275795 diff --git a/specs/GIGA_Ai Kiss 2 Extra/spec5.png b/specs/GIGA_Ai Kiss 2 Extra/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2932227f530922b25f71b5172792a9dcf9918348 --- /dev/null +++ b/specs/GIGA_Ai Kiss 2 Extra/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80bebe6ecbca15449f26e27203f887943beef76ce9e30bed85e274af9d76bdff +size 277879 diff --git a/specs/GIGA_Ai Kiss 2/spec1.png b/specs/GIGA_Ai Kiss 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9347f0c09cd1185ca2dd3aa8e982913957e978aa --- /dev/null +++ b/specs/GIGA_Ai Kiss 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139fd7b70b0cef5c5199d9edde04f54ec79c5df0fd2732aafb2617077b7388ad +size 284737 diff --git a/specs/GIGA_Ai Kiss 2/spec2.png b/specs/GIGA_Ai Kiss 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3d84c367627c3ff87ad9e18bcef99b07bfaacd25 --- /dev/null +++ b/specs/GIGA_Ai Kiss 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46a3743d268d2e38861cd1753e4f1cf6dac28653648d2cd58fc8c2d0e0155c7 +size 277631 diff --git a/specs/GIGA_Ai Kiss 2/spec3.png b/specs/GIGA_Ai Kiss 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6c623804a8335fca6dc5cbabfffc19eb90ea9456 --- /dev/null +++ b/specs/GIGA_Ai Kiss 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c7928c9c93d06cbb7bf51d406990584ff49e17c585591c4c4937ec49fc6d7c +size 297465 diff --git a/specs/GIGA_Ai Kiss 2/spec4.png b/specs/GIGA_Ai Kiss 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..33c6a148fb07764332d821550dec79632945eb0f --- /dev/null +++ b/specs/GIGA_Ai Kiss 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733cae2284999e20f0f780ee8467d5546e1331fc06c7c90b148e83f7dde9adb5 +size 259233 diff --git a/specs/GIGA_Ai Kiss 2/spec5.png b/specs/GIGA_Ai Kiss 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7a16d31b383892b5b6eb35933209d33aa29bcf38 --- /dev/null +++ b/specs/GIGA_Ai Kiss 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032a0fb0ebba233a7d2f86fab5aa963266bcc6ec259a0daff759f5709826f8c7 +size 281503 diff --git a/specs/GIGA_Ai Kiss 3/spec1.png b/specs/GIGA_Ai Kiss 3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ddeab8663350e39c41a1daf6b46e1a348e69bf04 --- /dev/null +++ b/specs/GIGA_Ai Kiss 3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ec8a4657b7cb65059e21259ce30112fd5989cc7019c1670e10ac636f2f6665 +size 286108 diff --git a/specs/GIGA_Ai Kiss 3/spec2.png b/specs/GIGA_Ai Kiss 3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c42d05efd873de0d34663977b75c72b293695674 --- /dev/null +++ b/specs/GIGA_Ai Kiss 3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4318100f4d0d0c5933961e045992855cac9190652e3f8a23b1e7272cc0c77ee2 +size 312755 diff --git a/specs/GIGA_Ai Kiss 3/spec3.png b/specs/GIGA_Ai Kiss 3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d6912717e0dc1d4aa8f92f67cbcb4d5af667215a --- /dev/null +++ b/specs/GIGA_Ai Kiss 3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b98c6c6e80c7859ed339176c7423f92d41b26c96725896616b2ba774338831 +size 312853 diff --git a/specs/GIGA_Ai Kiss 3/spec4.png b/specs/GIGA_Ai Kiss 3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1d07725f7bbe3b2ae6f36333f8fe087c2ebd06 --- /dev/null +++ b/specs/GIGA_Ai Kiss 3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752198f8246e844d7fd5281f73fd4db78d37c624180deb8b9c02bb0754a205f7 +size 294840 diff --git a/specs/GIGA_Ai Kiss 3/spec5.png b/specs/GIGA_Ai Kiss 3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6e71b64e5ccbbb7abf03fca03b787d1524377d0c --- /dev/null +++ b/specs/GIGA_Ai Kiss 3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e760e6fa21ccebcecd8e6dd3ef36e1c5e8e1616a374099d7d591717ac81510 +size 302991 diff --git a/specs/GIGA_Ai Kiss FD - Nanase After/spec1.png b/specs/GIGA_Ai Kiss FD - Nanase After/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d796ce45e246777e43f77265a1285fd184c3fe43 --- /dev/null +++ b/specs/GIGA_Ai Kiss FD - Nanase After/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9a664cbbf0faf44440cceb99d43ec1feca766884668acf75ad10d7ab2e1cf3 +size 350718 diff --git a/specs/GIGA_Ai Kiss FD - Nanase After/spec2.png b/specs/GIGA_Ai Kiss FD - Nanase After/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..107f35be48df8528f9b1cbf822124bf13dd6937d --- /dev/null +++ b/specs/GIGA_Ai Kiss FD - Nanase After/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30f0543f95258ea1b4fcec358dcf7a3d9bd6a216ed89070d8b0f03d2a2aee24 +size 323247 diff --git a/specs/GIGA_Ai Kiss FD - Nanase After/spec3.png b/specs/GIGA_Ai Kiss FD - Nanase After/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ef177524ce8dc86e79b86e238544b133355151b3 --- /dev/null +++ b/specs/GIGA_Ai Kiss FD - Nanase After/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754d501254c295e69ba2784cf23ec0271425cbde0667bc4ce0f435b269374850 +size 356293 diff --git a/specs/GIGA_Ai Kiss FD - Nanase After/spec4.png b/specs/GIGA_Ai Kiss FD - Nanase After/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..28b9623a8fca6202d75b0b4dd7050abff495db5b --- /dev/null +++ b/specs/GIGA_Ai Kiss FD - Nanase After/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0097786dfa7b430cb66b4d76bd175672f017b62e725ebd9b6a3543a7ba8f5a6 +size 327528 diff --git a/specs/GIGA_Ai Kiss FD - Nanase After/spec5.png b/specs/GIGA_Ai Kiss FD - Nanase After/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..772c03e5ba7035bb289b645f05ba29afb0e932ed --- /dev/null +++ b/specs/GIGA_Ai Kiss FD - Nanase After/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047dac6a99b5cce496cd8e6da9bbe15c87068182d141660fa07c7f8d97a05422 +size 309678 diff --git a/specs/GIGA_Ai Kiss/spec1.png b/specs/GIGA_Ai Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..63daef47d6951479e846ff27d8f6337a41341b96 --- /dev/null +++ b/specs/GIGA_Ai Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e094d80bc1a050f010866abc30937799393adecc38b8c3fd8e2eeccca48bce24 +size 259199 diff --git a/specs/GIGA_Ai Kiss/spec2.png b/specs/GIGA_Ai Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cc2e1ea752bef3066aa75f1691eef33419d28c2d --- /dev/null +++ b/specs/GIGA_Ai Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032824200809772d3a6acfbfc1c00809355c6a7d25f5286a4de769ef718ba246 +size 281859 diff --git a/specs/GIGA_Ai Kiss/spec3.png b/specs/GIGA_Ai Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4032b7f926944ddad551306a217a0dc42c1313e8 --- /dev/null +++ b/specs/GIGA_Ai Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13304dadc3f07dc702e6cf6f422dc264d88684a03b2488669397c1be862c0f05 +size 259781 diff --git a/specs/GIGA_Ai Kiss/spec4.png b/specs/GIGA_Ai Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e19635b451f6365bf88f81936194cc3b02ca089b --- /dev/null +++ b/specs/GIGA_Ai Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb935e78abfc87f1143380fc9cd16b7af725357e36e6eea31141aec19d0b657f +size 241870 diff --git a/specs/GIGA_Ai Kiss/spec5.png b/specs/GIGA_Ai Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5cceac1b65715db69cd09ab89046d768da6aa00c --- /dev/null +++ b/specs/GIGA_Ai Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b436b8fb6bc88ec41354f2fdcdb0be5d059917f83b17f0b06729b14fc6f094de +size 286780 diff --git a/specs/GIGA_Aji Kiss/spec1.png b/specs/GIGA_Aji Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..39a397312df9000c89f4fdb9f365720b1f575787 --- /dev/null +++ b/specs/GIGA_Aji Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8bd93b9736dee2b5fa5ce222f5d1446aa1996a5e65722f0f69d03183b4c9910 +size 221432 diff --git a/specs/GIGA_Aji Kiss/spec2.png b/specs/GIGA_Aji Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a64984e89055d0c0f5a1477d809b18acf15b7e37 --- /dev/null +++ b/specs/GIGA_Aji Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff66f6b14ba9e0d527c02a6fdd2aa20fc71fbc62c2360bca57a790199529a638 +size 280661 diff --git a/specs/GIGA_Aji Kiss/spec3.png b/specs/GIGA_Aji Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4c3b319c18ddd433b068f67417493f0f13145787 --- /dev/null +++ b/specs/GIGA_Aji Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc515095e0071a88a996296e435d250a4278882a4a687dac5bb22b053cf1811 +size 273684 diff --git a/specs/GIGA_Aji Kiss/spec4.png b/specs/GIGA_Aji Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..402d7f1e593c16b0b2ae3e7dcdc36cf357cd310e --- /dev/null +++ b/specs/GIGA_Aji Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d69b08cd25cb2528b344d934d798edc426095299c5c8fbec319b416a2e0b14 +size 316290 diff --git a/specs/GIGA_Aji Kiss/spec5.png b/specs/GIGA_Aji Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..aa56b4028d4cf2778415ec64986c7321cd9f55f6 --- /dev/null +++ b/specs/GIGA_Aji Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7dac3aa5432c4c901edde867b701ec3f95b5e3bc2692905e3829ee7364768f +size 260196 diff --git a/specs/GIGA_Amaekata wa Kanojo Nari ni/spec1.png b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..660dfa61ad44c6c338580360272ac723915f6692 --- /dev/null +++ b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc378acd83b0158367be4186adac67a45abcf70685f5268cada07d7716b6de3c +size 290774 diff --git a/specs/GIGA_Amaekata wa Kanojo Nari ni/spec2.png b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..840bf622bbe353f163b8f7c06ef539cb9751937c --- /dev/null +++ b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a70af20740369db7cf379e61b1d733986a99b4114c4dab20d854a1fbd618ac5 +size 257762 diff --git a/specs/GIGA_Amaekata wa Kanojo Nari ni/spec3.png b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5f41f85d399694f52e238d1645e3eb88129b02da --- /dev/null +++ b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6a343473ce8a678a33c60c267e484575d1f912bdd867ac6c11df1c68735f08 +size 291479 diff --git a/specs/GIGA_Amaekata wa Kanojo Nari ni/spec4.png b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd9c8e36806a9384700411b9292061daa142202 --- /dev/null +++ b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14a3b37d97b00a66d5973dbabc203e0d251b930e1fad8cacc5b85ccfc50109d +size 272149 diff --git a/specs/GIGA_Amaekata wa Kanojo Nari ni/spec5.png b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8a03cd4d827a8fba196d7d5f505209c69ca2063f --- /dev/null +++ b/specs/GIGA_Amaekata wa Kanojo Nari ni/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c69c6512929134b3ca282f57db90ed20a4e63add1fe2bffbd628eefa2e43e5c +size 286108 diff --git a/specs/GIGA_Aonatsu Line/spec1.png b/specs/GIGA_Aonatsu Line/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..886fc9600a24502b56e703309de99222f8f80a25 --- /dev/null +++ b/specs/GIGA_Aonatsu Line/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd62939ee40f49a67151c69d30c9904f79d2b743b9a1141f28fa09965f712aee +size 280489 diff --git a/specs/GIGA_Aonatsu Line/spec2.png b/specs/GIGA_Aonatsu Line/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9dd5e30a76c7ae1cf6d581fe6a5ad29b6e8a48d6 --- /dev/null +++ b/specs/GIGA_Aonatsu Line/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a12767d9f8f6daca0a0bb75014ba9185af65e4caf5583337e0d15978ffb0866 +size 244823 diff --git a/specs/GIGA_Aonatsu Line/spec3.png b/specs/GIGA_Aonatsu Line/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e28290c9ede7149d8198159149fefb38b923bb6b --- /dev/null +++ b/specs/GIGA_Aonatsu Line/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309873466edd5af80292f93e029b29f0d87cbb0f404f611ee11cb3076eafed9c +size 255648 diff --git a/specs/GIGA_Aonatsu Line/spec4.png b/specs/GIGA_Aonatsu Line/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..12744795bb70b7bb04970620d35d8eab3fee0747 --- /dev/null +++ b/specs/GIGA_Aonatsu Line/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387f19cb07a00815a996bc3cc30bb5bf2c60762e688d1d7c9c5fb3c691adc96c +size 274740 diff --git a/specs/GIGA_Aonatsu Line/spec5.png b/specs/GIGA_Aonatsu Line/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1ee76847d9c589239cd02eaf2dbfb376eec4802e --- /dev/null +++ b/specs/GIGA_Aonatsu Line/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52650295fd831581fa109908689eac9e639fd113ece0bc130a16623c802bd1c4 +size 291415 diff --git a/specs/GIGA_BALDR BRINGER/spec1.png b/specs/GIGA_BALDR BRINGER/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..704b6e744dcf1234fa99ebaf97d8b8a0b6204d66 --- /dev/null +++ b/specs/GIGA_BALDR BRINGER/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6942cd14bf8c4e04d089d4a376fc1b1b872a2e559faf8067bcc8068a5e01c8 +size 296016 diff --git a/specs/GIGA_BALDR BRINGER/spec2.png b/specs/GIGA_BALDR BRINGER/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..36647878d99f17400517d2752b94a3abae6dad25 --- /dev/null +++ b/specs/GIGA_BALDR BRINGER/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d70c362a59eb7d9a01dfa20f9037853a20422cdb49ff0314a801ddb1341f83b +size 227470 diff --git a/specs/GIGA_BALDR BRINGER/spec3.png b/specs/GIGA_BALDR BRINGER/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1013333f0e94100a767cd64e3c62a50af80f3f23 --- /dev/null +++ b/specs/GIGA_BALDR BRINGER/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d222ab6cbf05f099e6c2ef486237d5b3adf344f26ba94dc2c267ea42d309eb +size 251635 diff --git a/specs/GIGA_BALDR BRINGER/spec4.png b/specs/GIGA_BALDR BRINGER/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd66427b80b873a0e6fdf38221bfb8ef61d0243 --- /dev/null +++ b/specs/GIGA_BALDR BRINGER/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e8c1974ffddc8dc7f34cf5a8fddbe76411d3bc0a4e94814122b6b4103fa079 +size 274434 diff --git a/specs/GIGA_BALDR BRINGER/spec5.png b/specs/GIGA_BALDR BRINGER/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..41201a1708b6c8f7e3e549c3fc6a1fc3b5331901 --- /dev/null +++ b/specs/GIGA_BALDR BRINGER/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ec0f90188275797d85ae360f9f05283533b668ce801a20d98d9330aa9f660a +size 232987 diff --git a/specs/GIGA_BALDR SKY ZERO EXTREME/spec1.png b/specs/GIGA_BALDR SKY ZERO EXTREME/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..406393b30ed0a8210213c9a40ac005970f4f79a1 --- /dev/null +++ b/specs/GIGA_BALDR SKY ZERO EXTREME/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d14b9b7d8e5808e1f638e1f5e2c39e27006d0108a22fb6329ea37c23e15143 +size 318886 diff --git a/specs/GIGA_BALDR SKY ZERO EXTREME/spec2.png b/specs/GIGA_BALDR SKY ZERO EXTREME/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d215436a3c2988edd030ff75226d85cf78baf7a8 --- /dev/null +++ b/specs/GIGA_BALDR SKY ZERO EXTREME/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f80512e468092f6842439aad7c5546011c8a806802914f527bf6addf576f39c +size 327930 diff --git a/specs/GIGA_BALDR SKY ZERO EXTREME/spec3.png b/specs/GIGA_BALDR SKY ZERO EXTREME/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0c5510c63c09e8bcd8a7cd2520b2b8144b624c5 --- /dev/null +++ b/specs/GIGA_BALDR SKY ZERO EXTREME/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb571dfa649880e80a374bf6c60cabfb41b68816b992fb8440d8623df3fa5ec3 +size 327728 diff --git a/specs/GIGA_BALDR SKY ZERO EXTREME/spec4.png b/specs/GIGA_BALDR SKY ZERO EXTREME/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1ab4e9740c8e84d9450ae15a85f0c0ced4470cab --- /dev/null +++ b/specs/GIGA_BALDR SKY ZERO EXTREME/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08662b669a9529fd436886dbc48e51d95a7c2922cdd528c309f4ac51c2ca3c2d +size 310535 diff --git a/specs/GIGA_BALDR SKY ZERO EXTREME/spec5.png b/specs/GIGA_BALDR SKY ZERO EXTREME/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d00c66dc3e366cfa4a297c70c93da4430210fa21 --- /dev/null +++ b/specs/GIGA_BALDR SKY ZERO EXTREME/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae1084134517ca6946d192705ab81826f5f6fdf205a04235c612c5598993aad +size 298052 diff --git a/specs/GIGA_Full Kiss S/spec1.png b/specs/GIGA_Full Kiss S/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bfff6d9f1fc305fb81c42273468a09f99dbb801f --- /dev/null +++ b/specs/GIGA_Full Kiss S/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c050e2c534f086fa2673247b5e7606343edba26a1287b00e76bf349efc4f8c3 +size 284514 diff --git a/specs/GIGA_Full Kiss S/spec2.png b/specs/GIGA_Full Kiss S/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e079e3dc8a9b6abebe20aa4ca761f82e8aa96ae8 --- /dev/null +++ b/specs/GIGA_Full Kiss S/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0d6560f0c45e49b1c7d53e83ab3ff842a4a7d4cd8aaa54f03dc837fd788e40 +size 276230 diff --git a/specs/GIGA_Full Kiss S/spec3.png b/specs/GIGA_Full Kiss S/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..aa5800dfcc868e0552dab378da1e660c9f90c463 --- /dev/null +++ b/specs/GIGA_Full Kiss S/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c048baf9b3bf6c6f2c0b4fc5714435d652a943477e19455b4153be20da87ca12 +size 262632 diff --git a/specs/GIGA_Full Kiss S/spec4.png b/specs/GIGA_Full Kiss S/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..494e50c3ac32195ae26304f2ce7b84a0b84309d0 --- /dev/null +++ b/specs/GIGA_Full Kiss S/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed253e48581d4cb0f77dc00bd4bf19336248876818e75768eb28ab58ba00daf +size 275988 diff --git a/specs/GIGA_Full Kiss S/spec5.png b/specs/GIGA_Full Kiss S/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5c04364c4b2dd476f5f0a9693d3b0b18f3cdf7da --- /dev/null +++ b/specs/GIGA_Full Kiss S/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:270c6a4a04e555fd466f42f21c48bd53e9dd6cb7b4cbc775d44a667de9c69b0e +size 252948 diff --git a/specs/GIGA_Full Kiss/spec1.png b/specs/GIGA_Full Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a75dad74437639d028944f84a3e086fcecf2bc03 --- /dev/null +++ b/specs/GIGA_Full Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93fd88ea7177b2d878741fba110a643d9259d45d34e4fc804df59d50de2b4738 +size 273467 diff --git a/specs/GIGA_Full Kiss/spec2.png b/specs/GIGA_Full Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..72ad2f2b6ec96ad41e1dad3a4af8c0f70ad756f5 --- /dev/null +++ b/specs/GIGA_Full Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a5a77ec9ad6c48e6c8ec4abef4fb6496e10b85015213bd90165da4e8a43e82 +size 321125 diff --git a/specs/GIGA_Full Kiss/spec3.png b/specs/GIGA_Full Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..940037857df846b4b382391ea3eb75c17de4b08d --- /dev/null +++ b/specs/GIGA_Full Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908e7ba4cf1478e7104747d60fe960c5266395c85923601fce387bd037a42ad9 +size 266097 diff --git a/specs/GIGA_Full Kiss/spec4.png b/specs/GIGA_Full Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5bb7eaf0313e9c8b81c256ee9ba0a338d6afbd67 --- /dev/null +++ b/specs/GIGA_Full Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2760fb1a98aaaf8c996d26b919ad5c02cec9ca66c24d10f10665ecd1bc1f1ecb +size 293236 diff --git a/specs/GIGA_Full Kiss/spec5.png b/specs/GIGA_Full Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1a32ee71e30da18f347e2f989846224b462713fb --- /dev/null +++ b/specs/GIGA_Full Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499a537b6e14a58f1a9d7fff0a21da02bfd2827d900f457f0cdb252eec427022 +size 327733 diff --git a/specs/GIGA_Fuyu Kiss/spec1.png b/specs/GIGA_Fuyu Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..108599224e673cb9fb8757e15ed91de364ca9e31 --- /dev/null +++ b/specs/GIGA_Fuyu Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d94e8e081282de4f2c6c439df1a772925820f01f29842e918ad4883d894406a +size 245587 diff --git a/specs/GIGA_Fuyu Kiss/spec2.png b/specs/GIGA_Fuyu Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8632ad1e88fc04847ebdce33a248e3e831e4eb40 --- /dev/null +++ b/specs/GIGA_Fuyu Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f85dd4f28b627b06b7d52bcc87d5e26e40358183056f5920808e35614a94e14 +size 282499 diff --git a/specs/GIGA_Fuyu Kiss/spec3.png b/specs/GIGA_Fuyu Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5cea12e3acadff5aab19126a68b410aef81c71bf --- /dev/null +++ b/specs/GIGA_Fuyu Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a78a53ff60eac1ecfb774f8852b36bdc7e800f6f5598c610242ebe13389e231 +size 259352 diff --git a/specs/GIGA_Fuyu Kiss/spec4.png b/specs/GIGA_Fuyu Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7f78399d46d99f0b8c66ec6e0f4fce212832208a --- /dev/null +++ b/specs/GIGA_Fuyu Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f4a5ebd27fd8dac797ceafb579e392687c2f7f02e6eb03ce02dd86e9f1534ad +size 264091 diff --git a/specs/GIGA_Fuyu Kiss/spec5.png b/specs/GIGA_Fuyu Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a1ebb4f724771c7f9acc01deaa0de787c62f0b95 --- /dev/null +++ b/specs/GIGA_Fuyu Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b645233277a2bbf5ed4812b8dc56e53d54ff7ba1fae8a63e22720e578cbc298c +size 201398 diff --git a/specs/GIGA_Girls Frantic Clan/spec1.png b/specs/GIGA_Girls Frantic Clan/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1ed830a89f89990be912789104fb84a16dff83bb --- /dev/null +++ b/specs/GIGA_Girls Frantic Clan/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fafd637226d3fad274521b4097b076274eb4b284bf3a6ba432adab92203e31b +size 298967 diff --git a/specs/GIGA_Girls Frantic Clan/spec2.png b/specs/GIGA_Girls Frantic Clan/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..19bf15e2f5b3dbeba7d63bc2c9f5309b22b31806 --- /dev/null +++ b/specs/GIGA_Girls Frantic Clan/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e00f5c58ec94f44add8332fa9136f10261cf0c7f4fa0fa26834c378612f0d8 +size 319901 diff --git a/specs/GIGA_Girls Frantic Clan/spec3.png b/specs/GIGA_Girls Frantic Clan/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c47afb6e2ce32d1b21c144f383c3e924e19d576c --- /dev/null +++ b/specs/GIGA_Girls Frantic Clan/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4e4fcf2c8c8dddcecf8c899631894548df428ad4238c013495bf21e39c0c77 +size 329047 diff --git a/specs/GIGA_Girls Frantic Clan/spec4.png b/specs/GIGA_Girls Frantic Clan/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3362b4923ccdc676fceda4f6fd60c15d3b705fbe --- /dev/null +++ b/specs/GIGA_Girls Frantic Clan/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cbdd600adc03b8efda85da98d0c34769f8412f145d8d4c118175c06aa38babe +size 201156 diff --git a/specs/GIGA_Girls Frantic Clan/spec5.png b/specs/GIGA_Girls Frantic Clan/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bfeb5513e5176f1e7a2551fb3da2a4524fce1243 --- /dev/null +++ b/specs/GIGA_Girls Frantic Clan/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8def9a792f3d8c96b3d9c2f1efc8d9e000d1e52fd1da65d2572adaeb2312758a +size 324763 diff --git a/specs/GIGA_Glass Hime to Kagami no Juusha/spec1.png b/specs/GIGA_Glass Hime to Kagami no Juusha/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8485a37a0ed8226a7a03e17f48d3b7a21cf2e9ab --- /dev/null +++ b/specs/GIGA_Glass Hime to Kagami no Juusha/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46d17f63c659f151cd8492b98fadd70514d4c7b8f71750a8a8bc0fc4ff021b4 +size 269720 diff --git a/specs/GIGA_Glass Hime to Kagami no Juusha/spec2.png b/specs/GIGA_Glass Hime to Kagami no Juusha/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9e0b1aae7168ca8151879e09857b641fdfc190d7 --- /dev/null +++ b/specs/GIGA_Glass Hime to Kagami no Juusha/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e280b846c5c65ee47edc8418d62ca195b0d6998838374501d8beb4395ac189a1 +size 278030 diff --git a/specs/GIGA_Glass Hime to Kagami no Juusha/spec3.png b/specs/GIGA_Glass Hime to Kagami no Juusha/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..007a55420b2ca76c9840f07ccd686d907aa175a3 --- /dev/null +++ b/specs/GIGA_Glass Hime to Kagami no Juusha/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab83134b3c9afc78289e5a3fe7fbc38aef52c9922ba62ceda0bf1ae2002c4912 +size 302327 diff --git a/specs/GIGA_Glass Hime to Kagami no Juusha/spec4.png b/specs/GIGA_Glass Hime to Kagami no Juusha/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae4cfd62cad53b5ea1d3620a66a55b72b0d6919c --- /dev/null +++ b/specs/GIGA_Glass Hime to Kagami no Juusha/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeaf2630a0442f52efb73d5a7f6f46a48f34df2e842c176e63e33ab02c1916eb +size 248369 diff --git a/specs/GIGA_Glass Hime to Kagami no Juusha/spec5.png b/specs/GIGA_Glass Hime to Kagami no Juusha/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..09abd38727529891d5687d5db5765f018df3af71 --- /dev/null +++ b/specs/GIGA_Glass Hime to Kagami no Juusha/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9f829e88489d4a03e9bb03be3d4b8a3cd41458bcaba4a388509e14d82af27e +size 261651 diff --git a/specs/GIGA_Haru Kiss/spec1.png b/specs/GIGA_Haru Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..10a507faf2c9322af0b14384a24ce8b34b8d7459 --- /dev/null +++ b/specs/GIGA_Haru Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0093c09dc902f0fd23e93e4fb57de472bef14facc332666abb84bfb228dad38 +size 271524 diff --git a/specs/GIGA_Haru Kiss/spec2.png b/specs/GIGA_Haru Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f4087065ae10c48f64d32a849036584cf7be9e47 --- /dev/null +++ b/specs/GIGA_Haru Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c33b7d82bda6e69cb403cfdaa3a1c81e95bb5b6c5fb34d1c9fa25dcc810e1d +size 316216 diff --git a/specs/GIGA_Haru Kiss/spec3.png b/specs/GIGA_Haru Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ed7966a1dfaf24c3c8917ee7da61a979cef9c1ef --- /dev/null +++ b/specs/GIGA_Haru Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0231e2df7b8294cd8c9ff51eb49ad7976a00dc1bd72ef2cc760511e59e6d6049 +size 303208 diff --git a/specs/GIGA_Haru Kiss/spec4.png b/specs/GIGA_Haru Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..aac02bb666d505ba31ccd578c8fe5dce32ca482b --- /dev/null +++ b/specs/GIGA_Haru Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c06bd6807befc26f8e2235fda7fda10413dcd02e5861c2d873f3977363f4b45 +size 304434 diff --git a/specs/GIGA_Haru Kiss/spec5.png b/specs/GIGA_Haru Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4b87ae55b52244bd0f70f924cf235b42cea873 --- /dev/null +++ b/specs/GIGA_Haru Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0285e35a3b67e283c86ddf3da401306334a3dc5ac3ef4c9efc7b6ae64d1b88e +size 298294 diff --git a/specs/GIGA_Harvest OverRay/spec1.png b/specs/GIGA_Harvest OverRay/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4322cbe8cc366755778cb6fad0b027a07b043524 --- /dev/null +++ b/specs/GIGA_Harvest OverRay/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcf8229fbca25168630aa48b4f4c3408771a131d49df20362a9292c85aff0be +size 285434 diff --git a/specs/GIGA_Harvest OverRay/spec2.png b/specs/GIGA_Harvest OverRay/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d5cf148db75f72213eab27f44594ef083da81943 --- /dev/null +++ b/specs/GIGA_Harvest OverRay/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45894a2d09bac78d73160f19e303fcf5a7a4925d5bd4396a170f1f48c52fa296 +size 310174 diff --git a/specs/GIGA_Harvest OverRay/spec3.png b/specs/GIGA_Harvest OverRay/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bc5b372a764b3502ae9b806754aee74e085cac73 --- /dev/null +++ b/specs/GIGA_Harvest OverRay/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34cec64be5eb1a387c33ab7c816b619dcaba023267c0d02362e66863e8ccdcd1 +size 300193 diff --git a/specs/GIGA_Harvest OverRay/spec4.png b/specs/GIGA_Harvest OverRay/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f7f6254ca7ce4f618ea06c9acedbb3c829011848 --- /dev/null +++ b/specs/GIGA_Harvest OverRay/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fde30e2d00cc1767ac9a3f3dc70645c674021cf42c376958706f9eaba67fad4 +size 307161 diff --git a/specs/GIGA_Harvest OverRay/spec5.png b/specs/GIGA_Harvest OverRay/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..56a98214311ed89a1d0bfe14d8172ef846f3133d --- /dev/null +++ b/specs/GIGA_Harvest OverRay/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607d99d31972b38987c1faa3662df3b3f7cb14196f4a2119fbb94bdd254ecc27 +size 309836 diff --git a/specs/GIGA_Hotch Kiss/spec1.png b/specs/GIGA_Hotch Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ca84ce0d813e5a584925c1af19ce35017579b6 --- /dev/null +++ b/specs/GIGA_Hotch Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8d8fad4a4c384783d26222cfcc0cf30fa82f75c63d7dd3dc0106b2d658770f +size 313780 diff --git a/specs/GIGA_Hotch Kiss/spec2.png b/specs/GIGA_Hotch Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7da1e65828a8b23c914cf83abf2730f57e476715 --- /dev/null +++ b/specs/GIGA_Hotch Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6947c5c077cc58e7dde6e9d1da18985041de9bbf76cb3e484fc3069cf87389e3 +size 309886 diff --git a/specs/GIGA_Hotch Kiss/spec3.png b/specs/GIGA_Hotch Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7a5da5ab701694405e0bc30f09ec1a003c4d094d --- /dev/null +++ b/specs/GIGA_Hotch Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9020a51f5cdb69df3e63bcdf3659dfe1558b3e1a0be73e6aa778c7a163fbf8e7 +size 322461 diff --git a/specs/GIGA_Hotch Kiss/spec4.png b/specs/GIGA_Hotch Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0b7eb4e4d99b6f9ad44d36e5ec34a9ebab57cc50 --- /dev/null +++ b/specs/GIGA_Hotch Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241cdcee6206be64492ba76b95cb825925af697f5b310181cc56edd5bc2de1af +size 305509 diff --git a/specs/GIGA_Hotch Kiss/spec5.png b/specs/GIGA_Hotch Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..aa81d16acd588ee82555472e60a785c75656d4e2 --- /dev/null +++ b/specs/GIGA_Hotch Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef887573fd35f9683c26339ea74ea14fffdaee650878b75922159da9de20caa +size 309989 diff --git a/specs/GIGA_JINKI RESURRECTION/spec1.png b/specs/GIGA_JINKI RESURRECTION/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f1565d0eec5ea3e6b6bece4a206c812cbda89f7 --- /dev/null +++ b/specs/GIGA_JINKI RESURRECTION/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e76cb88e48c406004b8157ed6a51ff07c23c060fb9d53d8225807fd764d401 +size 280162 diff --git a/specs/GIGA_JINKI RESURRECTION/spec2.png b/specs/GIGA_JINKI RESURRECTION/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..56beb456734c01007854a5e2c174ea3c33c166cd --- /dev/null +++ b/specs/GIGA_JINKI RESURRECTION/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1eca817a985fb81038b4a272806706e418eb985df79fedfcb3aa3fb32c8f65 +size 267577 diff --git a/specs/GIGA_JINKI RESURRECTION/spec3.png b/specs/GIGA_JINKI RESURRECTION/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e6428fee53464bf7d60efe1dcdcdb22c9747f56d --- /dev/null +++ b/specs/GIGA_JINKI RESURRECTION/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4637b7189909065c8359b2be16b6d1a58e4c607818f8cec8fe40130444afe3e7 +size 279789 diff --git a/specs/GIGA_JINKI RESURRECTION/spec4.png b/specs/GIGA_JINKI RESURRECTION/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..eda0c1d5d429b92a14d0aa07ba8196d194e03477 --- /dev/null +++ b/specs/GIGA_JINKI RESURRECTION/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9d5c8645f348e21e18eb9e2d0b53668c7fe064eef1958c4ebf754ca4964a7e +size 289795 diff --git a/specs/GIGA_JINKI RESURRECTION/spec5.png b/specs/GIGA_JINKI RESURRECTION/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..afb1eca9c336e12717aa7727b22339d1b6faa94a --- /dev/null +++ b/specs/GIGA_JINKI RESURRECTION/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0a2c986c557fb051ce12ded5877b9849a0ebcea23f21f7a57b56c0ccdc0a30 +size 312996 diff --git a/specs/GIGA_Kimi no Hitomi ni Hit Me/spec1.png b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d333535698f31367d26b928b08991517d9fca761 --- /dev/null +++ b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7accbe95de86b93d8441788bcef2cf881009fc363ff30ec1347bad7ea69dfc8d +size 303221 diff --git a/specs/GIGA_Kimi no Hitomi ni Hit Me/spec2.png b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f523f2cd53d3978142ed01ac49fe48b05bbfe0d --- /dev/null +++ b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b516d09df7a2426f8f77515d79adbf551ec0c6f2be190849e7ba68897a06b498 +size 316611 diff --git a/specs/GIGA_Kimi no Hitomi ni Hit Me/spec3.png b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5491d8e2da04abaa15fceb4130bca8a9180a5543 --- /dev/null +++ b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141108a974b42b92e97d470e6913ee1162dd95cec57e1522516a2c7c94eac896 +size 256822 diff --git a/specs/GIGA_Kimi no Hitomi ni Hit Me/spec4.png b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8cb9edc155891b39415c1f003193787a0e17e3aa --- /dev/null +++ b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9903749d6335a7e4e5bf3a4b1bcc97bd585ff65ae3ed879484a21f1e7a9446 +size 293256 diff --git a/specs/GIGA_Kimi no Hitomi ni Hit Me/spec5.png b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..93b09b0e3b8a3c14f08bf92f276a43d16cba2bc5 --- /dev/null +++ b/specs/GIGA_Kimi no Hitomi ni Hit Me/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b15e994a381ec8066ef6e0d8a225ab4d6dfaf066d88755b54395ae7cd9cd8f2 +size 305121 diff --git a/specs/GIGA_Kiss Ato/spec1.png b/specs/GIGA_Kiss Ato/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..035faa3b20c25f4b909ce163b2a458ce2d78275b --- /dev/null +++ b/specs/GIGA_Kiss Ato/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f01fdbae24bfb6166f02d2ca024a6b57f715d64bb422d91ccad083ea229b8d4 +size 300714 diff --git a/specs/GIGA_Kiss Ato/spec2.png b/specs/GIGA_Kiss Ato/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..030670dabfc48684a8dec9464e62b434948b6625 --- /dev/null +++ b/specs/GIGA_Kiss Ato/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9eda697acd8fd7919af11120ed3935bbe8c4f8f84376316b21e44f449bd5c8 +size 301839 diff --git a/specs/GIGA_Kiss Ato/spec3.png b/specs/GIGA_Kiss Ato/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0cda355ebd8a1d86707921800490590e28449b38 --- /dev/null +++ b/specs/GIGA_Kiss Ato/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bfd86a8c6eebc07a43f03e1cbb5f111d107435a1443116a1bf22a1a554208d0 +size 297189 diff --git a/specs/GIGA_Kiss Ato/spec4.png b/specs/GIGA_Kiss Ato/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c768336e20a60a296894e12a2b07a79b88cea60a --- /dev/null +++ b/specs/GIGA_Kiss Ato/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d24b85846956b3fc0519d022d48e65c908bae69a1e42a9a89e9e796323dc45a +size 317601 diff --git a/specs/GIGA_Kiss Ato/spec5.png b/specs/GIGA_Kiss Ato/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b1ec83288bc416a4181c7e486e4da15aeabd3ab4 --- /dev/null +++ b/specs/GIGA_Kiss Ato/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646571d1f0716c3f40ddf62051d50fc56798c7af5e1c18b77d59a9756e406bfc +size 322327 diff --git a/specs/GIGA_Kiss Bell/spec1.png b/specs/GIGA_Kiss Bell/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8095180c289f9d691438c342ed1a474399bcfe8d --- /dev/null +++ b/specs/GIGA_Kiss Bell/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cff9c3950400b56a86f21b56a46e710332a13211c09c4ba876f639db801329c +size 314919 diff --git a/specs/GIGA_Kiss Bell/spec2.png b/specs/GIGA_Kiss Bell/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8b9050a3be3c3e22487079e76f07ff9c5bed473e --- /dev/null +++ b/specs/GIGA_Kiss Bell/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d6f4cf3321c817931aee080b41208fa4925251c7bdc0f50d20429f3f00677d +size 323465 diff --git a/specs/GIGA_Kiss Bell/spec3.png b/specs/GIGA_Kiss Bell/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c50a7b1889466b978ee2ddee22cb8d2d8459eb --- /dev/null +++ b/specs/GIGA_Kiss Bell/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc9bf481ee532c2717f268847329df023805d790d4fc38ee0e9c5ee97fdd527 +size 299554 diff --git a/specs/GIGA_Kiss Bell/spec4.png b/specs/GIGA_Kiss Bell/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..035d0a2f430454fb5985598665225c8c4ea71ab7 --- /dev/null +++ b/specs/GIGA_Kiss Bell/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd106b73f52547d8a732b6488a1f3cfca84a1ce5445b27a8c78cc1b58dcaeda5 +size 311780 diff --git a/specs/GIGA_Kiss Bell/spec5.png b/specs/GIGA_Kiss Bell/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..04b916817cd59813c026ef42a089f04334b9b6ee --- /dev/null +++ b/specs/GIGA_Kiss Bell/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d26e62a2b51f6b680037d119ef49f3b58c9bbf4bbe4c865a0c5d4e7c8afad3b +size 312304 diff --git a/specs/GIGA_Mell Kiss/spec1.png b/specs/GIGA_Mell Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..cb25a538511853698914ed9aee485f45e18ac791 --- /dev/null +++ b/specs/GIGA_Mell Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aceecf86af8e7a15cdda2cd21e9d101a794359d13c04da8e43c9b88ffe6434e +size 255986 diff --git a/specs/GIGA_Mell Kiss/spec2.png b/specs/GIGA_Mell Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..484f63404a3450c5f5fd64cb463359e781e27da0 --- /dev/null +++ b/specs/GIGA_Mell Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2f7dbccb1b20c5636547f016dd8cc48ac3a4746469264805d7f5d0352ca5b9 +size 191828 diff --git a/specs/GIGA_Mell Kiss/spec3.png b/specs/GIGA_Mell Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..814f3b2a934a8b59fd6bd2fc37e76917e37a5f49 --- /dev/null +++ b/specs/GIGA_Mell Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a867e6e53d153d8af36198c6b009e63db4145a45d4c406b1b40c4948155aea39 +size 244722 diff --git a/specs/GIGA_Mell Kiss/spec4.png b/specs/GIGA_Mell Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f25b713cabcfedd6ba67e9b2540cccf42d6eb9f5 --- /dev/null +++ b/specs/GIGA_Mell Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc59e81215fa61e7b984d9ad696611cd8f823c6a1a078bc9d18bd446b615c1d +size 238473 diff --git a/specs/GIGA_Mell Kiss/spec5.png b/specs/GIGA_Mell Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1b2f9114448d14c00e93a36d12f96cdb9cb6e2bd --- /dev/null +++ b/specs/GIGA_Mell Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2f0fbcf482206808542617a80dd5c2dbe5ae99fd06e7ad89c5ba8b67d815ad +size 204946 diff --git a/specs/GIGA_Passage! ~Passage of Life~/spec1.png b/specs/GIGA_Passage! ~Passage of Life~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1aa012154da8c6d322a78ce81180a231d9e5635c --- /dev/null +++ b/specs/GIGA_Passage! ~Passage of Life~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a308caed868aaafae3a931d3f1f33c271d115f3b9c3240532761c479427a4620 +size 297537 diff --git a/specs/GIGA_Passage! ~Passage of Life~/spec2.png b/specs/GIGA_Passage! ~Passage of Life~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b13cfc4d35124e3cdec162b3aa749570dee26644 --- /dev/null +++ b/specs/GIGA_Passage! ~Passage of Life~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092b9d55519e018503c29ce87b1fc8325fd21453f6885f9be3c50e999d7b177f +size 301491 diff --git a/specs/GIGA_Passage! ~Passage of Life~/spec3.png b/specs/GIGA_Passage! ~Passage of Life~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8df9c836afa927f0ef258c7305570b05398fa62e --- /dev/null +++ b/specs/GIGA_Passage! ~Passage of Life~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b98bf621024f937c1eb55cf373052680e7e7199ef5ad83444312e14a4293538 +size 297761 diff --git a/specs/GIGA_Passage! ~Passage of Life~/spec4.png b/specs/GIGA_Passage! ~Passage of Life~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9a4cac71d0010c3df4441a5d57ffd3d702cfe3d6 --- /dev/null +++ b/specs/GIGA_Passage! ~Passage of Life~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d345b430e10eddda85e5e97eb9a862e78ea9eff178412b08f5589431a866cb9 +size 297984 diff --git a/specs/GIGA_Passage! ~Passage of Life~/spec5.png b/specs/GIGA_Passage! ~Passage of Life~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..97a5fcdbbe85595b1807a98f6c010fc2b21bf9a7 --- /dev/null +++ b/specs/GIGA_Passage! ~Passage of Life~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30dccf8fffa575d2eb4624edaa8668cab043d1c31b507fa7c59bc79cb9d30364 +size 294614 diff --git a/specs/GIGA_Ren'ai Phase/spec1.png b/specs/GIGA_Ren'ai Phase/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fd569134e091c9aad9973013bf18564205ddcc2c --- /dev/null +++ b/specs/GIGA_Ren'ai Phase/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d525fba3f197d2ee872477843deefe4c1aaa266d0c7a29ba1f2c665b74b1f75 +size 309762 diff --git a/specs/GIGA_Ren'ai Phase/spec2.png b/specs/GIGA_Ren'ai Phase/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d647360b73f810f5ab17b7ba8de588bd9eada858 --- /dev/null +++ b/specs/GIGA_Ren'ai Phase/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9ed5754ca31767fa1a0cf6cde9b67de2d20797345d6c4dc1616c88a123f7d8 +size 307188 diff --git a/specs/GIGA_Ren'ai Phase/spec3.png b/specs/GIGA_Ren'ai Phase/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c831dc0c27a5689fa32a95fb9a58efcec26ef7c3 --- /dev/null +++ b/specs/GIGA_Ren'ai Phase/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3a31b4dc2e91577c8be489b7bb3d9be2e47febd656f9f74388adf863004c97 +size 339140 diff --git a/specs/GIGA_Ren'ai Phase/spec4.png b/specs/GIGA_Ren'ai Phase/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e2c06cd1ec0691d75eaddb2b11c77213d60b18b2 --- /dev/null +++ b/specs/GIGA_Ren'ai Phase/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9059012437d747b04543c682b79f33c0136d0b9dc78c6b9cc9d4566e141135b +size 306430 diff --git a/specs/GIGA_Ren'ai Phase/spec5.png b/specs/GIGA_Ren'ai Phase/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2b5afcc77964f1ad0f52db28ee82ff1425da8987 --- /dev/null +++ b/specs/GIGA_Ren'ai Phase/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733941d0845d43a7d4942ff1bd1589a9891ac890453604a39c89c14b53a792cf +size 314064 diff --git a/specs/GIGA_Rep Kiss/spec1.png b/specs/GIGA_Rep Kiss/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..488864f3a1bc72bb1813d2731edf84323324f260 --- /dev/null +++ b/specs/GIGA_Rep Kiss/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e554c74fa520be1bef187e19fcd5d9ba75eafba3fd12d2c7999766999acec3d +size 254562 diff --git a/specs/GIGA_Rep Kiss/spec2.png b/specs/GIGA_Rep Kiss/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6266e6ff7a849c7cccbf0ee915c8df81d45f2371 --- /dev/null +++ b/specs/GIGA_Rep Kiss/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd8642a9b9761cf5f6fcd4f28f55aa41229b37f5ec01fe3ffda9406025e2efb3 +size 283028 diff --git a/specs/GIGA_Rep Kiss/spec3.png b/specs/GIGA_Rep Kiss/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..93ed66704c5018af0b0065406eae1b9eaa87c47d --- /dev/null +++ b/specs/GIGA_Rep Kiss/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f12e87866cc6e29b9205c99a49fb0f81945c4d0250e0bb8df01e30c6c9850e0 +size 320500 diff --git a/specs/GIGA_Rep Kiss/spec4.png b/specs/GIGA_Rep Kiss/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c154641209fdf7bb1e51e94dedfe49cd47f58479 --- /dev/null +++ b/specs/GIGA_Rep Kiss/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e019b89dd37b9be07d982d358cb05cda0e0bbfad4a8f60a5d020d64b89c2da +size 299059 diff --git a/specs/GIGA_Rep Kiss/spec5.png b/specs/GIGA_Rep Kiss/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8144ba7647babd0442694d7bd3ea5ec5acee8abf --- /dev/null +++ b/specs/GIGA_Rep Kiss/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb572669a0c9b17ea7272bc89292f905aa28eb8eebf0e73e4bf8fb73f1dbef82 +size 266498 diff --git a/specs/GIGA_Senkou no Clarias/spec1.png b/specs/GIGA_Senkou no Clarias/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ec9086c60ae57158244472c8742ba5b5ab495f --- /dev/null +++ b/specs/GIGA_Senkou no Clarias/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8068dff1cbd1c8e9168147f021862dcf514317698407b32a904b5085f53ce59b +size 307329 diff --git a/specs/GIGA_Senkou no Clarias/spec2.png b/specs/GIGA_Senkou no Clarias/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..54f0a344273e5a7c83053071de2cf0be7f291774 --- /dev/null +++ b/specs/GIGA_Senkou no Clarias/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7a6a0ec689bea6476787589cb8cbf988700e2c5014cbbe23bbfed5b70059fc +size 259803 diff --git a/specs/GIGA_Senkou no Clarias/spec3.png b/specs/GIGA_Senkou no Clarias/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..06d7effe4b750ffa286b6a53c9fa101791543662 --- /dev/null +++ b/specs/GIGA_Senkou no Clarias/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cf954810c1f803496949f3565f3122054fd840ffd1bd03b137fead6f64cc21 +size 276934 diff --git a/specs/GIGA_Senkou no Clarias/spec4.png b/specs/GIGA_Senkou no Clarias/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..618032018cf44c08fe90aba248b9f0f52a0759cd --- /dev/null +++ b/specs/GIGA_Senkou no Clarias/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08eeb84a49eb2b8e4e4f77333051a0b274f2b15f8f9922ddb59c4ef5bc67f1d +size 313976 diff --git a/specs/GIGA_Senkou no Clarias/spec5.png b/specs/GIGA_Senkou no Clarias/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..38dc796754cf27bdc19276f804a4a9d75d6f1dff --- /dev/null +++ b/specs/GIGA_Senkou no Clarias/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f239f6dcf9255d16391a77d2404f3f808e943915deec7c873d78ec6beb2a145f +size 308545 diff --git a/specs/GIGA_Shirogane x Spirits!/spec1.png b/specs/GIGA_Shirogane x Spirits!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..53e77c3d51f3d257bac6fe4510a18931fcf6257e --- /dev/null +++ b/specs/GIGA_Shirogane x Spirits!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba67dbb9aee21bc9dce8d87935ead891e57e08862596957db026ab5a4847282d +size 314561 diff --git a/specs/GIGA_Shirogane x Spirits!/spec2.png b/specs/GIGA_Shirogane x Spirits!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cc713bdf099b12cd94a984790a113b71831f4a42 --- /dev/null +++ b/specs/GIGA_Shirogane x Spirits!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d242f575c496329edfcd2c399677c7aafd77a092506f72e6765ffc7ffc46f2 +size 320858 diff --git a/specs/GIGA_Shirogane x Spirits!/spec3.png b/specs/GIGA_Shirogane x Spirits!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5853cb5cdd6752a12ae2f5a1d1da5f072f34a240 --- /dev/null +++ b/specs/GIGA_Shirogane x Spirits!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3c2d952824edffb992c0d289841ac46ef692b3543bed2a57acef0e10b717d7 +size 297117 diff --git a/specs/GIGA_Shirogane x Spirits!/spec4.png b/specs/GIGA_Shirogane x Spirits!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..afc7de680ace013d2343490701bd8872a43eb572 --- /dev/null +++ b/specs/GIGA_Shirogane x Spirits!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c56461211bffb2814c3387b0c7b39d0a7d47c774daf81a3b76e3b4ae615c3a8 +size 324630 diff --git a/specs/GIGA_Shirogane x Spirits!/spec5.png b/specs/GIGA_Shirogane x Spirits!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..732b752770b5ddb337b7c1a7e649d753981f7ea4 --- /dev/null +++ b/specs/GIGA_Shirogane x Spirits!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde6685f82653a57c221c32b27a74bdcbd86b6b2edc079ea067ee3d73efcf746 +size 304812 diff --git a/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec1.png b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d224f55b8d7df0bb0d6985b915199c459435d44b --- /dev/null +++ b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22700071da6da56e16ca98bf4e236fa5c0a9a17cb32bcb113350e8d0cfa25ea8 +size 294372 diff --git a/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec2.png b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..beff4ec2badcf3304c3395a52d2ca6f6c201f6b9 --- /dev/null +++ b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70326bddd68ad0467a41793072f1e4d5b6c7cef148f4cd026ce6684d2a3dc450 +size 291955 diff --git a/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec3.png b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3a3a33cdc8d6af62b6e9097b32ddd881a28e7f09 --- /dev/null +++ b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c45ef7c771999fc5350816db675bb92af7a400f7f00d312fbf79abe9ca103f +size 290530 diff --git a/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec4.png b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a362362d3828cc5c38f6748f8b54e42305e462d8 --- /dev/null +++ b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c32de7711614ea9730e424f84ce7adeea10941988326752f700063056704020 +size 316351 diff --git a/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec5.png b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..704ddaa0bcaf70bb837853106f3acaa5db05338d --- /dev/null +++ b/specs/GIGA_Soi Kano ~Gyutto Dakishimete~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45baf5d064d681bf0c294ffd66ee48d475a8f08f34dd7953f864a7256ae646ad +size 246716 diff --git a/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec1.png b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..33d3da2001cb29dc4ba4bc69a1f302816afec31d --- /dev/null +++ b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c078a6e7c70b5e3dda0b0a1390d70507f32c3b4dba8ed947215819e25688f38 +size 334965 diff --git a/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec2.png b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ee07a654ecdf884c9c52c38c30f8b56500eb4666 --- /dev/null +++ b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0771e076de3c0eee8bd65318bb0b0909c8a4a389d2d0c7987b51738408a30ca +size 333822 diff --git a/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec3.png b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e3a78d9242ec93c7b6cd29ec94737a018ee9c711 --- /dev/null +++ b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce02ff77c13b30d1804b2cb321304f5f3d3cc2af72d9b60d603de4618fef2642 +size 324388 diff --git a/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec4.png b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a7cfe4119989e8cd8d1a56d9d23036ef258f5778 --- /dev/null +++ b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585db5ce373e075a922c389836f9d07326fd9602bd4ca81b2eb80de51dbd6f52 +size 326429 diff --git a/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec5.png b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d362ba2a9e8f334779b57f524b3bab3342c4d7d5 --- /dev/null +++ b/specs/GIGA_Sucre ~Sweet and Charming Time for You~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c03eca38202e2ee92be24476c6bd520552cffa3fc270032dba84b0329494cec +size 347376 diff --git a/specs/GIGA_love clear/spec1.png b/specs/GIGA_love clear/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..da86482636e69b1aa4852bd8b84dcf9725872e22 --- /dev/null +++ b/specs/GIGA_love clear/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09c179af15967a3e714c20a143a144b4d4320ea96fdb7393a9a937fb1efddfee +size 280455 diff --git a/specs/GIGA_love clear/spec2.png b/specs/GIGA_love clear/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c1283320b414652467c458761f434c09ea7878c9 --- /dev/null +++ b/specs/GIGA_love clear/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fff335bc91440c3ee05d76a43a577f399f924675b197dd794960b82742396ec +size 209036 diff --git a/specs/GIGA_love clear/spec3.png b/specs/GIGA_love clear/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ca82b4799320e7faed6900ba70b29fa7998a5228 --- /dev/null +++ b/specs/GIGA_love clear/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1402bd950e70be445982f20146abeb562861cd0fd2de36cabb41dc790074c12c +size 284215 diff --git a/specs/GIGA_love clear/spec4.png b/specs/GIGA_love clear/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a560ea2f8b0822dad957fa146cd0959aa49c244f --- /dev/null +++ b/specs/GIGA_love clear/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1260d746af736145c4f8b0a0dfcf17de2f581a71b530778cd5fe22ee3ae9a3f8 +size 296978 diff --git a/specs/GIGA_love clear/spec5.png b/specs/GIGA_love clear/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..eb6448cb77549c83878f60b2e966393183ffcee0 --- /dev/null +++ b/specs/GIGA_love clear/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d7d8530d8d885bb62226ebeb039a534c26d2191a61cd482f68190cb2b21a22 +size 236145 diff --git a/specs/Giorama Saga_Escape!/spec1.png b/specs/Giorama Saga_Escape!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a3aa02bad38fd7491dca9538f472d7cc1c43e961 --- /dev/null +++ b/specs/Giorama Saga_Escape!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f2ae193ee3f3822c7fa254db023d3590384d01089c1a059292e2383f263c28 +size 269783 diff --git a/specs/Giorama Saga_Escape!/spec2.png b/specs/Giorama Saga_Escape!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..571656c8bc4419bdb57175973701a67bb4387e6b --- /dev/null +++ b/specs/Giorama Saga_Escape!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a24f7e2f03a735ec29e3f0c888127ee4f575042076fc70df1c512eb91f7325 +size 292814 diff --git a/specs/Giorama Saga_Escape!/spec3.png b/specs/Giorama Saga_Escape!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8a63e95d9a5b0bb441c2a0bf813d84b335702886 --- /dev/null +++ b/specs/Giorama Saga_Escape!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1165016794bce6def2d3a0f6e87f9a624f03f628f2a248c0674479103a48b8a5 +size 290316 diff --git a/specs/Giorama Saga_Escape!/spec4.png b/specs/Giorama Saga_Escape!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0a06db64382a4fd9cacf7f6aa591748b62f3586d --- /dev/null +++ b/specs/Giorama Saga_Escape!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f540430a3bd81f14b3c14772c52300af6dfab71e9338a05d05a3089c02f207cb +size 366249 diff --git a/specs/Giorama Saga_Escape!/spec5.png b/specs/Giorama Saga_Escape!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f077973515a68ba099db366ff74ddc8a098591e1 --- /dev/null +++ b/specs/Giorama Saga_Escape!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e1b5df6f1bc0d9fa8e58bef2182c6321416c81bf47a028dec097622792b949 +size 363457 diff --git a/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec1.png b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..dcfe99181fde1060336106b34ae890bded20fd12 --- /dev/null +++ b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5c6f0f1a19b4e6f067644bb6683b20c594fe777f67add87b4f5e4e0eab361e +size 317450 diff --git a/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec2.png b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..433dd67a1886f978b1cb121b06d7ceebaf368d95 --- /dev/null +++ b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17de8b56babe06f06a748fa6f0ab497c6287ed6a01020ea07cdd99a82cdb514d +size 324740 diff --git a/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec3.png b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9fdd3a7f555956f8a08a126c151e66c12b8ecc61 --- /dev/null +++ b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926ea870973fe5b4a0a80f4483171cb5ceef80337265957c6da54524684b8140 +size 338058 diff --git a/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec4.png b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..37fd3e83f4fb919ce5bfeac150f85c9bfa8c9fde --- /dev/null +++ b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd88b5b192261cefa288b42ba71498980da3f66506342a0171056c61c470f7aa +size 335885 diff --git a/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec5.png b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..14605a6ca7ce251ee3ee8b39d5a26388544e7c77 --- /dev/null +++ b/specs/HAMHAM-SOFT_Imouto o Kegashita Kioku/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bffd9eee124f03263203208402d65b31ad64485c1db8006b4615fa81492976e +size 320629 diff --git a/specs/HAMHAM-SOFT_Low Rise!!!/spec1.png b/specs/HAMHAM-SOFT_Low Rise!!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e9fe41d5b8ea2b09faa3dbf12c54bce7018cc9 --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Rise!!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd4d0d99d4039296a226de2586f74ba8d423d2ba8020ea32e822730d2b8beaea +size 332637 diff --git a/specs/HAMHAM-SOFT_Low Rise!!!/spec2.png b/specs/HAMHAM-SOFT_Low Rise!!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ce8cce1d5dcd8ca8f0d6b972711d255a0adccaeb --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Rise!!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63dcbd10e380d0d27acdb103b2caad13ef7c41f6e8fe39a2e5ab9ebb49322b65 +size 328125 diff --git a/specs/HAMHAM-SOFT_Low Rise!!!/spec3.png b/specs/HAMHAM-SOFT_Low Rise!!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7d3e269f935dfb8e0a558937900bb4c9b5b515 --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Rise!!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230d54ed51eb3e8999c3d870b75ff51390d3c50d5c9df5ab68b075642d4e1171 +size 329519 diff --git a/specs/HAMHAM-SOFT_Low Rise!!!/spec4.png b/specs/HAMHAM-SOFT_Low Rise!!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ed3dba2af98e338d68ebaae63fdabcdf1e93e3d0 --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Rise!!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2721e7673d94e99de4288cba53d0ea2b66017ab4b9ae27aa9d83988d809a5c2b +size 325353 diff --git a/specs/HAMHAM-SOFT_Low Rise!!!/spec5.png b/specs/HAMHAM-SOFT_Low Rise!!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fc774583384c55b485171120b423277fb133a8f8 --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Rise!!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed990041739e9752873fbd8bacea362354c59370b0a467ad9eb9ba543b94f42c +size 323201 diff --git a/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec1.png b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f8eefe9ab8368b3d3661d50d2a9906a87bebc7ab --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a9f397327ef40dfe8044753b8edcd4095aa46f729d4b99699f59cfb4e73d6d +size 321597 diff --git a/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec2.png b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d6e4704cb83157331f7f0a7ad3beea48b69bb339 --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7cc0782a2721fb4407f6c0b45f327483fdca6082a1e8093fda9fd892efd66a +size 300130 diff --git a/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec3.png b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0dc41551fd1c10bab7c35b6d64c162b172f6edc8 --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79b1ce4fccce13aef638fb48a1017d2e3c4444af6bdb454b2550e7d174a28b7 +size 344370 diff --git a/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec4.png b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a4f60f7cb9013ebe15cdef1ff1e843f44640c151 --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce459f227af412d371cb61d4495c7c53ff244d06af8060fb8342c99ae5fd276 +size 323143 diff --git a/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec5.png b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..175bb2487b93fbf888ce2b9ba4ffaceb15fc8e3e --- /dev/null +++ b/specs/HAMHAM-SOFT_Low Spec! ~Ore to Toshishita Kanojo to Seikyouiku!~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa800a4a6a4a10e7e13842bcb1053b4db29da5bac7c5c5b1387d49e819003c4 +size 333334 diff --git a/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec1.png b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9611401e0989bb8da7d3ed678a774714ef5d2bc7 --- /dev/null +++ b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4d3cf3fdc2a51663276c18afa85e1cc6ae28d1f4c066e7aeb53d70f15051ee +size 321150 diff --git a/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec2.png b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7e4dad2f2d3dcab8768d84e4bd2a9f00f12fe68a --- /dev/null +++ b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2099fbda544b242859b6baee6b882750bd93da95bb567670455dc8c194b9b69e +size 307356 diff --git a/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec3.png b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..377d34673d39c5fa87ceb5b49fd2090abc480ee8 --- /dev/null +++ b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a72b60858fe801325ee2325e501e0e4f5e17cd37b02d74ad03f87093159733e +size 315609 diff --git a/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec4.png b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..399b0a7ebaf7e2cdbb682de469f698f3a426311e --- /dev/null +++ b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e3e9366a6839b94e781059b22ad067f5b665fa59330724f53002f562093295 +size 296850 diff --git a/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec5.png b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6fb811ee6228076df2b937a21049dd9dee074cf8 --- /dev/null +++ b/specs/HOOKSOFT_Docchi no i ga Suki Desu ka/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b64c167bb534d894fb83c604cc8eb44c5d0d7812afa8c4d1bbaf4246576cee +size 303097 diff --git a/specs/HOOKSOFT_Houkago Cinderella 2/spec1.png b/specs/HOOKSOFT_Houkago Cinderella 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..784578d26c2fd700f5cb51dc8c0009a182263263 --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0997a0f46d0b1e09ebf5719e859782c62682f4070e6a8a9bea4279fff73e41 +size 198236 diff --git a/specs/HOOKSOFT_Houkago Cinderella 2/spec2.png b/specs/HOOKSOFT_Houkago Cinderella 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..76ea1382d769a156472ba7849c462cf2a34c2422 --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22e8e5fde9bcecd90a0f4e879e24ea33d80c6363d58ae323a98cd32055912ec +size 157849 diff --git a/specs/HOOKSOFT_Houkago Cinderella 2/spec3.png b/specs/HOOKSOFT_Houkago Cinderella 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..188a2ec1c764fb26032459ee92208ab17b5dff4d --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754993eede65650172a7b6525b5669fdb0dc2bc4b7d769b2d85d28d7859c5716 +size 239062 diff --git a/specs/HOOKSOFT_Houkago Cinderella 2/spec4.png b/specs/HOOKSOFT_Houkago Cinderella 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b06aa766eaa5d918b1cffa8a2bbdd0c1a52b878c --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc78892b892a3e412ce8be8bb8e2dbf1c2945aa5ed6291803fc6fae2ae463b86 +size 226263 diff --git a/specs/HOOKSOFT_Houkago Cinderella 2/spec5.png b/specs/HOOKSOFT_Houkago Cinderella 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c154d1d6882a85a55d33840474dd2c93767da670 --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c8270c478cdfc1b5f3c2f18202f47f9ba487852bb240c21e4de1570fb2e326 +size 240344 diff --git a/specs/HOOKSOFT_Houkago Cinderella/spec1.png b/specs/HOOKSOFT_Houkago Cinderella/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1f89fb60a5a93f822d5200b47a0d6dd05dd22b79 --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27a3b0166e9fb3e71bc27f96b8acf7f5baeabdeb3a4b3456a73098926facb70 +size 311697 diff --git a/specs/HOOKSOFT_Houkago Cinderella/spec2.png b/specs/HOOKSOFT_Houkago Cinderella/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..de3fdba709f300fcdc3980d08426751a34a08b5b --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eddbc2d1c6bbd8d7dd39c688f4bd0dd86519543221f6e8d26ebad2dabb6656a +size 224675 diff --git a/specs/HOOKSOFT_Houkago Cinderella/spec3.png b/specs/HOOKSOFT_Houkago Cinderella/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4e7721a26541886e48101d13726491dc53dce1c3 --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fbe276b1af56492f97c8f086ed23a2244b1a0183053757a7fe5a138453ec92 +size 315916 diff --git a/specs/HOOKSOFT_Houkago Cinderella/spec4.png b/specs/HOOKSOFT_Houkago Cinderella/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d3fd5c3fdea9ca95341612f97ee3216da4eafb68 --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3c5ac051044643fa72da957ee35a21628fa07cc3050b2026e2f87ceb0e12cd +size 304521 diff --git a/specs/HOOKSOFT_Houkago Cinderella/spec5.png b/specs/HOOKSOFT_Houkago Cinderella/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0b6c2bd9f0873f72289c8c89b7701dbc857436aa --- /dev/null +++ b/specs/HOOKSOFT_Houkago Cinderella/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d95f47c9fad70f155a5bed4608e9865991a61d2b2f1b73f2b46e70c2a9c7c3c +size 285768 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec1.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..55ddd0c4731349b3e33782390ae0c5bea1ab91d4 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d39ac1214a3a3e896eac0283f730be4767d56c971fbac54d34c890c3952d588 +size 306302 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec2.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bfa16eba77ffaa7b60dbf4a612909fe55d7b013f --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3c2ec41a1f299cadf587058bb665098686bf944c0e44ad1d30cb7d73d8a513 +size 324602 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec3.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..99bbbad59cf289d3e648df61c0b7b4cfaa10eef2 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d73b35c9e856ef53ffa77d016a7fc49dfaf58a7d7b469b621e00325a2b46fab +size 322084 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec4.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5a055cd85f17a52ab0169e438bbebcbc09e54d9c --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267a4cf0b63334faf2dba3ec9dac7a25c3a5d206774e886ec49ddab227287f2b +size 321968 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec5.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9614036064861054423149a8c30fce7634a30f02 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaeru Dake MiniFanDisc/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90fc9ce2f13aea1cc3628260620c2d128b2a69c10acc6906ef6dc6f1ce71f2c +size 301449 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec1.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5872de0d3dc84341f11f7f3b9dd10270fe6fd63 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c03b9b4714bc4bd40a2e54c59aa122a7ceb1b494f0de4c85a127a34c8c848c6 +size 300195 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec2.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b2d70a3630e7ed13f62fd19b0f7d0ef3bf16f06a --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e580b018c24e8c6aaadcd5e8a928dee9c61e80941bfd709210eb8090bd679c +size 320410 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec3.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1bfa387e44a0715054cc3615c805758fcee6ce21 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9380c6927f8c2af01370812a7094c3714df7b08e77e532ca0ef1b965a8d6f43 +size 332764 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec4.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8919f1b95d0f3809a1d943860abbf70f8a451b20 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa060335fc344064347afea312d99e1d87c22c7c70d20af0a334cca21eb7a30b +size 308567 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec5.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba0d52ff6f3527a9561b7c10324cda7aa8dc731 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu ~Motto Amaete Morau Dake MiniFanDisc/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be5f880b9f25a54b27d7767800ae99bbbddd9cad8e085a42c465269530c0f90 +size 336934 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec1.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..118bec229e324453fcef9df965e34910beb03a02 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4baa9d361d93b62b6145fd65c398c1985cff2c77739778d48f37d1249a5e4152 +size 243317 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec2.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a24671b706033a70c3316c68bf4caf4fa700718 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c92cd460615c1b41eaf8e4da44d6c114177465f5b4e382d4c8f9eb776acfb5 +size 174170 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec3.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1a1ecdafe15851c690797853df524957145b7d7a --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18242935e514483125f02033eccab3e7e1d3ba776f3180da4cc15563f56b6dbf +size 248450 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec4.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5b45ce759677040902cdbcab7b4283178b1de8dd --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b90eef7fd8fce41624d2a08e05f30f453eaa0449d148baee400ddaafdee642 +size 232507 diff --git a/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec5.png b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f070ffd61198fe45923154251725a1156e737da9 --- /dev/null +++ b/specs/HOOKSOFT_Koi ni wa Amae ga Hitsuyou Desu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8d158920482e762039213037cb7d7285714170733670e5ec4a34fa247c3203 +size 262642 diff --git a/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec1.png b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e3da9a29a7d15cfbdc146e062b8f1d89c60eb7a6 --- /dev/null +++ b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da8a933212b2eb9716aeb6b3acabd46d51e36ed8083fc17723ad194981b74d8 +size 284553 diff --git a/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec2.png b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..86467e962e7869993f781f5debba757ee10c0d96 --- /dev/null +++ b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae43547e3ad88e312f3703f5ca9f28efc5191ceaa5bce01c8d22272193185a5 +size 268109 diff --git a/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec3.png b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0b0a0672d9d463b3c3ca5840e5d2b25238259609 --- /dev/null +++ b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba194fb78e271ec5eb20880defb7a30ae0245f77c651f1a8b23359f6e5990cb9 +size 281146 diff --git a/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec4.png b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e4474df38ee677077738b538a5e46b7f67be4f2d --- /dev/null +++ b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad43b75a706498b8337a54aacf6bc22a43d7cca00f07acda042017ed3aa63302 +size 293901 diff --git a/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec5.png b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..48caa6facc17696eb1fdd53f3b56367de83f2cc8 --- /dev/null +++ b/specs/HOOKSOFT_Omoide Kakaete Ai ni Koi!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82387486d053af5dbccbd12f77e33f91d14fe9b7ac2eabe35a7cbba31a18c877 +size 288432 diff --git a/specs/HOOKSOFT_PriministAr HD/spec1.png b/specs/HOOKSOFT_PriministAr HD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6c8508576d32aab630768b8c5cae6538c3949806 --- /dev/null +++ b/specs/HOOKSOFT_PriministAr HD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051d8c902c5efd0259e0551a7daf76f981a4471566d2376a15d02d129fe76c6d +size 306718 diff --git a/specs/HOOKSOFT_PriministAr HD/spec2.png b/specs/HOOKSOFT_PriministAr HD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b84d0c903bab89ec94e81f229354c7115f54f10d --- /dev/null +++ b/specs/HOOKSOFT_PriministAr HD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470a147200894b32d4f3eb58ab439e059196bc32d5620612095fada5187fda55 +size 330811 diff --git a/specs/HOOKSOFT_PriministAr HD/spec3.png b/specs/HOOKSOFT_PriministAr HD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5c4a0475f3311f4ee0e1465bf6856ef9542f7ea1 --- /dev/null +++ b/specs/HOOKSOFT_PriministAr HD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aef7b89abc469dfd62fddd129803172356245ff44445aa240e5febcf73ae245 +size 238800 diff --git a/specs/HOOKSOFT_PriministAr HD/spec4.png b/specs/HOOKSOFT_PriministAr HD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6c49259996ffa05cb118e66277466bea9b3b316f --- /dev/null +++ b/specs/HOOKSOFT_PriministAr HD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7439e388095ff7a3da70b9678c2a6ce0a1da03f3bbf11c289442ac509693e8 +size 295900 diff --git a/specs/HOOKSOFT_PriministAr HD/spec5.png b/specs/HOOKSOFT_PriministAr HD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..06092eadea0888e2272d99ceefe8285549c97e44 --- /dev/null +++ b/specs/HOOKSOFT_PriministAr HD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8a05a4d4adf058d30a3a8bfc9daa14f4eee815a397155efbe83f1454ceac3b +size 357979 diff --git a/specs/HOOKSOFT_Yubisaki Connection/spec1.png b/specs/HOOKSOFT_Yubisaki Connection/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c736b783a41a4a1319651c74d676077d053b9bc9 --- /dev/null +++ b/specs/HOOKSOFT_Yubisaki Connection/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0fecea62be8a5b976dac21e9967e5bfc52fa2ebbd0be9df28e557742ac1298 +size 253534 diff --git a/specs/HOOKSOFT_Yubisaki Connection/spec2.png b/specs/HOOKSOFT_Yubisaki Connection/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1cb4ec892eab1d4793bbe9718f4c59de58e6bdba --- /dev/null +++ b/specs/HOOKSOFT_Yubisaki Connection/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0d0538683106b5490f41fe8bc68389e5957cb1cdf0c692b37086297a741177 +size 292148 diff --git a/specs/HOOKSOFT_Yubisaki Connection/spec3.png b/specs/HOOKSOFT_Yubisaki Connection/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5e40f9015bc430eac5f3a615ba8c9b08e28482e3 --- /dev/null +++ b/specs/HOOKSOFT_Yubisaki Connection/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292b564566da87237d93052adcc3bd240447f5ca2b999179dd41e057cdcc73e5 +size 294837 diff --git a/specs/HOOKSOFT_Yubisaki Connection/spec4.png b/specs/HOOKSOFT_Yubisaki Connection/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6322ef6de39b4b4bf07d8b0b343521ffcb63735e --- /dev/null +++ b/specs/HOOKSOFT_Yubisaki Connection/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2b0c7edf232df48899fa3419b727dccd2c3861ede6da98c7351333ba05e991 +size 281616 diff --git a/specs/HOOKSOFT_Yubisaki Connection/spec5.png b/specs/HOOKSOFT_Yubisaki Connection/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6bebb2d3ab74e8af89372417a3cd777c21706dc8 --- /dev/null +++ b/specs/HOOKSOFT_Yubisaki Connection/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6fc39a41a131fd2597e1ff4bde76c8f039e1b7834834166256706742887fc3 +size 257600 diff --git a/specs/Hadashi Shoujo_Harem x Shangri-La/spec1.png b/specs/Hadashi Shoujo_Harem x Shangri-La/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..67264f8f7c36aad2ca12a61a75c3a07f578e85ef --- /dev/null +++ b/specs/Hadashi Shoujo_Harem x Shangri-La/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7c45377a1d28ed4f3f5fafcdb67e2caa4b677f83df212b51d1ec07394d0788 +size 298694 diff --git a/specs/Hadashi Shoujo_Harem x Shangri-La/spec2.png b/specs/Hadashi Shoujo_Harem x Shangri-La/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..345607a4d9c0874f5f1b07a548991328c4bbfa78 --- /dev/null +++ b/specs/Hadashi Shoujo_Harem x Shangri-La/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77421d1d1049a016f8366f38444ec78de6fab016157765b3eb4fc837dbf6e6c4 +size 336470 diff --git a/specs/Hadashi Shoujo_Harem x Shangri-La/spec3.png b/specs/Hadashi Shoujo_Harem x Shangri-La/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a56175830af8a46ede62d343e71f97fc7b356565 --- /dev/null +++ b/specs/Hadashi Shoujo_Harem x Shangri-La/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2903cf6893788c95563ec261f12889d43866b8f879e3da73b6059d26d46270a8 +size 329231 diff --git a/specs/Hadashi Shoujo_Harem x Shangri-La/spec4.png b/specs/Hadashi Shoujo_Harem x Shangri-La/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d41ff144f1c098455b3e82d65ef9dadbf05d75ad --- /dev/null +++ b/specs/Hadashi Shoujo_Harem x Shangri-La/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17cb8e9753e46a05ccad4b6243878eb70832f14b5ba566c5d2ab99653088337 +size 314442 diff --git a/specs/Hadashi Shoujo_Harem x Shangri-La/spec5.png b/specs/Hadashi Shoujo_Harem x Shangri-La/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..818ac980505bda1239f176aeebc1caddf493bf2b --- /dev/null +++ b/specs/Hadashi Shoujo_Harem x Shangri-La/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cccc075de4b102a829a620453656adfbf6383239317ca3e7fb519f8805f98f81 +size 330154 diff --git a/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec1.png b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8af3c1c7eee9344515f46bba245099cdf194c1b5 --- /dev/null +++ b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6161a8a2e82c0096786185b0eb9f75e0aa829a57b805fb590bc80a138462eb9b +size 322931 diff --git a/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec2.png b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a63cc36dd50d0011b1d59af487462fa3384ce6fb --- /dev/null +++ b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2efd7559ad7e0cff809f50c05524c70106e07c038ee81e13aee35d23a83ff882 +size 348638 diff --git a/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec3.png b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd31d06877a4ae6f02e0abb5c0ae8c09a0457144 --- /dev/null +++ b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c89ad0c306c8a47666647b9fdb79ffad2b171526e58f2b0562d8477ff30534 +size 334755 diff --git a/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec4.png b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..551acc50cf26ceb5938261223f6ae3594b2f9679 --- /dev/null +++ b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d342911c7cdda0188b9fa54b7b5ad3d009d6b49c25403749a9c1e474baff2bc +size 349788 diff --git a/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec5.png b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ce094a9f88f0d0b995614d0c987d8474528e3027 --- /dev/null +++ b/specs/Hearts_Koi Saku Miyako ni Ai no Yakusoku o ~Annaffiare~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4876f7d71f7fbddebd796c8a4a7facbc1c1cd94735c4955a38a508e8ed122d18 +size 351002 diff --git a/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec1.png b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..40830e7381e66841340d843d2e5ca5088be255b5 --- /dev/null +++ b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b0a59667d52b7c7b503d558cecf1c1675e44249a74a968e4123f164a45d00f +size 333939 diff --git a/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec2.png b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f77ab683ab63f05e2e341732a4e0e850c891c21d --- /dev/null +++ b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cffd502b292e1d11ea117d8470a5814ccade2e8994ebcbffb8ae2fc7838a40 +size 359259 diff --git a/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec3.png b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5701200740f6b6c7f2e354d49eaf70ab52567332 --- /dev/null +++ b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaeaa258085ce41aed6e54fd18f34ebbf3ab49e9bd85674715540869e09c2e90 +size 347321 diff --git a/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec4.png b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..60705e5e921be7f2c1fefebd679e71770173d1fd --- /dev/null +++ b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd038cc35f4f71dd7ad688b996ccf74f270197a452fd195b5d46c713d198e36 +size 319590 diff --git a/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec5.png b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8beaae834d73fb13c23a4a217af1bf96901c250e --- /dev/null +++ b/specs/Hearts_Koi Suru Kokoro to Mahou no Kotoba/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334cf0087324d0688b9f69c136264b7ff762d3aa640b9681a6c7ceb530f3bb39 +size 347738 diff --git a/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec1.png b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4421fa033f47de04306c95abe25c67baa7cb67a6 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d7064b5482d2495ab50094eb26a878ce33af03554f4619e0dd1904a4d8a4f5 +size 343191 diff --git a/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec2.png b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c30957bfd7dfbed6c7afe3f154c8895322c311b1 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebd9769fa931cff6033b059fc33cc91a244300a3ff47d78883fe01af59b4808 +size 346000 diff --git a/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec3.png b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0616f296ff719c40d088f9c41ef036d27637b130 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5cfc7ceffc56e17aa91ca07b3e474d3c9bce0c569542c7a93b1a1b4d4c49c56 +size 344922 diff --git a/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec4.png b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..edb7d6ac22dcb50a5d59231c538e528a2ba0fe37 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e05dbc00dcd2f1992aef58e250220cfa3bc61cc41182f69836006a839fa362 +size 329276 diff --git a/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec5.png b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b20d8d82f5307cca77a8f13bb9492a48f6ae2a93 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log ~Happy Summer~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a49b11c0d55e9121e360c4cb1661208826f597e9f759630b53d08b0755e3ff +size 353677 diff --git a/specs/Hearts_Natsuiro Kokoro Log/spec1.png b/specs/Hearts_Natsuiro Kokoro Log/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1af95c6d906392e92ada128c0c08ff7a43e843 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9370c33a398a62f919d1a9edbb8b44c3e507e81079bd713ceb9e3812fb1a73 +size 340800 diff --git a/specs/Hearts_Natsuiro Kokoro Log/spec2.png b/specs/Hearts_Natsuiro Kokoro Log/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d49a76d29d8e659e559debfd57becf102cae0b --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0420d00796b13d67a4d5794f0f10b47f555b420994fc5465c88a79bdde8e872 +size 350164 diff --git a/specs/Hearts_Natsuiro Kokoro Log/spec3.png b/specs/Hearts_Natsuiro Kokoro Log/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7467945f2fd741326bfcd8b7782a2464032f7883 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91db310280301cb1cb5201b4acb3ae917fd8b70737adf2fa094e87d2cb3205c2 +size 337125 diff --git a/specs/Hearts_Natsuiro Kokoro Log/spec4.png b/specs/Hearts_Natsuiro Kokoro Log/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9d7e365ada6feb2bec7204f1cafab725ab6984d0 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd6460a80d4a3d24f1b18f0721de6d6593c624e2f3a7e9e95e9302fc92d8f47 +size 351613 diff --git a/specs/Hearts_Natsuiro Kokoro Log/spec5.png b/specs/Hearts_Natsuiro Kokoro Log/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f61e6ded2d4332e44da368bdf176f70979b1a9d2 --- /dev/null +++ b/specs/Hearts_Natsuiro Kokoro Log/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a8bd026c75a81ab9f206af13d7c6e91aaf61e667b4206484524a2c21027541 +size 327136 diff --git a/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec1.png b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..996e1facdf9b4518705cf3a9007f365d8a601bf0 --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098bcee870417c6f19c42ed4f49e7776cfc484ae6b5c713931258c74b78c04a8 +size 264749 diff --git a/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec2.png b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4a67544d81ca3ccac33b055a9a540d3d6ce7c4e3 --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0f2611fde35b2200fb00e8ec9221757b0b7e1ce38d5ce5d4e3dddee2d79fc4 +size 280840 diff --git a/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec3.png b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d5aed97459ef3b81d8f3dffb19ffe3ea53c089dc --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfaf8a0b0f307c8efbbc2294d9b656fbb46474b7e5599b3ddc3094e921879ac7 +size 246017 diff --git a/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec4.png b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e69f0ed5ee87d97080653aac105caa2df3f42c62 --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e725d17cd157eda6c09e1ea214768be794be889f43eec01063a547c6f73444ae +size 267641 diff --git a/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec5.png b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7a6c5054837346b2c0ebdcbde6ffe87da570a8fb --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor Badge & Dagger/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00b12360ecff5210eb4143857cab055752d462336f30e621b56233c86b6afd3a +size 273013 diff --git a/specs/Heliodor_Ryuusei World Actor/spec1.png b/specs/Heliodor_Ryuusei World Actor/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..617fe7d0e96318e99da4e0d97010ea3859d3f13a --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641198b881b1a96b31bcb78ec54585ea0791abe01b35f874ffe7510bfa091b3c +size 324380 diff --git a/specs/Heliodor_Ryuusei World Actor/spec2.png b/specs/Heliodor_Ryuusei World Actor/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5231223a1c075ccca377bf80fb06015aceee4a63 --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2ec54d3d086ed17bef39eee91007e9b437d4753b57cc48a81095d0e5fea90b +size 327463 diff --git a/specs/Heliodor_Ryuusei World Actor/spec3.png b/specs/Heliodor_Ryuusei World Actor/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c65a24a94cae59ae0fb55e97d2f4a20c6efb5aa2 --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40e04bc6706e34a0e8e4f66d4a541605f8048f696026fcd2e04baa0d84b59ab +size 301786 diff --git a/specs/Heliodor_Ryuusei World Actor/spec4.png b/specs/Heliodor_Ryuusei World Actor/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..04f7ae75028186fa8c32e8e4871fe390d85394f5 --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef29f3b65ceb43fefaded051a7051a420239abe04829641b90da594484cd945 +size 316511 diff --git a/specs/Heliodor_Ryuusei World Actor/spec5.png b/specs/Heliodor_Ryuusei World Actor/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1f94e85a6e33a4f2ff10124346eed5d1baa8bbd8 --- /dev/null +++ b/specs/Heliodor_Ryuusei World Actor/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41bfa1402cd91f1d1b94b46e8f9af06c55414dbe0d2ebcde419bec89cbe89b5 +size 296683 diff --git a/specs/Hending_Tsumugi no Hanayome/spec1.png b/specs/Hending_Tsumugi no Hanayome/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e7195a2b78253e1b8346da385d1a60ab13aac76c --- /dev/null +++ b/specs/Hending_Tsumugi no Hanayome/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fba6b8b45ed481afe8f99c19e0875c3e14adc2cd6a9d7d93d9ca58bc19f7c65 +size 269198 diff --git a/specs/Hending_Tsumugi no Hanayome/spec2.png b/specs/Hending_Tsumugi no Hanayome/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fee239a2cc3808a09c555758b216b46bcb9fdf5f --- /dev/null +++ b/specs/Hending_Tsumugi no Hanayome/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9affd106240186fe87516b9570a88239d139c6c0b428679d9ce94b0099e8c6 +size 303479 diff --git a/specs/Hending_Tsumugi no Hanayome/spec3.png b/specs/Hending_Tsumugi no Hanayome/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b1cd9655f595e560c08d799f53f480530cbc5240 --- /dev/null +++ b/specs/Hending_Tsumugi no Hanayome/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327650328197573580dad4fe7083d7f5ac09f4e9cdfcd813f9f16403d0aac364 +size 281543 diff --git a/specs/Hending_Tsumugi no Hanayome/spec4.png b/specs/Hending_Tsumugi no Hanayome/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b535d1de3d94e1096263bda1fdb81cf290dfe385 --- /dev/null +++ b/specs/Hending_Tsumugi no Hanayome/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2692e5792bcb175576fd8decc3b616a4fc193353be191a2e561b6f60af572c +size 252641 diff --git a/specs/Hending_Tsumugi no Hanayome/spec5.png b/specs/Hending_Tsumugi no Hanayome/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef3ec5c9a7109f5ec3702d1b3b9065066a94be1 --- /dev/null +++ b/specs/Hending_Tsumugi no Hanayome/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4a633d6ad5d626f44538a5516babcd0806093a23c9f94ef65198f8004b3d78 +size 263889 diff --git a/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec1.png b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2d7368320d242bb43a4e1495e5e35e81796eccca --- /dev/null +++ b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8cb54d4011cf5a19fdf70d4625e54145e56ba2ad1562c7f2eb117f85382bf74 +size 307416 diff --git a/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec2.png b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e659b91b4712826b4284b41cdb6cc5ca2e0296be --- /dev/null +++ b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a054b17402973f2b210374c61c124e642747749fee0d4a3b95b60e8f6ec9cbd4 +size 278621 diff --git a/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec3.png b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d75fff97145a070a09d87d5ed3a0490858f4d6d6 --- /dev/null +++ b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a109f6273cccc06449634225fcb3e01b491fb5292bf25236d1b17d87f6353ae4 +size 286654 diff --git a/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec4.png b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ac36385ae23d56ee8b7f549b6950639aaa0a55f4 --- /dev/null +++ b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79995b684bc8c79119a28ff41364b63e6d270bcf8fec6934d6f07e5b1825fcb4 +size 226557 diff --git a/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec5.png b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d15dea5200bc7fc6e04c05be481359f708f8540f --- /dev/null +++ b/specs/Hulotte_Deatte 5-fun wa Ore no Mono! Jikan Teishi to Atropos/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48160959c5be157b4377de50fd82684dc321a083328380200de08f605c1ede65 +size 315827 diff --git a/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec1.png b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a60e9921f4638b2984eb24b0c481ee5ee0c03704 --- /dev/null +++ b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6adf5a6000861e9c58759c724de9930c9744c5abc71859ed985e7e6acdc4b03 +size 302314 diff --git a/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec2.png b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d24d4b80c64820c43403a19e08837cc95d8b5922 --- /dev/null +++ b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565310a383b83b6cca82434205cfd828fe043d5162a14b53e52cb8ebce747fc2 +size 306605 diff --git a/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec3.png b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9c27b0a5eadbc1ddebfcc903ef4972b22a48ce84 --- /dev/null +++ b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ae845d42d62b72b641dab8b8d979d5b3a3193945895a87f488a0382f384358 +size 326606 diff --git a/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec4.png b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..199d80f901e3ca581db7664a376116da6c89484d --- /dev/null +++ b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e0314c726ae5c66bdbff64c9e891017f7048244155f75f53b835864806f5d5 +size 261358 diff --git a/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec5.png b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..584f957cc5cd7d7483cd511da8519ff87d8d7459 --- /dev/null +++ b/specs/Hulotte_Imouto no Okage de Motesugite Yabai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27495d11735c30e8092d5825c206c38fc77b74180e277b6ca1c8ebb49c8f5f1 +size 306420 diff --git a/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec1.png b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..5f48ec41232a8b7479beafa9247fd6c648305f76 --- /dev/null +++ b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4accb2eff983800969e1711ec44c36d5d38e32fa0d3738c439e5bf0b6c5415 +size 316083 diff --git a/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec2.png b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..14e31ea0fc941e3fc592ae669d58d0f0dfb6e073 --- /dev/null +++ b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b29ba4a9dc840d45cfd4edc1ea86e19d87bad651953690650d83ba52ef0ff4 +size 293446 diff --git a/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec3.png b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..07ba5abcbf7238f6d347a0a333d2ca76768ec96b --- /dev/null +++ b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f1ac2ad2602422d69151c002d5538c835e94bb452135110ba226ed99000d3d +size 278295 diff --git a/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec4.png b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6b1ba32990d5abc22dccf82a4f502a725676c9c7 --- /dev/null +++ b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68597d37fa854a71fd2514dc2a41b6235d3cc233aaf853e547bb4d15c0f8c609 +size 289806 diff --git a/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec5.png b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..889843d7ed2a21cbd88241af7d68a7a56981f723 --- /dev/null +++ b/specs/Hulotte_Kamidanomi Shisugite Ore no Mirai ga Yabai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376a743e6388011a4abce384f9ed8674faf5742bd2bbac52e636b962123591f0 +size 285829 diff --git a/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec1.png b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..15f8cacfbd0d92f29e37301648e3daaaf6a70493 --- /dev/null +++ b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31b5544e06dac28f6fdb9b22caa47088a4155c40ff989c3394b126196ce41a7 +size 314633 diff --git a/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec2.png b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e220cc68311645c38bb7493f69d60f6b31ddb5 --- /dev/null +++ b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c4f580e55556186c1550062b4711ab14973d59c5792a3b518f8eed56ee8d78 +size 335729 diff --git a/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec3.png b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2ae9591ef4562b739299e02d820a1cf276ae4183 --- /dev/null +++ b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ecf27f009cbe12932db71fa16921342def3ceabf76a5ebc18d4d859da12fd1 +size 347731 diff --git a/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec4.png b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0e640231fb6351c7747ccc47ca50b85eb83f52 --- /dev/null +++ b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a001e9eecebb63daebbc0b280db9d9e07695cb19bc7ac1febb417ba3e5dc23db +size 345323 diff --git a/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec5.png b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5733edbb8de5106eb5cd0c1944a0ee4c687a2aaa --- /dev/null +++ b/specs/Hulotte_Ore no Cupid ga Ponkotsu Sugite Kowa~i/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4f7d48f6f2a32e306671d67fafcbdf4c769562afe321c9de9f6a36373b8e2c +size 329425 diff --git a/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec1.png b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..17e343b6c21cac1b651d9cadf488602edd51d9bf --- /dev/null +++ b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:532566a914af0729453fd2879f3c7a04f2a47c1e9ac404bad79efb73048e2e2d +size 315592 diff --git a/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec2.png b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a335871a9caca60e2ffd9933e9ec4b3fd5cd8d4 --- /dev/null +++ b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0669fa849a89bad1fcbce8c37de3beb6b2951871c1e92cbf7c392c7d654dbc43 +size 319390 diff --git a/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec3.png b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3b2d65e244e96a8b381c68f0188ae4fee19eaa82 --- /dev/null +++ b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e0ee3d2a7d59102d560377f8a51e4f5abe4497aeebe40e884d91a19eff278d +size 327760 diff --git a/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec4.png b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..068593e803cc720834186c08cf1cb636a3f72ad7 --- /dev/null +++ b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7775b96fa8feaffe5f0696650845f424a9fdaa68652be5fe4773e2834acc6ff8 +size 287376 diff --git a/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec5.png b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0cbeda717c9ab81b593f1d938e6080ba2d93653b --- /dev/null +++ b/specs/Hulotte_Ore no Hitomi de Maruhadaka! Fukachi na Mirai to Misukasu Vision/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450e128f37c3eb6db34ef8426c56504dacde2cf1079a0c211c9ed2da9576341d +size 316697 diff --git a/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec1.png b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6721eb29c63b05a91b738de1f40925d622d8bca4 --- /dev/null +++ b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf74f507c85a323dd4ab4376d6fa033a6484705c8ee148244526a2f657d0143 +size 276811 diff --git a/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec2.png b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ec522360cdbb752d7358324f334e2ea5522a43c9 --- /dev/null +++ b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c3498eedb6a93a51843080213827094a0e93688ed8556c7da8c56b45aa8fa7 +size 297771 diff --git a/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec3.png b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..52350d1f1f89ca9b273dfe6bd8c2f6ce052a389e --- /dev/null +++ b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf124fa91f139b9902a02e2a6ee58d16769286a6d277a132771e7db048f806c +size 307147 diff --git a/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec4.png b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ad70b24e7ba24516c3cff35ab4013702dd8a993f --- /dev/null +++ b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389f250e157def900d90ea3f0e7e39a036aa6093947e3ff7b329b83423d8cb66 +size 302975 diff --git a/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec5.png b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d6247e10b35c3f469344d228ee0085499ea43f87 --- /dev/null +++ b/specs/Hulotte_Ore no Sugata ga, Toumei ni! Invisible to Suuki na Unmei/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c96fc456a65d95250d99b5e7130f9a8f7593ca627b2e3019ac5338f0639fe1 +size 321601 diff --git a/specs/Hulotte_With Ribbon/spec1.png b/specs/Hulotte_With Ribbon/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3dced17db339142a5970c4c3ef0866133b095e3e --- /dev/null +++ b/specs/Hulotte_With Ribbon/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f001e4ef5f904114df9e587d1f86b4b66dd61e83747eac72da956e0cdb64f45 +size 214429 diff --git a/specs/Hulotte_With Ribbon/spec2.png b/specs/Hulotte_With Ribbon/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..35b614e83eccc14fade3b14aa7c263d60a1a320a --- /dev/null +++ b/specs/Hulotte_With Ribbon/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62c9fdb13d4dc497945b1ea5671afad3173264355964358e9b97b7607147817 +size 321708 diff --git a/specs/Hulotte_With Ribbon/spec3.png b/specs/Hulotte_With Ribbon/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..835fba4b57a5251d7a4eb29b2eb2de133af5f797 --- /dev/null +++ b/specs/Hulotte_With Ribbon/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc467a34d6e9ae28d87b2ed04855167023664640760956b2ea21e19eaa62e971 +size 247324 diff --git a/specs/Hulotte_With Ribbon/spec4.png b/specs/Hulotte_With Ribbon/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b7db2e9841625ae9918f532605f5b1506f05f7c6 --- /dev/null +++ b/specs/Hulotte_With Ribbon/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09eedeb6a95e49ccf39a0dc503b82b2ccb1503c1b91609d6362438c7762d621 +size 238509 diff --git a/specs/Hulotte_With Ribbon/spec5.png b/specs/Hulotte_With Ribbon/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ed1e752ba493c4724c9f727e0fb07a33f8bb4a8c --- /dev/null +++ b/specs/Hulotte_With Ribbon/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6364e0a7e7e2c467f90817573eaf05e9ef2ace9c3af4393e3218c6ba9f787ce +size 292004 diff --git a/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec1.png b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..871db539775290be29d4c9a8446054bc151793cc --- /dev/null +++ b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7302f726e727d3a999df940ad143d30c95d1320ccf68c3a7c154998400ee7e1b +size 288486 diff --git a/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec2.png b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..27c07ea4136af0606e918894a7c2c0295b787d4f --- /dev/null +++ b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e74d089c5aaea12c3bf57e0e6819b2c152fe8fb171b2a6c9907bc8449931d25 +size 266718 diff --git a/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec3.png b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6004291cbf5b860ab6290d6e843d4b64e112cbb8 --- /dev/null +++ b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17812069e2acefe251c86630be8ebe651448a929038cd052baf6487e826ec31c +size 281917 diff --git a/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec4.png b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ba6470e35e117b1960ccecdb15f972621224c6ed --- /dev/null +++ b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782caacc610165fe086a58d6e204e4ecc42977a63448b6e51f5f877a0a95f91d +size 267574 diff --git a/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec5.png b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8f1d112cb728083d7d0eaa59745a108fa7f76fdf --- /dev/null +++ b/specs/Hulotte_Yome Sagashi ga Hakadorisugite Yabai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a129bfb00a0e436247a15acbc8daac74dfd6d764fa0939717ae6b9cfccc2036e +size 306238 diff --git a/specs/IRODORI_Hakkenden/spec1.png b/specs/IRODORI_Hakkenden/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3f5b77cccda581b8a25b221f99408878e917b2ab --- /dev/null +++ b/specs/IRODORI_Hakkenden/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbffd70c7df1ccdf4bdfb3e05a9e9215f52f9e9fa7945a6c068a78d4894451c8 +size 328905 diff --git a/specs/IRODORI_Hakkenden/spec2.png b/specs/IRODORI_Hakkenden/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..208a6a9b937e1492b90e965d4afa4f2c6e4105ef --- /dev/null +++ b/specs/IRODORI_Hakkenden/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de96c60c0deac0f2d3ed096930e67c1d3b3878a7f6113f162f86935100c37650 +size 283327 diff --git a/specs/IRODORI_Hakkenden/spec3.png b/specs/IRODORI_Hakkenden/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..19103074bbdb216e89de7e37374ded3a7e80f98b --- /dev/null +++ b/specs/IRODORI_Hakkenden/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49ebd31dddc4cf55eaa78d1df9faa8a7b5040f9e20db8add1376be732cada76 +size 291342 diff --git a/specs/IRODORI_Hakkenden/spec4.png b/specs/IRODORI_Hakkenden/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9bae196f33412b01801421386bf2be61792a22c1 --- /dev/null +++ b/specs/IRODORI_Hakkenden/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d444a803adab21ab2774ae6672ef4b67c8898e5902a29ababbf92094c95efb +size 243617 diff --git a/specs/IRODORI_Hakkenden/spec5.png b/specs/IRODORI_Hakkenden/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1db6bb0eb96272d3327a7c3562abb2ff9192ea89 --- /dev/null +++ b/specs/IRODORI_Hakkenden/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b2294a60e44acb56b9a8f95d4c18b1ecf49dbc728d643f421343038f737657 +size 263940 diff --git a/specs/IRODORI_Ouka Sabaki/spec1.png b/specs/IRODORI_Ouka Sabaki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8543a4e31eb3288172d1960a8d3acca86080225d --- /dev/null +++ b/specs/IRODORI_Ouka Sabaki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069111f08daa5c6393adc69d0f7ee9dd0a71dd1bc5de54eb9599230c8cffb4c6 +size 328214 diff --git a/specs/IRODORI_Ouka Sabaki/spec2.png b/specs/IRODORI_Ouka Sabaki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ff1ebc14ce713f4c34f4214e87ec5d665ada81a1 --- /dev/null +++ b/specs/IRODORI_Ouka Sabaki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:110e09cc1ea733313cd7de7769eabcd814c34a918957bef7c971c3a4d45154e2 +size 324757 diff --git a/specs/IRODORI_Ouka Sabaki/spec3.png b/specs/IRODORI_Ouka Sabaki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..babaac8e09c4bb255a588097f84212d6d3496672 --- /dev/null +++ b/specs/IRODORI_Ouka Sabaki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8dc7b23cd2f703e7e7b2e58afda251540c1dec6baefad79fd0b8fb72f38529 +size 325173 diff --git a/specs/IRODORI_Ouka Sabaki/spec4.png b/specs/IRODORI_Ouka Sabaki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5a8190a07fb6ef6f426accbedeabc0a3d2a27b9e --- /dev/null +++ b/specs/IRODORI_Ouka Sabaki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51162947a9c447621c85cb024d69a7d57aee0c9134df54143ab97aee45ab0ff6 +size 334609 diff --git a/specs/IRODORI_Ouka Sabaki/spec5.png b/specs/IRODORI_Ouka Sabaki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4566b6bb6095fac1965d1eb67d08c08964c21b9d --- /dev/null +++ b/specs/IRODORI_Ouka Sabaki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131b7b01b745c25ad3f440c561b921f1affc8dd53f2024f5b53588b4dea5a496 +size 336526 diff --git a/specs/Iris_Naisho no Naisho!/spec1.png b/specs/Iris_Naisho no Naisho!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..73d95353b587a07bf7e1616233165f2efc1ba587 --- /dev/null +++ b/specs/Iris_Naisho no Naisho!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197911a18c9c3c7e8c45f3a7beeecdf08efb62246049f4eb89118961d16189c4 +size 340620 diff --git a/specs/Iris_Naisho no Naisho!/spec2.png b/specs/Iris_Naisho no Naisho!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bf4eef6af8f203f07b3504342fbd9aafaedb74be --- /dev/null +++ b/specs/Iris_Naisho no Naisho!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb37c754fab5d0c9d62d91a64728f5f8b9511870e2270ba1d989448e3c1b9c8 +size 343132 diff --git a/specs/Iris_Naisho no Naisho!/spec3.png b/specs/Iris_Naisho no Naisho!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e33ffd4b156b45f62f7d00461fce855d070180c5 --- /dev/null +++ b/specs/Iris_Naisho no Naisho!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6972ac8de387aeaa4dcf682113eb4b97505049d158d5f47f8411c20ffc2efce2 +size 355365 diff --git a/specs/Iris_Naisho no Naisho!/spec4.png b/specs/Iris_Naisho no Naisho!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6bd348b9c3fa4d6e5b4cfcc069364e2b1e692a --- /dev/null +++ b/specs/Iris_Naisho no Naisho!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a291246c0bd3ee9c80b5fafb1ed006655773c2dfe24eecf5685c1751a5c7ce +size 352486 diff --git a/specs/Iris_Naisho no Naisho!/spec5.png b/specs/Iris_Naisho no Naisho!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9b88f50d49ffa08acf6ac7b646c69e4b8a5cf49d --- /dev/null +++ b/specs/Iris_Naisho no Naisho!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11659048ac669a85a0be40ae251af8731de2f2eb15b7e21571ede2333baebe37 +size 348436 diff --git a/specs/Iris_Shuki Shuki Daishuki!!/spec1.png b/specs/Iris_Shuki Shuki Daishuki!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6a0dfe3bab93660c53f902c83d8f5de62db3de4d --- /dev/null +++ b/specs/Iris_Shuki Shuki Daishuki!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54773ddf28ad96c36d347f5a2db8e62f2fb297c5d193015081ab4388d3d8c468 +size 363987 diff --git a/specs/Iris_Shuki Shuki Daishuki!!/spec2.png b/specs/Iris_Shuki Shuki Daishuki!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d1887197d2f2f1ae90435e56f720849f6ca48535 --- /dev/null +++ b/specs/Iris_Shuki Shuki Daishuki!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df175db75aee8b72aae2b11f005d6445329f982ca628e8ad32b27270d1732d7 +size 360341 diff --git a/specs/Iris_Shuki Shuki Daishuki!!/spec3.png b/specs/Iris_Shuki Shuki Daishuki!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c02f2d2b559c01ef8654748a9d0bf12bcddec68b --- /dev/null +++ b/specs/Iris_Shuki Shuki Daishuki!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d1703284b888e9d7e6284dc541ee34ae81c5d94483ab8252f9318fc529ff03 +size 358940 diff --git a/specs/Iris_Shuki Shuki Daishuki!!/spec4.png b/specs/Iris_Shuki Shuki Daishuki!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5574f69b4347542d3825616a2e42455ac752d49a --- /dev/null +++ b/specs/Iris_Shuki Shuki Daishuki!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1109fdb367301e07b89798b8a4db9a9fd7b0116347a266a54d81489f7161ae89 +size 352612 diff --git a/specs/Iris_Shuki Shuki Daishuki!!/spec5.png b/specs/Iris_Shuki Shuki Daishuki!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f56d63d573ffa23bb9a0ab55c81a12655f325df9 --- /dev/null +++ b/specs/Iris_Shuki Shuki Daishuki!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896acd5dd1f75380ed99fa6047166bcb4a1876cf1d366ea75b9fff4cf9b3374e +size 357831 diff --git a/specs/Iris_Yamiiro no Snow Drops/spec1.png b/specs/Iris_Yamiiro no Snow Drops/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d0d3076f1001806bc460ec51ecb3351c4684a238 --- /dev/null +++ b/specs/Iris_Yamiiro no Snow Drops/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96812d6d2bce3e1c9b4110be330e5fa1ae856a006c555f06da0a0efa1bd4bf0 +size 353182 diff --git a/specs/Iris_Yamiiro no Snow Drops/spec2.png b/specs/Iris_Yamiiro no Snow Drops/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0e39fc2cb10902a35d4b2d6b44e0147a0d95f9 --- /dev/null +++ b/specs/Iris_Yamiiro no Snow Drops/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9928710257f026edcee5723e8b454b8134e291e1114471829fb936cb140377e +size 343073 diff --git a/specs/Iris_Yamiiro no Snow Drops/spec3.png b/specs/Iris_Yamiiro no Snow Drops/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3da80772e33b720bf1c7401a232cb82e2519f44f --- /dev/null +++ b/specs/Iris_Yamiiro no Snow Drops/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f034116c2d508d518bfdb7d4000a277bc12559566672eca40e22ea38d7ef2a45 +size 353606 diff --git a/specs/Iris_Yamiiro no Snow Drops/spec4.png b/specs/Iris_Yamiiro no Snow Drops/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..acd720d24d00380849ccd21b4588f0b6bdac2c89 --- /dev/null +++ b/specs/Iris_Yamiiro no Snow Drops/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c006517890526a8ad0e7de901bc2a44de99874dee9c314e719e3edb2a3c36d7c +size 345052 diff --git a/specs/Iris_Yamiiro no Snow Drops/spec5.png b/specs/Iris_Yamiiro no Snow Drops/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..34c37a2ae123d9d8642909e7f97306c7699eedff --- /dev/null +++ b/specs/Iris_Yamiiro no Snow Drops/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add8b10e53830cee226088e28317ccfb236616caaf6e79b20e8064bfd66c58e2 +size 345208 diff --git a/specs/JADE_Love - Destination/spec1.png b/specs/JADE_Love - Destination/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ddf2b5aaf9a67d28dc0de66a7616e5ee5da6357b --- /dev/null +++ b/specs/JADE_Love - Destination/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5e92b44ce6bdac932753a3bde57cd49ec8681689a61779ebb69122df5141f0 +size 370049 diff --git a/specs/JADE_Love - Destination/spec2.png b/specs/JADE_Love - Destination/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c42b85c45c8f37fd464e6f1f9b7e25eda513d7a1 --- /dev/null +++ b/specs/JADE_Love - Destination/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f914a30e9ec4e1e4f6a16fbebd75a96a49eba50e4596284ef3b9b8b1881a89d7 +size 362949 diff --git a/specs/JADE_Love - Destination/spec3.png b/specs/JADE_Love - Destination/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3e26f6688d43178ca8ffdd1f42a6055ff1a415 --- /dev/null +++ b/specs/JADE_Love - Destination/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb0fb8220b38c45374194e27a6ac0e59a5a0c29db28ac673d4c4d7e7453cce7b +size 352523 diff --git a/specs/JADE_Love - Destination/spec4.png b/specs/JADE_Love - Destination/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7624f7b421e6bbd2427a6b7ba1b5c9ff78a7de99 --- /dev/null +++ b/specs/JADE_Love - Destination/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605c8d1dca4638d858f140f37b1e04ae27fe7dd4522afa41b4460f28691993b8 +size 352349 diff --git a/specs/JADE_Love - Destination/spec5.png b/specs/JADE_Love - Destination/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3868c9adb3498a89e5071878bef2ca5e0d347c14 --- /dev/null +++ b/specs/JADE_Love - Destination/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f94d7819e22f038fefb7ec6e6bba0acea1ebd40fc68281d14d7f468a121e575 +size 359160 diff --git a/specs/Jitaku Studio_Naderebo!/spec1.png b/specs/Jitaku Studio_Naderebo!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..44c1b1f6dc971ef31ead6ae0ed76791f821403aa --- /dev/null +++ b/specs/Jitaku Studio_Naderebo!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f16c0bd0c5c25147c126c14735107e8012dd22336a29c7f9e8f374142ddb8c +size 329485 diff --git a/specs/Jitaku Studio_Naderebo!/spec2.png b/specs/Jitaku Studio_Naderebo!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..503168a63a250281216615341d6171a073adda0f --- /dev/null +++ b/specs/Jitaku Studio_Naderebo!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33f53d06ee00a07108ca449a150a0895576ef4960ee74b45f32d76cc99a8a1b +size 325943 diff --git a/specs/Jitaku Studio_Naderebo!/spec3.png b/specs/Jitaku Studio_Naderebo!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8b54044713e5114b5f34c0fed26b4ed8ba94c7c1 --- /dev/null +++ b/specs/Jitaku Studio_Naderebo!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e14d67ddb769fea5cd829f63b3826daf05e9199fa113bb7f408747cf3443d6 +size 322504 diff --git a/specs/Jitaku Studio_Naderebo!/spec4.png b/specs/Jitaku Studio_Naderebo!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..782cac1de833a4631acb3076c3c9db12724ae140 --- /dev/null +++ b/specs/Jitaku Studio_Naderebo!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f2633f11983ee1c39a6c9e8198b20fa0b92c431f2f66c4649348b413c13b09 +size 338782 diff --git a/specs/Jitaku Studio_Naderebo!/spec5.png b/specs/Jitaku Studio_Naderebo!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..139ba908d80a77a1443adfbbcd83867ff821dcf7 --- /dev/null +++ b/specs/Jitaku Studio_Naderebo!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3341e832fca5e5d9300342696e0838f97bbdabf7a93e2dc4562ca83c567d0b +size 329113 diff --git a/specs/Jitaku Studio_Real Eroge Situation! 2/spec1.png b/specs/Jitaku Studio_Real Eroge Situation! 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ca729726b2c528e259100c28ca165edcf36b9f1b --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afd1539cdfd2704ab98351339fa0d2e7e0f80c4c55d9c361024ff25bd8c565b4 +size 221888 diff --git a/specs/Jitaku Studio_Real Eroge Situation! 2/spec2.png b/specs/Jitaku Studio_Real Eroge Situation! 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..38125250934f25a6ccb40b222571e77dbc32d062 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbcfdb41b56b823d7e4cbce8be65e7c650c72a4039b6b70b5469ec2c19ac7b8 +size 262999 diff --git a/specs/Jitaku Studio_Real Eroge Situation! 2/spec3.png b/specs/Jitaku Studio_Real Eroge Situation! 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..52604a826281539c0d2bf22a6207adc8460dab81 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00b06b40579c5fc53a8a0f25903ddbbf5a3b91eb8cb3ff0c4146b85f9eef39d +size 242624 diff --git a/specs/Jitaku Studio_Real Eroge Situation! 2/spec4.png b/specs/Jitaku Studio_Real Eroge Situation! 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..57770e47f496e52e89c102443fd7bfe88fe2d44a --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d887be349820d0b70103d827cb042d88650aaa41c7eeb296890370e0ef4124 +size 270143 diff --git a/specs/Jitaku Studio_Real Eroge Situation! 2/spec5.png b/specs/Jitaku Studio_Real Eroge Situation! 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8198cb48d0b50ae5734ae622111a74da5e088c6a --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e858c7c9fe6e1af464ee475af5e4e3cdfdd7c2356577018bef75de632c82eba +size 167319 diff --git a/specs/Jitaku Studio_Real Eroge Situation! DT/spec1.png b/specs/Jitaku Studio_Real Eroge Situation! DT/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..304859b0ead18386438c2fd9d1ad7ae92796fc95 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! DT/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13a578feeee3b41150092b408c0b5b494c81f0b203c96d4663c9a2b9e6bb997 +size 272727 diff --git a/specs/Jitaku Studio_Real Eroge Situation! DT/spec2.png b/specs/Jitaku Studio_Real Eroge Situation! DT/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f03940aeb3235b7383b6ef29d9dcc75eb4f7be15 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! DT/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e506edc1996c323fe4f1fad0aa7022a90a95a9eb5beb2a4cd2607c84f30953 +size 285391 diff --git a/specs/Jitaku Studio_Real Eroge Situation! DT/spec3.png b/specs/Jitaku Studio_Real Eroge Situation! DT/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea19a4589bcebd81ff133876b0ee2f193066d83 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! DT/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce0da5edd73c53d217992af6443d6baf9d0d4f9eab0c05d2256e91ff71342ae +size 247209 diff --git a/specs/Jitaku Studio_Real Eroge Situation! DT/spec4.png b/specs/Jitaku Studio_Real Eroge Situation! DT/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..772b0bb69f34a840c1d779d5f08b5555908faa0c --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! DT/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d356dfbe7f92a10ba8f1abfb0cec8218e8f0091160c4240fa661833a46fd67f9 +size 210440 diff --git a/specs/Jitaku Studio_Real Eroge Situation! DT/spec5.png b/specs/Jitaku Studio_Real Eroge Situation! DT/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..92e191595b89472ae6d8f3bc277995fb36eb57a3 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! DT/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21dbd27db6c1f2a1a61daab61acc413fdb6b18171c60d3db9b77e175f7113a3c +size 166273 diff --git a/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec1.png b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..50126138b7f29c1bc655886e7ee4faf897ee114a --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae80dad042064928e796ba23337d3cd9f735d75651d7a3b9fa88939ea0defc3b +size 301150 diff --git a/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec2.png b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8cb1c286123dcda58ad3a236232a023bcbfa0dc8 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28270c0f6e4d44e74208b66b1e3655c7ceb93d051174d97975ca26816026f23f +size 274022 diff --git a/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec3.png b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..16bd4ebe36d57187b99d425680e76bade7de3158 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efc7468d867bc20e09792e21850cb30264ea1fc3c8c2681683ccc369b480af2 +size 299519 diff --git a/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec4.png b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c29c7c0e78f793a1b5a944e03ca0c01c5479b3a2 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef3c90094c64f4cecadac42168e298d9f185b3f6eea7fe8141ac8e49958fd72 +size 272585 diff --git a/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec5.png b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b78800dd51ed00b38f2c34e33c1ef30064d5a1af --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation! Hx3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f10e66637eff2944063be89805bd9431dd040a6559af199c33fdb5819249a76 +size 281027 diff --git a/specs/Jitaku Studio_Real Eroge Situation!/spec1.png b/specs/Jitaku Studio_Real Eroge Situation!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..234d21a59829c990678f881ebaf2432150979e41 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b2268b78bfe59589e728c80cc5d0b9bbb6c2f3241da0607224dfbd248540cf +size 283362 diff --git a/specs/Jitaku Studio_Real Eroge Situation!/spec2.png b/specs/Jitaku Studio_Real Eroge Situation!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..887ea71d4eb13722da8bd8171b76500183420af0 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdb2b5c497d6ac0ffe7439a29c70051e9661df4b0ccde997a57dfd1e54e4c13 +size 316812 diff --git a/specs/Jitaku Studio_Real Eroge Situation!/spec3.png b/specs/Jitaku Studio_Real Eroge Situation!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0b67a60920f84924b31cb11bf2b4cda4b5562615 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0eac8c43057bc1543d58267c68f46c95b14cf7d14be29e3ab80374ae00c5fc0 +size 292661 diff --git a/specs/Jitaku Studio_Real Eroge Situation!/spec4.png b/specs/Jitaku Studio_Real Eroge Situation!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a02e96d1ffdfc1c6e7842eb86bb09a05c2a1f5d8 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080311200dd47c881a32fcac82a24292a516b9b79af3605da4c3eb637aad95af +size 264774 diff --git a/specs/Jitaku Studio_Real Eroge Situation!/spec5.png b/specs/Jitaku Studio_Real Eroge Situation!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..835c5969a626e4414772912aeff9691c664e41c4 --- /dev/null +++ b/specs/Jitaku Studio_Real Eroge Situation!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95fcc025ecde34087b42483c978b6d9d4dff0fe48c1a3098f0e65a4d0a280f1e +size 272723 diff --git a/specs/KAI_Aoi Sora no Camus/spec1.png b/specs/KAI_Aoi Sora no Camus/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8406ba0fad33283c8040c22b77b7d1fcc05f52a4 --- /dev/null +++ b/specs/KAI_Aoi Sora no Camus/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272f66150e96f13cfa36149bc29bc5dbc8376407f0d636a3a93eeb7f18030062 +size 211930 diff --git a/specs/KAI_Aoi Sora no Camus/spec2.png b/specs/KAI_Aoi Sora no Camus/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2be0ac777aeddc1a10f079f13287299a481725e3 --- /dev/null +++ b/specs/KAI_Aoi Sora no Camus/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44df24c9d99a84910b45942e7e5d7ee29f788e44aa817449e4c66ae0c78d013f +size 323320 diff --git a/specs/KAI_Aoi Sora no Camus/spec3.png b/specs/KAI_Aoi Sora no Camus/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ffc6b1e16864cde2eeeaa13cfef9e0d5c5fa4577 --- /dev/null +++ b/specs/KAI_Aoi Sora no Camus/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477500bc46948375ed8840aeeac00ef13cdead433a67a5a065ee325879f137ce +size 340789 diff --git a/specs/KAI_Aoi Sora no Camus/spec4.png b/specs/KAI_Aoi Sora no Camus/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f232ee0e0501637612e7fc1cf531070d91434f0e --- /dev/null +++ b/specs/KAI_Aoi Sora no Camus/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef62b407341640779ee8d4855be932f75e0af0bd7e0b706b5dcf1609cc412683 +size 232374 diff --git a/specs/KAI_Aoi Sora no Camus/spec5.png b/specs/KAI_Aoi Sora no Camus/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..588c151c86ecda6772ad0964e10e13d92ef93359 --- /dev/null +++ b/specs/KAI_Aoi Sora no Camus/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5903dcd93238824a4da201f1f8b475feeac73d6032ffdc64323dba428bec4d +size 343071 diff --git a/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec1.png b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3c92e150173116904ab78bb7e21c8bb3deb2e436 --- /dev/null +++ b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab34d299dcc0ac84a7c49e424c6b07b9697caf79f0efa2ea8f4b4121c810336 +size 229248 diff --git a/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec2.png b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cb4cd2a3a439b7da692a797adb69f71be239beb7 --- /dev/null +++ b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166238c7c61ecd634bdcb9f8a26a7fd60cc32abef825fd2c3d9dfa7bf1bd4e6b +size 223472 diff --git a/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec3.png b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ae5c720cbfcd3585313d29fb4e4218b267ecc3d5 --- /dev/null +++ b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62b8378f869695736763b27aedb363ab12789bcc0d820ac2f845f0bbf3c681c +size 194843 diff --git a/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec4.png b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9b3be94adf352653454eccac57f480fd1a131f2c --- /dev/null +++ b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f783db8e2bbfd0ce6ac686a1e0454e8404c57377e5dfc0642a8b970a0b43e6 +size 294602 diff --git a/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec5.png b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..26748b8ce214b09e1ac969e350b2adbbe01e27e5 --- /dev/null +++ b/specs/KeroQ_Subarashiki Hibi ~Furenzoku Sonzai~ Full Voice HD Edition/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1838494a37a1bfaf893f982ed0b6f8754ad9ae0b6985627a45ff2c628a89ab +size 242343 diff --git a/specs/KeroQ_Tsui no Sora Remake/spec1.png b/specs/KeroQ_Tsui no Sora Remake/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..90e3b0532ad59ccad79570c2e9e496459fe83921 --- /dev/null +++ b/specs/KeroQ_Tsui no Sora Remake/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3271f2890692cbc5992b2f675d3434287b37ee7812bc85c15fc3b5be643dd8db +size 290591 diff --git a/specs/KeroQ_Tsui no Sora Remake/spec2.png b/specs/KeroQ_Tsui no Sora Remake/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..18ea3f881de9520f730bc89b3957c317d4ebf33f --- /dev/null +++ b/specs/KeroQ_Tsui no Sora Remake/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403fa55250190e62958057de18abc2e98d42d6368a9e2a8fabddb03a9edbeb0d +size 271101 diff --git a/specs/KeroQ_Tsui no Sora Remake/spec3.png b/specs/KeroQ_Tsui no Sora Remake/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5b6ca15992f1130c139e033e449593d7815265bf --- /dev/null +++ b/specs/KeroQ_Tsui no Sora Remake/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae40cff6d88bdea74cebc565c7c1ceb1ca9a54751882d51a348acb2c9bfe9a1c +size 260005 diff --git a/specs/KeroQ_Tsui no Sora Remake/spec4.png b/specs/KeroQ_Tsui no Sora Remake/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..84a9749a92daeb03e29419b8018292596a6b1e39 --- /dev/null +++ b/specs/KeroQ_Tsui no Sora Remake/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58dcd4d57c2c8efd9317178092d4e524e95e4a3324976c6b0e5140f4c104751c +size 281500 diff --git a/specs/KeroQ_Tsui no Sora Remake/spec5.png b/specs/KeroQ_Tsui no Sora Remake/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..25dd6ecf11d1bdbd042c7a55670181a55335c184 --- /dev/null +++ b/specs/KeroQ_Tsui no Sora Remake/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac1f8c6f50c0746c464c32d71a6ce0f9f147260009d8ddbae808f4d61f7c4e7 +size 273173 diff --git a/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec1.png b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..421f6aafa223a3576ddf21c73f5bd93c1a89cbcd --- /dev/null +++ b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0eff046a35e7a2950a7bbd8cb43e38615b3b9494ef1ffdf8c50580d9c3b21e +size 322612 diff --git a/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec2.png b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1eebe1440fc61e96aced55638842d77dca1acc69 --- /dev/null +++ b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d60d40d9d237fefe35f5a9982dc3b6432c1a13d07068e253d718d5d4164f54 +size 303126 diff --git a/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec3.png b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..52ce4b6e8ad1052af56e5c190b5629c40772c364 --- /dev/null +++ b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9618ca49afd94bcb92ea5d31fba7699557090d597503b498c2c00045d40ddafd +size 337544 diff --git a/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec4.png b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..439d320d05f5ca20fd673e3eaef59624863334ba --- /dev/null +++ b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e9b2ea76c76bcd039a5765a0a54309b85b627c8170444d71483d37a98e618b +size 326527 diff --git a/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec5.png b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f160af90095094ccf681222832681d36c114f736 --- /dev/null +++ b/specs/Kumanomi Soft_Tensei Maou-sama wa Yuusha ni Katenai!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548a635acc8dd9305eaa55b1fe95d5028cac113136c975d2b1005e168d883506 +size 305681 diff --git a/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec1.png b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e4c2bd18d0b712c4aca75ee8423be78599cf991d --- /dev/null +++ b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91984200329225c90fea3c8c60552c68d48d2e287745c5aaaff2c6bb776f1191 +size 306412 diff --git a/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec2.png b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f80eed9810b8e6e689c8748c89981d0a3c92df8 --- /dev/null +++ b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07806f496e0b8c3c5af944a331854e17c72d6b31cb890c6f6c9524271c27081c +size 313125 diff --git a/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec3.png b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6da19da29b74ddeb0aa8a7c22b673f016d5228b4 --- /dev/null +++ b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8adac4f225503883bb2b021188671ea205cdbc903bc42d8865041d436e97dd3f +size 318842 diff --git a/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec4.png b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..af597156e640c632da18c3415e86b72b858e41b7 --- /dev/null +++ b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6dc799120e8f0d1fd361ff4d324e316121e3c5011d11bdfc4832ddbab71709 +size 326322 diff --git a/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec5.png b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..46d01060f5632b53a96be692cf674b95f61f66f6 --- /dev/null +++ b/specs/LIFE0_Seven Days Anata to Sugosu Nanokakan/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b341a9f6f13888a59e1c61274467ebc8d7867caa6c940f5e7deb5d845fd9f540 +size 325741 diff --git a/specs/Laplacian_Hakuchuumu no Aojashin/spec1.png b/specs/Laplacian_Hakuchuumu no Aojashin/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..91f3e3a6fbbaf543ecb309876a8cbff6dcdfc86d --- /dev/null +++ b/specs/Laplacian_Hakuchuumu no Aojashin/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77192971e8c784e0f159951176925345c943cb6f5fbd49c97120316991cdb758 +size 280769 diff --git a/specs/Laplacian_Hakuchuumu no Aojashin/spec2.png b/specs/Laplacian_Hakuchuumu no Aojashin/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..07fd1f95b255edab9c145cc7e6fe9e65c63adea1 --- /dev/null +++ b/specs/Laplacian_Hakuchuumu no Aojashin/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:357e5fb59f5a110d629417f8215a3401b1cd05bdef4903f26e662a4b6afc7f18 +size 319467 diff --git a/specs/Laplacian_Hakuchuumu no Aojashin/spec3.png b/specs/Laplacian_Hakuchuumu no Aojashin/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a0489ff4ef7d2a3c2469e75e70ecfddff2208f43 --- /dev/null +++ b/specs/Laplacian_Hakuchuumu no Aojashin/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6051e30c065364ca0cf49791cf8c79310d1d6b8d5bd79c81ad347ccdd307a727 +size 284657 diff --git a/specs/Laplacian_Hakuchuumu no Aojashin/spec4.png b/specs/Laplacian_Hakuchuumu no Aojashin/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e1e79754f9cd95cee3a2dc785aff4fd9bf0221b3 --- /dev/null +++ b/specs/Laplacian_Hakuchuumu no Aojashin/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49968c6b288a9ab031989d15f6321a102ca1e06dd2c2a300c76a437d851990e6 +size 232255 diff --git a/specs/Laplacian_Hakuchuumu no Aojashin/spec5.png b/specs/Laplacian_Hakuchuumu no Aojashin/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0533c54b18bbcde4d146b55cc4282252dbdfccbb --- /dev/null +++ b/specs/Laplacian_Hakuchuumu no Aojashin/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09afe5f33b12eb04357d9d0961a59b7cf712e97c9f8047dd14345cc40cb45f1 +size 310158 diff --git a/specs/Laplacian_Mirai Radio to Jinkou-bato/spec1.png b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..5324c3e27d428dec6999122c84e90ac749997c49 --- /dev/null +++ b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ae408ae8f2b98341a2c58ab50d733bdee8c7b7590bdd1eae8921f933db268b +size 291630 diff --git a/specs/Laplacian_Mirai Radio to Jinkou-bato/spec2.png b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5c03c489c3c064c5198925d6bcb9a736d2d58c5a --- /dev/null +++ b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74c17210eb972a84c3b0c55ac74813d6bdbf91f020465660b9fdba1e118c894 +size 302661 diff --git a/specs/Laplacian_Mirai Radio to Jinkou-bato/spec3.png b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d26caa04658078236902eb65ed07cef51b4c58e0 --- /dev/null +++ b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc567d979e55b14ef56ff85be8234eb2df697987aa09b14f890cfbaa14892e2 +size 301847 diff --git a/specs/Laplacian_Mirai Radio to Jinkou-bato/spec4.png b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a63bf7ad07fbe8833d4c598711642d994eee14db --- /dev/null +++ b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d59813da520d5911ef2543e4009c61d0c0af60fa2dec1f8755ae51da73d30c +size 246362 diff --git a/specs/Laplacian_Mirai Radio to Jinkou-bato/spec5.png b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f14764a9701836caf72b4138ab35180d3628cd6e --- /dev/null +++ b/specs/Laplacian_Mirai Radio to Jinkou-bato/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:759114101231ccc3a9277ffb2ef01885266db95653cb9f83fafd518e32a7e7e3 +size 293942 diff --git a/specs/Laplacian_Newton to Ringo no Ki/spec1.png b/specs/Laplacian_Newton to Ringo no Ki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8635332513eefae0251e21758c6594c2f8c3a763 --- /dev/null +++ b/specs/Laplacian_Newton to Ringo no Ki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28f2a72c8087590a690a79df1ba84fc74810bc8d1f28ccdcf644f8820f539c9 +size 308102 diff --git a/specs/Laplacian_Newton to Ringo no Ki/spec2.png b/specs/Laplacian_Newton to Ringo no Ki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..18f154d4097540356faed38ca73c3b564de0b2cf --- /dev/null +++ b/specs/Laplacian_Newton to Ringo no Ki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd1e326d8c7dfd22d91287cfc6ec1ab528ec0aec66a9b2a6d238d7d029b8a94 +size 223464 diff --git a/specs/Laplacian_Newton to Ringo no Ki/spec3.png b/specs/Laplacian_Newton to Ringo no Ki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..86e06f00db8ebe4a02a3d1138b3011f978973303 --- /dev/null +++ b/specs/Laplacian_Newton to Ringo no Ki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74af78d586a1d55b5cc794f3814a28484501e70a10768c0f3c7e6070dfc7a4c +size 288225 diff --git a/specs/Laplacian_Newton to Ringo no Ki/spec4.png b/specs/Laplacian_Newton to Ringo no Ki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1244e251b0667fe04eec790168cc11226febe789 --- /dev/null +++ b/specs/Laplacian_Newton to Ringo no Ki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432c003eebf50dc6b5e492abed4ea95fd4fe746d050a0f4c921cb698ba4edbc9 +size 267624 diff --git a/specs/Laplacian_Newton to Ringo no Ki/spec5.png b/specs/Laplacian_Newton to Ringo no Ki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c12d03e61b7315e9d530db88b0142976c74c6fd1 --- /dev/null +++ b/specs/Laplacian_Newton to Ringo no Ki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5210dcbafac0730db6925a791f61d18d8a93cc89e1d144e8efdb0933ee22db5 +size 295094 diff --git a/specs/Lass_Mayoeru Futari to Sekai no Subete/spec1.png b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4ccfa0f9ccbaf5974117bb740974555c7699305d --- /dev/null +++ b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec8f4068d3d5d3acc47c5083939eb4919dd0140718dfbedd6aec31d1e370ec7 +size 316821 diff --git a/specs/Lass_Mayoeru Futari to Sekai no Subete/spec2.png b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8d4f479cf5da4e64df6abe3151dc6f88b3d10dfa --- /dev/null +++ b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65bacd5a4e231174ae16f70c7bbf8081d15d6e281d3aa136100947ee8fac6d4e +size 334376 diff --git a/specs/Lass_Mayoeru Futari to Sekai no Subete/spec3.png b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b6fd4e82f901459cc77ba859f18c6c7293361df2 --- /dev/null +++ b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8982c9494f7e2e612aa6650b63b8a3a519dc1fc4428993fada6312501a017660 +size 348401 diff --git a/specs/Lass_Mayoeru Futari to Sekai no Subete/spec4.png b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..58770e8f7f78764b1bdc858a61b57706d9f48863 --- /dev/null +++ b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880b0479718b03032a5d8586ef966df8717ae3a11948926efe74c1fe16e29dd0 +size 345028 diff --git a/specs/Lass_Mayoeru Futari to Sekai no Subete/spec5.png b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8f448098e6cc2e814199601036a042d861900ad6 --- /dev/null +++ b/specs/Lass_Mayoeru Futari to Sekai no Subete/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e077518a6072aa21331e52ffdb2ccf144844f329cd4cb01ecb0a677d667929 +size 341244 diff --git a/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec1.png b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ebd6a42b144d7ff8d0fb57067315918f5fb04ddc --- /dev/null +++ b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b2712f9b6bf930a78915cda043584a3f32daeed58e581a81d9199592887bda +size 308807 diff --git a/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec2.png b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..525e50c2dde69b6f2b6759db7a87e8f6409892c5 --- /dev/null +++ b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1dd30695ca516651ab8031104c550e9783564c24ec26200f27ed6e7e048674d +size 287145 diff --git a/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec3.png b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fa705916f5ee5b17ed05a812c966194d5b043dbf --- /dev/null +++ b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f67bf56528c553720e047733c1d6d3dbf0c0b07b5a03bc1c9ce070ce925bdb3 +size 311275 diff --git a/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec4.png b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..61d255bbe70863cc615fa9099b3812898759b6f2 --- /dev/null +++ b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b32d918f048925d4d45d10497c97e1ee2d113525ca60e47af048a259fb01ceea +size 301745 diff --git a/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec5.png b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0b08966cffd1d95f42d883d05fd6650d10e353 --- /dev/null +++ b/specs/Liaison_Amase-Jima wa Irokoi Zakari/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72678ca4744aee20ac744c888e5f8904708d827203ab5b1215c5b2b690a0c81e +size 274343 diff --git a/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec1.png b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6c217a9babfff171da06326e8a3de7e51b3532 --- /dev/null +++ b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a8cc275764a4afdaeadfe35c79bbacbce2937de0c690daf6820c76e972b0f4 +size 253489 diff --git a/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec2.png b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5f79f6581f49b3724140110ddfb115389c0e08f8 --- /dev/null +++ b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764de905677c8ae89d32c7b33c1748223b446551d0778a09307aac8a31d702d5 +size 273993 diff --git a/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec3.png b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..250ddbe9c4f4131f77f85762ce6ce998bb4b0f18 --- /dev/null +++ b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ea67ca726cedfd658c73a587b59473d1245d22459aad9c634f0a24125f90d6 +size 264066 diff --git a/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec4.png b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c6960b40cbb7d499d1ee2f1e7f9bcd62572224 --- /dev/null +++ b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed1bea68a47a5a9e19ceac75fb99ea64328aee3218f56edefa58feca32430b8 +size 261319 diff --git a/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec5.png b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1cbdaf3dd4e25d1f64e91ee031109a07cfd8b60f --- /dev/null +++ b/specs/Libido Soft_Hinekuremono no Gakuen Seishun Monogatari ~Ore to Kanojo no Reversible~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1abec9ad67c1d0be8d4c85838aec7f34d1b56c8349bb1f0c370b04c08801c0ee +size 315060 diff --git a/specs/Lose_Maitetsu - Last Run!!/spec1.png b/specs/Lose_Maitetsu - Last Run!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf4d11cd61da677f69b26207dad2cd9317808a1 --- /dev/null +++ b/specs/Lose_Maitetsu - Last Run!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a251cea0b846a851b8294e929745c9b43aa6f9100a44547d43fecdb10a42c5e2 +size 230644 diff --git a/specs/Lose_Maitetsu - Last Run!!/spec2.png b/specs/Lose_Maitetsu - Last Run!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..267adf704d6c8823c2ca022525c977eb87f0c7b3 --- /dev/null +++ b/specs/Lose_Maitetsu - Last Run!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b34038f7d72f4dd3e2d2c31cb414f28d67a9413732c1ab2fce1c0cb6d9404d +size 284668 diff --git a/specs/Lose_Maitetsu - Last Run!!/spec3.png b/specs/Lose_Maitetsu - Last Run!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..40f35392d0e26d3184ae2bfd2bb30252a87b0ba5 --- /dev/null +++ b/specs/Lose_Maitetsu - Last Run!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e9b8f485dd987a84e2ca0f10c6f3fa62fb530349f478966dea407e7df1d0a6 +size 280063 diff --git a/specs/Lose_Maitetsu - Last Run!!/spec4.png b/specs/Lose_Maitetsu - Last Run!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b1d6ffe88f9f759a527207e8da9f15e33a824dbb --- /dev/null +++ b/specs/Lose_Maitetsu - Last Run!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0904822d16069f98e4615e87bab224c3f1ad6ac5369ee107f771983e98e9e2f +size 324796 diff --git a/specs/Lose_Maitetsu - Last Run!!/spec5.png b/specs/Lose_Maitetsu - Last Run!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..78ade047f19b5e77c568ca0080ff8b185f5d744a --- /dev/null +++ b/specs/Lose_Maitetsu - Last Run!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3226e1bd748b492967a5230e56408450c9e66de6c49e511e2431e389d7a3530 +size 315344 diff --git a/specs/Lose_Maitetsu/spec1.png b/specs/Lose_Maitetsu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9c5bea6c848807dfc66a3d0e04e708100ba8f827 --- /dev/null +++ b/specs/Lose_Maitetsu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acda4736802b086831fc57065feea6e4fcbb6c9c3d23a5bee46bf01fc1dca5c +size 324227 diff --git a/specs/Lose_Maitetsu/spec2.png b/specs/Lose_Maitetsu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1926e39dfb189948754bcc33a0a6fb0e5c0c6ea7 --- /dev/null +++ b/specs/Lose_Maitetsu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3317a38c36622cfb72180b2abc9dcdc40c3b782a0b6536efef28826a1611da +size 315068 diff --git a/specs/Lose_Maitetsu/spec3.png b/specs/Lose_Maitetsu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..24327c0c262399613523a5d5ef485d46dff05594 --- /dev/null +++ b/specs/Lose_Maitetsu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c639eec3716e8e8d23a7ce6d7813655399ff7de8d126d67c2ba229c42f2656 +size 326044 diff --git a/specs/Lose_Maitetsu/spec4.png b/specs/Lose_Maitetsu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..476b415074f7fe227bfd1a5dace9db34a9518123 --- /dev/null +++ b/specs/Lose_Maitetsu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c5f0253041373c6a8b6780d0b1f07586700eb9960e1e6039a6126f394dbaa8 +size 334003 diff --git a/specs/Lose_Maitetsu/spec5.png b/specs/Lose_Maitetsu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c32b5dc6df6500b5743f92c032afaf34330e4bdd --- /dev/null +++ b/specs/Lose_Maitetsu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a50b5cd8205b728d1e951e2c55066fd61e574cdae94e5e605dcdfcab2d69be +size 316235 diff --git "a/specs/Lump of Sugar_Animal\342\230\206Panic/spec1.png" "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..8258d6b03e66961355cbce41be67977719d98346 --- /dev/null +++ "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfc970ec9f031d611447d3d60173e88728ef451b7f1bfbb839a91ec7ec85f1e +size 331106 diff --git "a/specs/Lump of Sugar_Animal\342\230\206Panic/spec2.png" "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..22ce46d5bce0ad7516d9de0a042974c6c17e7e62 --- /dev/null +++ "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e728aee81a842ef9221a654f8f68d3ed1405f778cf2afa6e79dbd3a852aafd09 +size 307157 diff --git "a/specs/Lump of Sugar_Animal\342\230\206Panic/spec3.png" "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..70afdd8db4bfd07fb0ba1151e0c3dd35a4b22b34 --- /dev/null +++ "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4ff53067570640117e9e65de1257b044ab237f4e32611cf9e301a3c53d2ee9 +size 316633 diff --git "a/specs/Lump of Sugar_Animal\342\230\206Panic/spec4.png" "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..00823cb4ac5e5edef121ffe194ea3e89ac611be0 --- /dev/null +++ "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bcb7d9ac77f743a8124f61cb2ebd749ae54ae7c2c86e24b3f339bad9cf757fc +size 324471 diff --git "a/specs/Lump of Sugar_Animal\342\230\206Panic/spec5.png" "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..3e63609d93288e9aa22b8aa72db4731ce34b07d2 --- /dev/null +++ "b/specs/Lump of Sugar_Animal\342\230\206Panic/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04ca3e2bbc144adec3878ae7228e6f2e0a3c2457162c81f75e6f6e9500f2afc +size 316051 diff --git a/specs/Lump of Sugar_Arcana Alchemia/spec1.png b/specs/Lump of Sugar_Arcana Alchemia/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..02c71cc1f9225f3ce48e67be570ba8ff9aa5f9b8 --- /dev/null +++ b/specs/Lump of Sugar_Arcana Alchemia/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f1d570a27023e03ada4e4b64c3beb565ed9e0f6cf276e677ee54ea21ff43f6 +size 303099 diff --git a/specs/Lump of Sugar_Arcana Alchemia/spec2.png b/specs/Lump of Sugar_Arcana Alchemia/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..debbcd8792858ce3a1614099c70734757be8ac2a --- /dev/null +++ b/specs/Lump of Sugar_Arcana Alchemia/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972e47e50d42f0f16e8582ad8f8d9e2fb8028dfe014b5e7f50c089caf4e664a4 +size 265538 diff --git a/specs/Lump of Sugar_Arcana Alchemia/spec3.png b/specs/Lump of Sugar_Arcana Alchemia/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..30763d103ce161123ae7b1aefc29e1ba2794dcf4 --- /dev/null +++ b/specs/Lump of Sugar_Arcana Alchemia/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c4e55941004c1833fd6c7d9ea3ec9d2140adcc001a9866a229860ce66fa290 +size 261452 diff --git a/specs/Lump of Sugar_Arcana Alchemia/spec4.png b/specs/Lump of Sugar_Arcana Alchemia/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a3fb265385372a5b8308b780be9c35fdb20fe9c5 --- /dev/null +++ b/specs/Lump of Sugar_Arcana Alchemia/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71668c01483e6f32843a635a0d183e7c80ee688d81b2141f94e0234af05af987 +size 300178 diff --git a/specs/Lump of Sugar_Arcana Alchemia/spec5.png b/specs/Lump of Sugar_Arcana Alchemia/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..50f8d17a12837105510d2ddd4306110173680052 --- /dev/null +++ b/specs/Lump of Sugar_Arcana Alchemia/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee4790891c0d46bb8348d5202891cbc1a173dfc6581384dcaf210c373e106fd +size 324448 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec1.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..f099bd2f258b18925a6b6b6138a388fb3e5e4c72 --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370a7a52382c51edc5963bf4a643b277f58f72fb1c0cd0b2efc60972a602e777 +size 277775 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec2.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..24a0bc24a4177dc1570b3a1c0619512a3920915d --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2737b370840e344801cf108e787177b46df6565b6eeaccaab65e0f9a7dda7a8 +size 317144 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec3.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..1c12ad5824c7427a4a5acb39d6732d40a4792b02 --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8800075b6ed9950258d4ce480f3aff98151602ed4827987a6cec08de9a8d2ade +size 268898 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec4.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..c05064f2117c6a16b72342863c541fb3aa04b0b9 --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2e7966d506466499f7fd4209c5b00244553019420633b6410bba7665459e96 +size 312384 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec5.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..421a58e4ecf733e681b43371b514e3b563c41634 --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -It's Heartful Days!!-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f00edb9348ae5b4c161f3bf71eba21d1968438775c082adae4f8c954d4ad205 +size 305277 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec1.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..5b7d453c18472953e256e71b924daf8444791a76 --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76959baa162b8189bdde60351b8e461aede4cf1ade9c9aa5c94128a7472eb952 +size 287729 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec2.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..0dd4c64669d24ba9f6cf7ab12378baa60b406f1a --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e8330d8fc984d149eed546ac4a1610b6fb875082f2116051c35f81d18f6468 +size 257946 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec3.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..9be5ae5b4c7de87fec0ca5ea4d7305f7ac22b90a --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfa8f60ee3b7d2747ee4ca4a84d0ba8f25d2bd77f756e382743f978444c8630 +size 290581 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec4.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..055a7b3d714ea8ec178560c0e51d1b1d16a8ca14 --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1db81a4bb2c3e6d1f8c07e178eadcd57cb0f9eca5745d0ce323aeb6af115397 +size 254760 diff --git "a/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec5.png" "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..000f570172f1f478ecc5d4327a360c7a79505d7c --- /dev/null +++ "b/specs/Lump of Sugar_Gaku \342\230\206 Ou -The Royal Seven Stars-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bbcd9b3d9fb9fed81b3f69671fdea7dec646a6f01004ffc425d08dff1c9ee2 +size 303560 diff --git a/specs/Lump of Sugar_Hanairo Heptagram/spec1.png b/specs/Lump of Sugar_Hanairo Heptagram/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..34368a27dfb4c620cd70f8bf72d8c1970758703c --- /dev/null +++ b/specs/Lump of Sugar_Hanairo Heptagram/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0c8d92ece1dfbd2c26e791476f146ba9491fb4baca525ad06b7eaa38da990d9 +size 283058 diff --git a/specs/Lump of Sugar_Hanairo Heptagram/spec2.png b/specs/Lump of Sugar_Hanairo Heptagram/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f69142dfcd08815d52c652a897af965cadbeb707 --- /dev/null +++ b/specs/Lump of Sugar_Hanairo Heptagram/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5548768e950fa5a872ddff7aed6dcd05d03faafd9dca509f3162c621b64f01c3 +size 303700 diff --git a/specs/Lump of Sugar_Hanairo Heptagram/spec3.png b/specs/Lump of Sugar_Hanairo Heptagram/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e84e30d4c3cf8f62e1f42a554400d1a87fc7ff85 --- /dev/null +++ b/specs/Lump of Sugar_Hanairo Heptagram/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594be694134d83a6b7944fef98afb54a6cc18ad43c9001b0a4026f610eaa2f0c +size 238684 diff --git a/specs/Lump of Sugar_Hanairo Heptagram/spec4.png b/specs/Lump of Sugar_Hanairo Heptagram/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..31cc5d3dde81644deda2d16f7872f5e53e484f62 --- /dev/null +++ b/specs/Lump of Sugar_Hanairo Heptagram/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169d5060d9b13fc884a5fd5990b3f0a5868670fea2227c0671236a773adc3f77 +size 198999 diff --git a/specs/Lump of Sugar_Hanairo Heptagram/spec5.png b/specs/Lump of Sugar_Hanairo Heptagram/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b65e4851f12441e822c9a1bfdb4dff2ed66cbf61 --- /dev/null +++ b/specs/Lump of Sugar_Hanairo Heptagram/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3903383e88d04bb42a32ba94875588627710c04d5cee8905f1bec627689c00 +size 287425 diff --git a/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec1.png b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..82b58212ab7078ea8278997cf2e7938677ddae46 --- /dev/null +++ b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d13b97eecfb92441bf4cbf0e63ee30e54598b25072640709f19061c198190c +size 280207 diff --git a/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec2.png b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2bbca1ee57aa4f00de309125db43fa637466396d --- /dev/null +++ b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd65d97a99731664edec0537dc1f0c2fea03821b2384612bdef853b2670489d8 +size 290699 diff --git a/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec3.png b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..16d1c271d22a3b327e6f716d8b823b72fb3439ef --- /dev/null +++ b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414d85150cf9c4947c21f45cbd2fda0acf8b556f2e54f15d7ea55bd2ed7f5723 +size 217584 diff --git a/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec4.png b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..80561cc7a468190b05c4ecb02183cdcdfc63320a --- /dev/null +++ b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5183bc0133c0ff12f590af1ecb1036d20e870cdd978cf413be35dd9a61d2e0 +size 277335 diff --git a/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec5.png b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c73b7c37e7a7b1c074096674ef1d3724d4f52805 --- /dev/null +++ b/specs/Lump of Sugar_Haruka Ao no Hanayome ni/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc6d5cb4d6acb70c7b4c1e92a71e45de25b79a62db4d18fc80fef2594a0e25f +size 278710 diff --git a/specs/Lump of Sugar_Kodomo no Asobi/spec1.png b/specs/Lump of Sugar_Kodomo no Asobi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fbaf60015bdb9eb27c1411cbbb2b8075c321836f --- /dev/null +++ b/specs/Lump of Sugar_Kodomo no Asobi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244e63714a72d88443d8713f9582d8ae1d58202c4f14dc75bf0fa10c0b88f0ed +size 171622 diff --git a/specs/Lump of Sugar_Kodomo no Asobi/spec2.png b/specs/Lump of Sugar_Kodomo no Asobi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a74673131421bf4b9541470b7368b3eee9f348 --- /dev/null +++ b/specs/Lump of Sugar_Kodomo no Asobi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120f8cbf88fb7a0dfda959f0fa5fe10322991a923a0b1377537165e6f37093fd +size 326492 diff --git a/specs/Lump of Sugar_Kodomo no Asobi/spec3.png b/specs/Lump of Sugar_Kodomo no Asobi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3927a8bcac1a9b65c3b0b91b6f9fb6e250f4cbba --- /dev/null +++ b/specs/Lump of Sugar_Kodomo no Asobi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77b4de2575420e6bbf478de83d71f1d61f5ccb622f009b3cf6b591caf779a9a +size 339492 diff --git a/specs/Lump of Sugar_Kodomo no Asobi/spec4.png b/specs/Lump of Sugar_Kodomo no Asobi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..de2e36a0bb80c03075f5af9a195d9531e31f9b07 --- /dev/null +++ b/specs/Lump of Sugar_Kodomo no Asobi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154b49b94b3771742f3107dfc7be7e385e3545e0011093deda12d7c044a8a098 +size 339218 diff --git a/specs/Lump of Sugar_Kodomo no Asobi/spec5.png b/specs/Lump of Sugar_Kodomo no Asobi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7fad49a6cb45a2f02cd496ac40d26f86126b4445 --- /dev/null +++ b/specs/Lump of Sugar_Kodomo no Asobi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac4501653107674ebb40f14678b30385705f4de05abe2dc46aa8c4f441b77e7 +size 311006 diff --git a/specs/Lump of Sugar_Little Princess GO!/spec1.png b/specs/Lump of Sugar_Little Princess GO!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3542cc0826adc49df8c0febc842f05ef30efe2e8 --- /dev/null +++ b/specs/Lump of Sugar_Little Princess GO!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0f35772936b60e27bb37018e9f10dac614bab938211f1fba4c49a5e116f596b +size 307253 diff --git a/specs/Lump of Sugar_Little Princess GO!/spec2.png b/specs/Lump of Sugar_Little Princess GO!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..57391451d67da105ad149228a05fb38c2ce0e361 --- /dev/null +++ b/specs/Lump of Sugar_Little Princess GO!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f83ed9be61877827483285f461002519fe2f60a93dd959dc5eef4fd79aed10e +size 290678 diff --git a/specs/Lump of Sugar_Little Princess GO!/spec3.png b/specs/Lump of Sugar_Little Princess GO!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8c7b1e17b3aa5a0db02f646554ae0ae7e3f61d72 --- /dev/null +++ b/specs/Lump of Sugar_Little Princess GO!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7214558a1b8fd3fe56a2754435442682694b7f5609e81c04742bb6bc9de048 +size 303309 diff --git a/specs/Lump of Sugar_Little Princess GO!/spec4.png b/specs/Lump of Sugar_Little Princess GO!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1f3341eed107e54500ef7a523fe40e3cee27a3eb --- /dev/null +++ b/specs/Lump of Sugar_Little Princess GO!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d46df09e2fdef7d2d552b5bc8d0e6e194a8cca2aa29972b86bf6193d735710 +size 309820 diff --git a/specs/Lump of Sugar_Little Princess GO!/spec5.png b/specs/Lump of Sugar_Little Princess GO!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a9a21eaa85e465dc7cfabf7b761113a951e4ddb1 --- /dev/null +++ b/specs/Lump of Sugar_Little Princess GO!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e786b547cb62ee2891760326a157302e36100bc7bac4884c3bb24539d925a5 +size 277713 diff --git a/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec1.png b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d97ccb560330697f7939090fd00d8ac0484303fb --- /dev/null +++ b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf339dda450d2f2d8c0008c3ad0f3b68700e661f8cd402ecacc45cc306a687a +size 330206 diff --git a/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec2.png b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..30cd1376edf6b691383eede0744fbb98ece1274b --- /dev/null +++ b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14975a45ba15a0b0a93106f6682f3b0b3d99b438c56c881c4e4e35919817d938 +size 281579 diff --git a/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec3.png b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..452def807137a626dc1277c09f471f72bdc233a4 --- /dev/null +++ b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc113dc080555a962973486902634cba6c8de8084c4b42be56a4a4cc21b6cce +size 296362 diff --git a/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec4.png b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7fc2a2b80747da2eb161e429a738d469da8ec2c0 --- /dev/null +++ b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970d05107645359d52e2a781e34879ccc4dbbbb9fbb8ec7007a0101ab29d57c9 +size 366727 diff --git a/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec5.png b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c5098268b12bf4bbb507acdc913a034051f6b106 --- /dev/null +++ b/specs/Lump of Sugar_Madohi Shiroki no Kamikakushi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f8b5310b5c0c0e9004c3ac170c25fdbea36dbc47e0fff5e68285dd728eb701 +size 276165 diff --git a/specs/Lump of Sugar_Magical Charming!/spec1.png b/specs/Lump of Sugar_Magical Charming!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fc4dbcb1501270be14cb1ef37b64b6201b3f639d --- /dev/null +++ b/specs/Lump of Sugar_Magical Charming!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e34ef726550a0983097865a6ac1b40ccf2e09309d7755f3136f773170b6621 +size 296730 diff --git a/specs/Lump of Sugar_Magical Charming!/spec2.png b/specs/Lump of Sugar_Magical Charming!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3c2ab99f4c9064201c8652160e1b26dd38d146dd --- /dev/null +++ b/specs/Lump of Sugar_Magical Charming!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2323833ba9b3a3995e8d204f7db0a393a5d5bad7bc9ba8d9650d56fe6968d4f8 +size 317911 diff --git a/specs/Lump of Sugar_Magical Charming!/spec3.png b/specs/Lump of Sugar_Magical Charming!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..797a2507df70c1d4df4c3d8999f8954fd8316763 --- /dev/null +++ b/specs/Lump of Sugar_Magical Charming!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:135854384ade86497b6886dd5302e5fb5d01d02bf9fdfbf4a23e28684b732b19 +size 308138 diff --git a/specs/Lump of Sugar_Magical Charming!/spec4.png b/specs/Lump of Sugar_Magical Charming!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a1221bcd9ff9b2552fc9a1583cc7f85e17050ef2 --- /dev/null +++ b/specs/Lump of Sugar_Magical Charming!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63d61f02fd3ad7295161d0bb178c499a24d1ab588342eae5321b23f3aae6f06 +size 325646 diff --git a/specs/Lump of Sugar_Magical Charming!/spec5.png b/specs/Lump of Sugar_Magical Charming!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..698cb720411740abe0b2715a15135bba2b17bd8a --- /dev/null +++ b/specs/Lump of Sugar_Magical Charming!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4907448922096473ecdd99967f59c40d1117572c4acd2ca8ea111cad9f3ca858 +size 212926 diff --git a/specs/Lump of Sugar_Nekotsuku, Sakura/spec1.png b/specs/Lump of Sugar_Nekotsuku, Sakura/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..442b6c02c4370f4150c0648e7329511360a0050a --- /dev/null +++ b/specs/Lump of Sugar_Nekotsuku, Sakura/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c72d6f7bf98edec7e52bffc1d5df4bac1bd07407ea1ed1f608f93d5b9d956f +size 332215 diff --git a/specs/Lump of Sugar_Nekotsuku, Sakura/spec2.png b/specs/Lump of Sugar_Nekotsuku, Sakura/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..107081565f9d95e8322fd5c174945deff22f9f13 --- /dev/null +++ b/specs/Lump of Sugar_Nekotsuku, Sakura/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3af25ea059511f1e2e48248cee03f8a76afd9b507171fbe9252eeeb1cf3d4d5 +size 323218 diff --git a/specs/Lump of Sugar_Nekotsuku, Sakura/spec3.png b/specs/Lump of Sugar_Nekotsuku, Sakura/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e337769c521bd0377e188397681b8ec8d3dae24a --- /dev/null +++ b/specs/Lump of Sugar_Nekotsuku, Sakura/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7706d2e93a2d7cbd16ce4a404f5899fc925d05237a0d22c401ffa68403ee54 +size 323034 diff --git a/specs/Lump of Sugar_Nekotsuku, Sakura/spec4.png b/specs/Lump of Sugar_Nekotsuku, Sakura/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0dde689dea8c81d33fef805d90e6053054d78756 --- /dev/null +++ b/specs/Lump of Sugar_Nekotsuku, Sakura/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b26b9e4fe7fb3a462eeaa641aec8bfc9afee358de54dc9e3a1317b1f630cb5 +size 326889 diff --git a/specs/Lump of Sugar_Nekotsuku, Sakura/spec5.png b/specs/Lump of Sugar_Nekotsuku, Sakura/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..81d759b86b4b4f1f3c9300304d9220118fc07d94 --- /dev/null +++ b/specs/Lump of Sugar_Nekotsuku, Sakura/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511235ebc73e18f92fd99efd088a933fcc325a3c9e7f81ae65e253ce95e562be +size 323365 diff --git a/specs/Lump of Sugar_Rensou Relation/spec1.png b/specs/Lump of Sugar_Rensou Relation/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7c41fd83f56a5867115ff00e0508d97b68881a94 --- /dev/null +++ b/specs/Lump of Sugar_Rensou Relation/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28825a790c583e7854e4583afc1e2eecc4007b3c05ff7e2264c8a8682ecbe69c +size 311027 diff --git a/specs/Lump of Sugar_Rensou Relation/spec2.png b/specs/Lump of Sugar_Rensou Relation/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6aa0048362538657caaff0f2a7b94f80bdb57b69 --- /dev/null +++ b/specs/Lump of Sugar_Rensou Relation/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f1c74a0fec5fbbd2c514a4a1a0b163b7e94e1e8dd5c234c02a6fef2a5a284a +size 310696 diff --git a/specs/Lump of Sugar_Rensou Relation/spec3.png b/specs/Lump of Sugar_Rensou Relation/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b3e92b1a9bf213eb4711d8397efe3f08ad6127ce --- /dev/null +++ b/specs/Lump of Sugar_Rensou Relation/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e1498d68fd2c301ad2b1825aa7842149790d16584a37c55700c84062c18c3e +size 306902 diff --git a/specs/Lump of Sugar_Rensou Relation/spec4.png b/specs/Lump of Sugar_Rensou Relation/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..efe7aceedd7657d092f48ded82942fa2bca71a14 --- /dev/null +++ b/specs/Lump of Sugar_Rensou Relation/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955cd2f0fdf670f11d9a34822dfb7647b3cc1c6656993fa3cc124182221f3dfc +size 320355 diff --git a/specs/Lump of Sugar_Rensou Relation/spec5.png b/specs/Lump of Sugar_Rensou Relation/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3f897c5ca6bb7e192c2f41269a4b01ce3444e46b --- /dev/null +++ b/specs/Lump of Sugar_Rensou Relation/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d282cc132d5643b9e20f06b350a4c0137c888d696dd3eeabf389fd97b2ba74 +size 276720 diff --git a/specs/Lump of Sugar_Rurizakura/spec1.png b/specs/Lump of Sugar_Rurizakura/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f3db265769754dd3bdbfeaac1ae02c910b8131d0 --- /dev/null +++ b/specs/Lump of Sugar_Rurizakura/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75c92c8de7b53d786edbe0ca7d61bdc97370f8404b61dbe19c5050d6b5180d3 +size 257348 diff --git a/specs/Lump of Sugar_Rurizakura/spec2.png b/specs/Lump of Sugar_Rurizakura/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f946adb7483a3ad2b8d004df936f15fd88de513 --- /dev/null +++ b/specs/Lump of Sugar_Rurizakura/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b5ec4a4e17bdd1219c78a60720953111d25160efeb362bea1b968ebbebe521 +size 262249 diff --git a/specs/Lump of Sugar_Rurizakura/spec3.png b/specs/Lump of Sugar_Rurizakura/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a628f715780fa4ed5e9653b8360e504e42ced1 --- /dev/null +++ b/specs/Lump of Sugar_Rurizakura/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be89e51726e0d877e521c65d5600064c473ccd65e31692e96dde0229658039dd +size 291660 diff --git a/specs/Lump of Sugar_Rurizakura/spec4.png b/specs/Lump of Sugar_Rurizakura/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ea05791e04be20319c895eb27f7a8fbf84d04510 --- /dev/null +++ b/specs/Lump of Sugar_Rurizakura/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3435e76a76be6e98275f05c0323890ce6e34011d6b70b5ed8a8994f42133b7bb +size 241957 diff --git a/specs/Lump of Sugar_Rurizakura/spec5.png b/specs/Lump of Sugar_Rurizakura/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d2c11502fa7e8a02bc9bc9bd77b812a55d391679 --- /dev/null +++ b/specs/Lump of Sugar_Rurizakura/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47271a88f8b86ca94d2df6fe6453f26c1630179c67150f1ffb0bcebb22029958 +size 303730 diff --git a/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec1.png b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd893a0dac84cc66324bdca06672a86f4af0cae --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35289f67510b7b92846448d2938eebea0e116d9de9babf61d32a1a926c9a61bb +size 324823 diff --git a/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec2.png b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ceea25f712a7abafb020dd183308f07ca73210a4 --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35bfefbfc1a7074aed844e40f41cad9ac50aa1c79f08147e231cc15ab7f298a +size 322345 diff --git a/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec3.png b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..69cbdc2fa87b61153585bd81efd0960daa405151 --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0af8f37b762eb29424dc13efa0851dd4ada0edcf54d3ee3e8bd4c6caa49d9b9 +size 329271 diff --git a/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec4.png b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4b9e6456ed5f004afa50aaecd7574457735afe42 --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f62339604fd75f9e755787d45de4a8fe6f5ba8a3ff71c24b3a8a34ad378ff1 +size 340918 diff --git a/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec5.png b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..885a61e32d5f6e8b6febe45863dae425cfa66a69 --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -After Stories-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9adca6c325e339319c7eae5dc145b78976d86f3ec79d369ba028d6d32cdba1 +size 335151 diff --git a/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec1.png b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f50615e060c4e05d8eb306e3d79ff1ba88a8f48f --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5b014be940e5acbbed42836948dc1b831b24a3ae9cf95777b72420132457b3 +size 343906 diff --git a/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec2.png b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f05bb4a7dcbf875a91a607293ff57d4d39a84f6c --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2857ae600d289be3fd56b8be98e9f2ad6601577eb6b61d5693940b0a4453fbbf +size 351172 diff --git a/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec3.png b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..00eb6da7423ae97238ce86fb70ec18030c6ed3ea --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b98f90bdacd9e13cf679fc49c5322c9d88daf04bb097cc9929a9ea75729cc09 +size 322013 diff --git a/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec4.png b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d96a2c6f036163151f17d3851ec34c447020f364 --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c593a79effb182c45b1c619985ee445bdb3b12d6ef1664210b2addee010d55 +size 323422 diff --git a/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec5.png b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..672c165dda38576e44113115bdf6846e10bf5161 --- /dev/null +++ b/specs/Lump of Sugar_Tayutama 2 -you're the only one-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62995be2ab4eb54890c0c7bc706688b319dc35c00f2bdd7e7d70f843b36317a9 +size 314138 diff --git a/specs/Lump of Sugar_Unmei Senjou no Phi/spec1.png b/specs/Lump of Sugar_Unmei Senjou no Phi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0b988d21d741bd2004f18317d42c5ef8b53a70a4 --- /dev/null +++ b/specs/Lump of Sugar_Unmei Senjou no Phi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06217848d59de9ac312c44ccd9798800f4f9d65fab7a66ff2519e9831b84210 +size 302016 diff --git a/specs/Lump of Sugar_Unmei Senjou no Phi/spec2.png b/specs/Lump of Sugar_Unmei Senjou no Phi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f0a511e65ba093a9a7052e770e6679bd1b2a898 --- /dev/null +++ b/specs/Lump of Sugar_Unmei Senjou no Phi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bba7477b355af312aa4e397a6920d7d780f8d4df02e82458baddc3272eb70db +size 306812 diff --git a/specs/Lump of Sugar_Unmei Senjou no Phi/spec3.png b/specs/Lump of Sugar_Unmei Senjou no Phi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3254821d06a55b06388cd38030bf9fac32474352 --- /dev/null +++ b/specs/Lump of Sugar_Unmei Senjou no Phi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9b72bc5b411493b020607bfb6bcf5ad5bd897d532e152b0611e471b3daa8bc +size 260972 diff --git a/specs/Lump of Sugar_Unmei Senjou no Phi/spec4.png b/specs/Lump of Sugar_Unmei Senjou no Phi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..454b155ccb3b3bf2505a53b07aabf10f5a5903c1 --- /dev/null +++ b/specs/Lump of Sugar_Unmei Senjou no Phi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d8e7ed1e870de23f47a11af162944d3afb3061465b4ad16137df594595c95c +size 280855 diff --git a/specs/Lump of Sugar_Unmei Senjou no Phi/spec5.png b/specs/Lump of Sugar_Unmei Senjou no Phi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..12ebdf6e0fb75861e623e0271f26f878f7bd7d6a --- /dev/null +++ b/specs/Lump of Sugar_Unmei Senjou no Phi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a717217ee462012ec0e21e3fb96e08a2b78740cd5c6bc471d6f36e17f66629 +size 276578 diff --git a/specs/Lump of Sugar_Wakaba-iro no Quartet/spec1.png b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b17bd3ac34d5a7c4cf496308172d7093ebf49b7a --- /dev/null +++ b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf77eef8aa80782a1f9bc1d37b92a686a7537a02c229640a138aba16b39ad5cc +size 332929 diff --git a/specs/Lump of Sugar_Wakaba-iro no Quartet/spec2.png b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..abb4c3740c771cbb9c162c7bed3c46df7dc1f66c --- /dev/null +++ b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca21aee619247fcbe99731beec16a3d56773ff852351a9d40a2fde093be2d41 +size 306051 diff --git a/specs/Lump of Sugar_Wakaba-iro no Quartet/spec3.png b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..364d658e290039d53270760e9b46521ff7c8abd6 --- /dev/null +++ b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cab856c9dc7de4b6d2d4520c02b1b15720ff88407e950f6b896ccbe1a7e59b2 +size 333061 diff --git a/specs/Lump of Sugar_Wakaba-iro no Quartet/spec4.png b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..675d889ede54c52134f44cdc232e1dcbd5d3c7e5 --- /dev/null +++ b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4015fb530a884b2c3dd1ff6718e3a8342c5c1883b05eb83a45ce9e574022de59 +size 337881 diff --git a/specs/Lump of Sugar_Wakaba-iro no Quartet/spec5.png b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0975b0fa38407a222f013c7ebc99e9a166f76c70 --- /dev/null +++ b/specs/Lump of Sugar_Wakaba-iro no Quartet/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61d71e076ede2d966055203b7ce83731e51dd52394c547e745ab7efd9dfb878 +size 309944 diff --git a/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec1.png b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7f0bb2834a015ffc4df58d0bcbba62fd9f08c963 --- /dev/null +++ b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c16853f48efaabf40cff68be4d7c5206a60b7f54478f87885b2bfd1f3105774 +size 262332 diff --git a/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec2.png b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..34ed90943faa8085fc9c7d19c8cdb77032d70e26 --- /dev/null +++ b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70aaa26a202be66c99d8196ca8972ed509cdf5274df4a9f1b74f535c5e3b7c51 +size 329626 diff --git a/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec3.png b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3f1adae9bf685ee1353affb5000f14749c70e01b --- /dev/null +++ b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec2d0c2568edc3f31de97964aa3424b64acc3a06b33a6bdaeea9466a778fa10 +size 211551 diff --git a/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec4.png b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..41b1e336b8c146ad8f2c2129813eddeb14430540 --- /dev/null +++ b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:529c950bbd44da40cc6219c1404f7b6877204cc09d0810fe74e542f3ec67aa2d +size 217932 diff --git a/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec5.png b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..530b045a517604d8028314f9c68bce2ed79d3fd1 --- /dev/null +++ b/specs/Lump of Sugar_Yorite Konoha wa Kurenai ni/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420572499ce5ad30433cb1be9421d186666c61d3906a72aee64547847740ad24 +size 315954 diff --git a/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec1.png b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bd35a1e7d906dc9087dd308897b2b3dd48158f3d --- /dev/null +++ b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724988beafc6da32e2e9d70f0413455b669cabb1c99f102c4c582fcc7bd45298 +size 347103 diff --git a/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec2.png b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..dfb6f812b7a76abab582f7486bcb3257c65c37b7 --- /dev/null +++ b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca7156dcb7d831470acae9ed87084bf4ed114dee8b3815d7fb802e3ef7281c8 +size 315765 diff --git a/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec3.png b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2830c45a915563e087fcc7001d5a11a2316b3a66 --- /dev/null +++ b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af562644ffbe780a59d4b183a5ff9ecc7eb1eb822b222dff4bd5419fabaf580 +size 262454 diff --git a/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec4.png b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..116b46eaee9dd853cb109818edbe6bd3b77aba9c --- /dev/null +++ b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7820f4e243bb34a0ebd9deddeab046cf1af9c4feeb2846c23595071b32f94c4b +size 277528 diff --git a/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec5.png b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9b0c20f93db4544f31004fe11f834fba1d8381a7 --- /dev/null +++ b/specs/Lump of Sugar_Yumahorome ~Toki o Tometa Yakata de Asu o Sagasu Maigo-tachi~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0d07f17fba62df5b9b6d5a6c8fc8438939a5b99190a81a8bb7081c769dd15e +size 270729 diff --git a/specs/MELLOW_Sky Chord/spec1.png b/specs/MELLOW_Sky Chord/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..837e07b03f60e2e4f31af4e4138235c4963574d2 --- /dev/null +++ b/specs/MELLOW_Sky Chord/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcd3e5d33df2f7cc503e56e02d346e9acd7fe6583a4ff786b5c83e41fbfbccd +size 327078 diff --git a/specs/MELLOW_Sky Chord/spec2.png b/specs/MELLOW_Sky Chord/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..66cc3f9e1ac32eb20f2f8a508d263c2f62dd5741 --- /dev/null +++ b/specs/MELLOW_Sky Chord/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73859f85e5bb8f5391a5724b74825330ecb41f8ed82511fbc5c551a11b0e21ff +size 332991 diff --git a/specs/MELLOW_Sky Chord/spec3.png b/specs/MELLOW_Sky Chord/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba735a709fc9a4458c0869e3790ffdd08814bf9 --- /dev/null +++ b/specs/MELLOW_Sky Chord/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b3ab9241fd8166f2926db70b495d9a782b7c576f4b5a8a1e2226bd1ef82d26 +size 270156 diff --git a/specs/MELLOW_Sky Chord/spec4.png b/specs/MELLOW_Sky Chord/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f16830b066662abbc7add21ea30b54494a5bd69e --- /dev/null +++ b/specs/MELLOW_Sky Chord/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070acaa4377b7bff722fce2934a2d9f893c726eee2899ed2aaa27d546c2032b8 +size 338027 diff --git a/specs/MELLOW_Sky Chord/spec5.png b/specs/MELLOW_Sky Chord/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c47b01cb39278de1587daee1aeebda086a0cba --- /dev/null +++ b/specs/MELLOW_Sky Chord/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b6941ac6f1a4178b6cf012de11ddb4545235c3d5f4f4dfcc449b1c45795637 +size 324234 diff --git a/specs/Madosoft_Hamidashi Creative Totsu/spec1.png b/specs/Madosoft_Hamidashi Creative Totsu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1b121df86e79f309d44a4659480388b3071010b3 --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative Totsu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f27d55a7aa71771343cdcb280268d39f86a1b8b872f5bb038f0cecbb5f00189 +size 308233 diff --git a/specs/Madosoft_Hamidashi Creative Totsu/spec2.png b/specs/Madosoft_Hamidashi Creative Totsu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9a9ca26c006e2bfe0010f59d3dc3cdc58e43b358 --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative Totsu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764d6d5575d951c799cd158103d01aef637384f0c365e85a08f318f16c079b79 +size 240253 diff --git a/specs/Madosoft_Hamidashi Creative Totsu/spec3.png b/specs/Madosoft_Hamidashi Creative Totsu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..be6c37d1bb0c7069e025d377481e41fa53cfe25d --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative Totsu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb051b815ad64f3222b7b1f88506be35912a5b9662c4bf185183c61fb4fb243 +size 253685 diff --git a/specs/Madosoft_Hamidashi Creative Totsu/spec4.png b/specs/Madosoft_Hamidashi Creative Totsu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..cee0f042147eec782ca3f907f23262c29a228395 --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative Totsu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76bbbed1464f906ff8b0b4eee1f37989a06de9a8f43c03db2bca486f73d17dcf +size 257934 diff --git a/specs/Madosoft_Hamidashi Creative Totsu/spec5.png b/specs/Madosoft_Hamidashi Creative Totsu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d39008d02e66f06bf60499429a97cb415fadfec7 --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative Totsu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c40627db26f1b311ac332d0001ee223b65ea77474cdf84041830c97736fd73e +size 280176 diff --git a/specs/Madosoft_Hamidashi Creative/spec1.png b/specs/Madosoft_Hamidashi Creative/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7be78655fdf9d67baf443f0b2b638fcb2ed1174a --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df5044dbb4bdf12348e373767286e47f6d80438020b96486657733a7a3d9b46 +size 307532 diff --git a/specs/Madosoft_Hamidashi Creative/spec2.png b/specs/Madosoft_Hamidashi Creative/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..96803e42c4b35a3eae5b7345630a047763c21900 --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e9f0c50a699f23e02e2776f7631b9ea216bea3d253f75cc8234f1c003a7404 +size 303100 diff --git a/specs/Madosoft_Hamidashi Creative/spec3.png b/specs/Madosoft_Hamidashi Creative/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3f7d2880a865e07da075904a7b27da928d6757da --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b3fef240a7e527567e8e64e867ed93cd1f7bc7cadde54c611c369c8e09c54e +size 313765 diff --git a/specs/Madosoft_Hamidashi Creative/spec4.png b/specs/Madosoft_Hamidashi Creative/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..254b9b346f5534d591b923686d447668ea743372 --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eedd10ff285f0c7efb6ed38782487107c92e852ba5b0cd2d26b8a7faab81c9a1 +size 312804 diff --git a/specs/Madosoft_Hamidashi Creative/spec5.png b/specs/Madosoft_Hamidashi Creative/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2c62e6493cb9216e162704232c8d5cf6d7cc28d3 --- /dev/null +++ b/specs/Madosoft_Hamidashi Creative/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17c2031c946e116dd9f125e5b95054acb9ba9fabef0a89fcf27fefed61bb313 +size 321746 diff --git a/specs/Madosoft_Raspberry Cube/spec1.png b/specs/Madosoft_Raspberry Cube/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0af973de2b08726e2d4b4c6f0395e51791eff078 --- /dev/null +++ b/specs/Madosoft_Raspberry Cube/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4da5d19b105eb87ae5ef088805b8d9bf290b0b5b2cd2fe9aeab78f4087633d0 +size 361764 diff --git a/specs/Madosoft_Raspberry Cube/spec2.png b/specs/Madosoft_Raspberry Cube/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8c59ff99ec80ad5bb79f60e3514df00079b21738 --- /dev/null +++ b/specs/Madosoft_Raspberry Cube/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c881364e43dd49e3480d7a04423633e2ac55412b29a335952f03fc70ac4e52 +size 354548 diff --git a/specs/Madosoft_Raspberry Cube/spec3.png b/specs/Madosoft_Raspberry Cube/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c5b05312b3a7d3a110e7775fbc49b056eb65bf5c --- /dev/null +++ b/specs/Madosoft_Raspberry Cube/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0f3c67fdea131d478953a4b7630e3a1333671c84e6d138a4b274082199524c1 +size 331124 diff --git a/specs/Madosoft_Raspberry Cube/spec4.png b/specs/Madosoft_Raspberry Cube/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1b107778094827a9cadb21e92c67ed3875d2b9da --- /dev/null +++ b/specs/Madosoft_Raspberry Cube/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f3a90ee4fd70358ac19087844d2b6a8a8c161af1ea185bd530fe0882c98f63 +size 343760 diff --git a/specs/Madosoft_Raspberry Cube/spec5.png b/specs/Madosoft_Raspberry Cube/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..631b32d813da80de4595ffc05a2d6240749e0dc3 --- /dev/null +++ b/specs/Madosoft_Raspberry Cube/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba1681a546d422928a44206829d269dd2b0236458be26d47c35521cfce6b215 +size 355149 diff --git a/specs/Madosoft_Select Oblige/spec1.png b/specs/Madosoft_Select Oblige/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0c3dfd1b84d70f77089e2851c3fa77736ac1534a --- /dev/null +++ b/specs/Madosoft_Select Oblige/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7313f7f10e4e8ffefbf7e892ab86a1f7e3468c4606ed34a517b005c9c5cbed +size 284789 diff --git a/specs/Madosoft_Select Oblige/spec2.png b/specs/Madosoft_Select Oblige/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..dc26c674052655ddd9e962ac450190c05109c864 --- /dev/null +++ b/specs/Madosoft_Select Oblige/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255ce01088aa55175db4e556d5b2937988c48280aef6433343eecf2f5b0038d4 +size 282774 diff --git a/specs/Madosoft_Select Oblige/spec3.png b/specs/Madosoft_Select Oblige/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fd50ffd1722120dd93c624c52cfb264f9df3d0fb --- /dev/null +++ b/specs/Madosoft_Select Oblige/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc6b5f550b7ee85374c428b68025618d8387413c856df9663d8c39dcfbc0f6f +size 270707 diff --git a/specs/Madosoft_Select Oblige/spec4.png b/specs/Madosoft_Select Oblige/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..66a51e8c275945dedb905d7961b407127886a47c --- /dev/null +++ b/specs/Madosoft_Select Oblige/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f09220aa4459e0cde19472cd63183c3b1118cc1ba92b838213e8f564917eb5 +size 269942 diff --git a/specs/Madosoft_Select Oblige/spec5.png b/specs/Madosoft_Select Oblige/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4527df3c38626886c24cadea384f1ff50b178a4f --- /dev/null +++ b/specs/Madosoft_Select Oblige/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58225372b98ccb9b192bb200a2993bbf5421fe5042a9ecddb49042182e39932 +size 294411 diff --git a/specs/Madosoft_Wagamama High Spec OC/spec1.png b/specs/Madosoft_Wagamama High Spec OC/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1c8bb3ae25b45988be71e8783ee9978fa63247db --- /dev/null +++ b/specs/Madosoft_Wagamama High Spec OC/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22e80f5effcb21e86afc1fdf530031ba03938272a56e19334500d39d22a7a61 +size 321254 diff --git a/specs/Madosoft_Wagamama High Spec OC/spec2.png b/specs/Madosoft_Wagamama High Spec OC/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b2a53414adb0f0d02a29effb5e647f06e060bfd8 --- /dev/null +++ b/specs/Madosoft_Wagamama High Spec OC/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a4c7d2afbd85bf88b258b48c19322b1e116c7c387ccce25a95cecec8f4be1d +size 341237 diff --git a/specs/Madosoft_Wagamama High Spec OC/spec3.png b/specs/Madosoft_Wagamama High Spec OC/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..21d9b6b476bbc3ed0a709033faeb130678ebf0d4 --- /dev/null +++ b/specs/Madosoft_Wagamama High Spec OC/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e63e21269cd62f8f0f00d21d4fe436cc08301ab1ab5a292b19e4db44bd02193 +size 307819 diff --git a/specs/Madosoft_Wagamama High Spec OC/spec4.png b/specs/Madosoft_Wagamama High Spec OC/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4651b95e2c8134c876a3c5cced5b9770774e640a --- /dev/null +++ b/specs/Madosoft_Wagamama High Spec OC/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04347aa28cff658ab336e3dd150b2ad0187bacaefd5b8e05a29d5466cd28126a +size 304631 diff --git a/specs/Madosoft_Wagamama High Spec OC/spec5.png b/specs/Madosoft_Wagamama High Spec OC/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8c51125471c3c37f472a6a2ae9ae806bc04a69 --- /dev/null +++ b/specs/Madosoft_Wagamama High Spec OC/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0715602d3eab9bca8f753cb6e7767a8a845ce49a51699a0ff74230d0909fcb86 +size 309778 diff --git a/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec1.png b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..19786cb66e520341f9f1a2421e682b3fb28ad9da --- /dev/null +++ b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151281105c030a4760ba14ddfb0ff6b51ff3bf25ce2991e769cd183cfcfa4363 +size 293373 diff --git a/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec2.png b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c8d87de74f1f929cb4ad76e56d52ce20eeb571 --- /dev/null +++ b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ce9cc33fae5164b340c0b11a9d89ef5afcabc9da7904035c68c771774e0b2d +size 252699 diff --git a/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec3.png b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0505ea6092dc0ac31bcf52035c533d325acfadef --- /dev/null +++ b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1615e7a63f6bd80edc8dd6005f2cbc76e656ccbf0afbbbdee7fc9b4ea6412d +size 268934 diff --git a/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec4.png b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d843926e534dd334b5a1ddb5fc2b526afd9979ef --- /dev/null +++ b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5551148d28d4f538053b8137115b80caede47c0f90808b580a62064eb2de5b3c +size 289062 diff --git a/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec5.png b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d3e9cb58fb9e5116b8447a88e584a387103508d8 --- /dev/null +++ b/specs/Makura_Sakura no Toki -Sakura no Mori no Shita o Ayumu-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4dc37ea3e1214075654ce79d0b86a7f55d74403e1dba65f8e569d82213f3b6 +size 225855 diff --git a/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec1.png b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3257789175e7569b7283efa4380f8e4319a2cf88 --- /dev/null +++ b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fda2de0ffe51bc1f0442a25d644ba451aecea63fad6e4795bb9c01c1d7364c2c +size 335306 diff --git a/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec2.png b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3cf2e66ceecb6f5db9ce8588008a2008ba2e8566 --- /dev/null +++ b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47851e14e6d245a08ecf3362892c9599a189f2c21dc07a7e2980c0ddda2289ae +size 342986 diff --git a/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec3.png b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..598c3a1840bbeefdf51f748bf6f3258676b30f88 --- /dev/null +++ b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6763da8a58ef2ee97d0dc47ea7223643eda671eb9da099db76a6713d14b723 +size 349030 diff --git a/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec4.png b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e52e68c83aed0e0236e8089aab8ed8e55046f254 --- /dev/null +++ b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cc463575b95f45d949d7ddb42f171540d163d8adb22bc577a56f165e6bde3e +size 347223 diff --git a/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec5.png b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..98b0ebd86ef99986af1c18a57b8493a981defca8 --- /dev/null +++ b/specs/Makura_Sakura no Uta -Sakura no Mori no Ue o Mau-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b731fcaea31b51d7bd7812fb2c270625f1637db00701a5e7985944e623f8978 +size 340077 diff --git a/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec1.png b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3a555b669775d2de927ed9dbb75576bce05c7371 --- /dev/null +++ b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4707df9715ec2cc11e533db0e81a5cab84e40951db692e21fa5cbab0dc1fdd5a +size 329523 diff --git a/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec2.png b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..91cd4ed197e7f11cbda285a06546cd096b8fce89 --- /dev/null +++ b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f32ad54d744f194a75cddb3068fd47f96089352cb83b1d46d2eaf4bdce29c9 +size 323802 diff --git a/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec3.png b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6986918293409b24df56d90dfd905e4c244cf4ce --- /dev/null +++ b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea24239f176e639a21173dd0f6c6a37fa124fbdec51c44d6bca53ba0d4815ca +size 353174 diff --git a/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec4.png b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..75d5aea65cf9e9297eed895ea2350c297374912a --- /dev/null +++ b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a8a7ffd3248f8c1832b8ac6dbb3f1cf8f0ff93f56a5d7123025b8ab2e9416b +size 331914 diff --git a/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec5.png b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..746f9661fb8c95483a420e899c8c6014eeab0c4c --- /dev/null +++ b/specs/Mirage Soft_Kimi to Tsunagaru Koi Flag/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3479c7dbed9cd6486839361d02ebd698abaa9b87a8ceb2e1762470cd818971f +size 329373 diff --git a/specs/More_Ayame no Machi to Ohime-sama/spec1.png b/specs/More_Ayame no Machi to Ohime-sama/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..34653dc5273fffc76536b457da14cb523c748284 --- /dev/null +++ b/specs/More_Ayame no Machi to Ohime-sama/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8119f3f35fbacdb37f0f07941668a695036a90b82452dd6b3885d92f48887e3 +size 336858 diff --git a/specs/More_Ayame no Machi to Ohime-sama/spec2.png b/specs/More_Ayame no Machi to Ohime-sama/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cf4c26d2967703a0e367f400f6653beba684813 --- /dev/null +++ b/specs/More_Ayame no Machi to Ohime-sama/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:839e320cb28fe8efc3104083b47391e32c79804c6c3601b5866b4712a3b7da3c +size 326533 diff --git a/specs/More_Ayame no Machi to Ohime-sama/spec3.png b/specs/More_Ayame no Machi to Ohime-sama/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7ee4e212df548588e94940dc5750004e65d286fb --- /dev/null +++ b/specs/More_Ayame no Machi to Ohime-sama/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78582cbbf338c93645038d30bab903c4a0408c3c24e74613f3d43c55d738e43 +size 331143 diff --git a/specs/More_Ayame no Machi to Ohime-sama/spec4.png b/specs/More_Ayame no Machi to Ohime-sama/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc6579381eb4831b778836968dd371349f4c760 --- /dev/null +++ b/specs/More_Ayame no Machi to Ohime-sama/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:352dd930b9cbf602906a2f3e096e948c46b23ea0a641655064449c0219b8eff2 +size 333258 diff --git a/specs/More_Ayame no Machi to Ohime-sama/spec5.png b/specs/More_Ayame no Machi to Ohime-sama/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c79145cc0dec1d6776b813cb2440d5525986d7a6 --- /dev/null +++ b/specs/More_Ayame no Machi to Ohime-sama/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9d34afd0bc8fb886e5c6d8668947455f4f0d14cb0a36c28f08b4001346c932 +size 327628 diff --git a/specs/Nameless_Deep One/spec1.png b/specs/Nameless_Deep One/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..92e86065cda1cc8d775419ad213b0147b0c774c7 --- /dev/null +++ b/specs/Nameless_Deep One/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf780fe3d5069026ecfbab318ccf48094d8707f78d1928f06b8120a301d15a2 +size 324295 diff --git a/specs/Nameless_Deep One/spec2.png b/specs/Nameless_Deep One/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a2f858f8bb508f8b8e97617080427b2bc990190 --- /dev/null +++ b/specs/Nameless_Deep One/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e7139782d235b16aeda1082f3fbca9b231298f2d5510f305e9e790817dd8c3 +size 339392 diff --git a/specs/Nameless_Deep One/spec3.png b/specs/Nameless_Deep One/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9fc9c84563d6075b04ea58dfdcfa9120c09e20ee --- /dev/null +++ b/specs/Nameless_Deep One/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d5b6a06c714bfb62db0cdf453b56e6bb1307dc118c0b15ee9f09642cb14ef2 +size 327208 diff --git a/specs/Nameless_Deep One/spec4.png b/specs/Nameless_Deep One/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1076981e292f3243aaed5e5aa9d91edf8b6f7345 --- /dev/null +++ b/specs/Nameless_Deep One/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1141338f4acb1af36c2281d60dc47a7d8674973321f00d7741a0f7f1945e307 +size 337770 diff --git a/specs/Nameless_Deep One/spec5.png b/specs/Nameless_Deep One/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a540d98a2bc0b2827dbf131793c4c515b4d685 --- /dev/null +++ b/specs/Nameless_Deep One/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9bdedd8afa957618bea552684a53aa62c23bdc73f7720ad878a6400e1b84c5c +size 331853 diff --git a/specs/NanaWind_Haruoto Alice Gram/spec1.png b/specs/NanaWind_Haruoto Alice Gram/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..379df08a865b7fd84852835f4f506ef021a64677 --- /dev/null +++ b/specs/NanaWind_Haruoto Alice Gram/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79842752483b54b5498a0315e6cf45493751b6429f32ede93b2b6452cf223a1 +size 325109 diff --git a/specs/NanaWind_Haruoto Alice Gram/spec2.png b/specs/NanaWind_Haruoto Alice Gram/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ad6f9cd1da30aea3d95144203d7b0d3a9ca1785b --- /dev/null +++ b/specs/NanaWind_Haruoto Alice Gram/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a3eb2ea2df206cb3501dcc22928ceeece4788dcc7b324ab27be649e9aa8d42 +size 318417 diff --git a/specs/NanaWind_Haruoto Alice Gram/spec3.png b/specs/NanaWind_Haruoto Alice Gram/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6b5d83c264514db9a33b36fbbac7d96ef8bbdb11 --- /dev/null +++ b/specs/NanaWind_Haruoto Alice Gram/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbff019e54a6eab8e626f59b4baa8f516924a77b64e58dfbed5dc8f27b96661 +size 306284 diff --git a/specs/NanaWind_Haruoto Alice Gram/spec4.png b/specs/NanaWind_Haruoto Alice Gram/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..55908724cc13a763c6af4c5a3dd37c3249c57fd7 --- /dev/null +++ b/specs/NanaWind_Haruoto Alice Gram/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a60c0b701f487ea763f5267da2620fb57b44c5f8a2eac6b86305e5b139a07ff +size 302065 diff --git a/specs/NanaWind_Haruoto Alice Gram/spec5.png b/specs/NanaWind_Haruoto Alice Gram/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fe9bf84c3846c82d181dfebbb8213c160d5cc969 --- /dev/null +++ b/specs/NanaWind_Haruoto Alice Gram/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9884e0902b96e5a0ef9436013ef70ec3cbaea880da1e0ea190f4314125c4a36 +size 288500 diff --git a/specs/NanaWind_Shirokoi Sakura Gram/spec1.png b/specs/NanaWind_Shirokoi Sakura Gram/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..46afd74bcc8e2a183b84b290d648ef3861f6ed47 --- /dev/null +++ b/specs/NanaWind_Shirokoi Sakura Gram/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bd9510ec6999cc082c429c27d0df0147bb2d324471c59a6615ad1531c6e2d2 +size 276025 diff --git a/specs/NanaWind_Shirokoi Sakura Gram/spec2.png b/specs/NanaWind_Shirokoi Sakura Gram/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..18f7bb9c48c0294f274526461c415594340b7299 --- /dev/null +++ b/specs/NanaWind_Shirokoi Sakura Gram/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa5cbf0c64abfde1fca89ec74736582e4ffbc712b34f9b598dd6f6c93a6944aa +size 285218 diff --git a/specs/NanaWind_Shirokoi Sakura Gram/spec3.png b/specs/NanaWind_Shirokoi Sakura Gram/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6020f6a7ef650d39145b22c06bf5552e7fe2cfbc --- /dev/null +++ b/specs/NanaWind_Shirokoi Sakura Gram/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57888a30e2f6c8429e14fe5dba8fdead1cfc1d5a6ac46806de531e97f4ea55cc +size 294861 diff --git a/specs/NanaWind_Shirokoi Sakura Gram/spec4.png b/specs/NanaWind_Shirokoi Sakura Gram/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f5ada82d5e568113b9832f4fd018d59544c95bac --- /dev/null +++ b/specs/NanaWind_Shirokoi Sakura Gram/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b20b1b2ac5fcbed9cf5cedfdcbba770f6917798145e66d01f946c086b5ea3aa +size 303650 diff --git a/specs/NanaWind_Shirokoi Sakura Gram/spec5.png b/specs/NanaWind_Shirokoi Sakura Gram/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..33fb7dd2fb54759ab0c56db945567b30c388ba41 --- /dev/null +++ b/specs/NanaWind_Shirokoi Sakura Gram/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca3c236157330c26069648f2f0b3419274b183d2461a480279e4bdf7eba043d +size 233409 diff --git a/specs/Navel_Harukanaru Nirai Kanai/spec1.png b/specs/Navel_Harukanaru Nirai Kanai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..121298cb773c24375597bfe0570007e51c2086e8 --- /dev/null +++ b/specs/Navel_Harukanaru Nirai Kanai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcfce5e0eff947df61c2f09f3d4a7d3f03683847d5677b1c968fe4009dcede1e +size 294301 diff --git a/specs/Navel_Harukanaru Nirai Kanai/spec2.png b/specs/Navel_Harukanaru Nirai Kanai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f951fc51e10818a6d256daa22aeddb3efce85a6 --- /dev/null +++ b/specs/Navel_Harukanaru Nirai Kanai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fddadc481ce2a57ce273646fdf556c8714444029d895d998f511e0330dbbfadf +size 287766 diff --git a/specs/Navel_Harukanaru Nirai Kanai/spec3.png b/specs/Navel_Harukanaru Nirai Kanai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..768243393e6b6518544073cd841eb916b7c36533 --- /dev/null +++ b/specs/Navel_Harukanaru Nirai Kanai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf03c8b0519589758520c8f8b0d1b24ebdb1f7041edba5b6db4cb0e7ed2ae77e +size 310308 diff --git a/specs/Navel_Harukanaru Nirai Kanai/spec4.png b/specs/Navel_Harukanaru Nirai Kanai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1bcf5d78aa11facd0654629c89a599bd41e6d2c4 --- /dev/null +++ b/specs/Navel_Harukanaru Nirai Kanai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f77ba486cd8dc5adb55d51f9c6aa3e2d4b2751f661f5092b294125410c73c8b +size 278264 diff --git a/specs/Navel_Harukanaru Nirai Kanai/spec5.png b/specs/Navel_Harukanaru Nirai Kanai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..799c06db93740ee3a2c3cf985276da3d4fc7fbdd --- /dev/null +++ b/specs/Navel_Harukanaru Nirai Kanai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bb3c906ed4b961659d33cc3b8ecd50b380ffd9af087d3c45950713692fa5201 +size 277337 diff --git a/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec1.png b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ab4ae3f341755e756e442df44a8f1f0b06ba3574 --- /dev/null +++ b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4ef984d5676cd3182875dc5d4cf56e740eef969c525d5d472ff040667ab23a +size 300411 diff --git a/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec2.png b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..892fbceaaf51ffc81365c0f146080a64e6ae9c18 --- /dev/null +++ b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4b3acf4a2072409d3758b8083bdb2502ade39307544d4a0db2e6aa8b7066bb +size 302709 diff --git a/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec3.png b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..99c80234021f6220c4813f92306adc8eb8793669 --- /dev/null +++ b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a492a1fcbb97fb7d796152c028e519b7e510580ef7e55a52fac3110c1a31b55f +size 276978 diff --git a/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec4.png b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf66108612fdb51a2e9673c0bf42fa050206c84 --- /dev/null +++ b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc93a0f4fdcda39be06f8f2403e6705d7dbe9a379d521ba75d7822d5f5d23acc +size 304556 diff --git a/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec5.png b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..994c39a19cb50cd8ed321f88eb9168d63afcb1ca --- /dev/null +++ b/specs/Navel_Kimi to Mezameru Ikutsuka no Houhou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0353926b52e97ca409f4ccda9e211d106ae7341401d28c96efb888c99c901c9f +size 321410 diff --git a/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec1.png b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ac811272ff073af32ce1b6feb964ab1ea0375cc8 --- /dev/null +++ b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639762d184433969daea2b782e530dc47259f9e59f5d6b14ca1ede15610b31ce +size 270627 diff --git a/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec2.png b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e8b12e2ba80a925e742ceecdf9a287e4bcdd3ad8 --- /dev/null +++ b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7d5ba4dc747c4bc7cedbb8729f1728b930d1fe794eb82c1652747e49f82582 +size 242417 diff --git a/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec3.png b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d393c68a5ba88a3c2df9dcd2c576abdf21ffc8bb --- /dev/null +++ b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997b63705128e07208094fcdedc78f586295de2e70a5478ff61f49985adfc919 +size 298431 diff --git a/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec4.png b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d0a2293cf1c21ac8ae6cc7ed13be69b4003f96e8 --- /dev/null +++ b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169344b2ac3994979c7e6d1074d5149f03da080a92f8e0dd559ab149552bfee0 +size 285381 diff --git a/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec5.png b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..32f877561698505baa249ab67b5f2b235017f0f5 --- /dev/null +++ b/specs/Navel_Otome Riron to Sono Shuuhen -Ecole de Paris-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e2c3d641918a7cc7f32319d252a2167f81c7f6293e467592e41f1eff0bfc2fe +size 287094 diff --git a/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec1.png b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..013452948465d55c9be2bc799f5cc55ddf01360e --- /dev/null +++ b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ecf1e4dc5df3aac25c4b2ef5905d1ab900775dba496c6973518e02c0bdd5dfb +size 266957 diff --git a/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec2.png b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fe4fd5cb440804d9b9198e5cecf88a422bba3f00 --- /dev/null +++ b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89146f4c0f16e7c6b906c87838208ce51f43f74a728a04523ab6c35fd3a09110 +size 256914 diff --git a/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec3.png b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e943cf767b484d4d2d3964ec614104efc8a62702 --- /dev/null +++ b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c025133e9169ef9d397b2dbbeb7f5742247a007be7b84ca11f34f46602c1352 +size 284844 diff --git a/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec4.png b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..71a711c5c0c4c7657764196df64dea2073426f3b --- /dev/null +++ b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17c0fe5e292f40ce32e7c8e74bacbd9fc743fc08b6689ca014f5dbe8d82772f +size 262288 diff --git a/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec5.png b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..55be80448368f0dc8d0bb5c610936a3ce47f333f --- /dev/null +++ b/specs/Navel_Otome Riron to Sono go no Shuuhen -Belle Epoque-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42bfad7d05704d8f985246ed9f3a0a533326f2ca442b7e7a2693211951a72f17 +size 280269 diff --git a/specs/Navel_Princess x Princess/spec1.png b/specs/Navel_Princess x Princess/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ba56648734883697472fbed682b400bc83445ec6 --- /dev/null +++ b/specs/Navel_Princess x Princess/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf3fc6d0c05a2ccf18ae1f3e4b108a7a58ca8cfb7edad088cd212d12085c1a6 +size 261749 diff --git a/specs/Navel_Princess x Princess/spec2.png b/specs/Navel_Princess x Princess/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a583bf9c1c3ca282d9558d9ee4589169c2a24361 --- /dev/null +++ b/specs/Navel_Princess x Princess/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9e20ac3da7de40aa1fc070550e0d311fc7042cb086945d762bbdebcb1949ece +size 251548 diff --git a/specs/Navel_Princess x Princess/spec3.png b/specs/Navel_Princess x Princess/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f81ff4538b842597174c17a92b60b14669629f8e --- /dev/null +++ b/specs/Navel_Princess x Princess/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1d22fac91d3266e54c94e7e2da6ee52b50a6a74b15684ce7d30df3e5ef57c1 +size 221715 diff --git a/specs/Navel_Princess x Princess/spec4.png b/specs/Navel_Princess x Princess/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..de812ca5d18b223c82428622b06f8dd33bfc58f1 --- /dev/null +++ b/specs/Navel_Princess x Princess/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c32c96c7ae86b0879a070b46fe17682f23a512c01f8c1db06904d32426090f2 +size 249512 diff --git a/specs/Navel_Princess x Princess/spec5.png b/specs/Navel_Princess x Princess/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fc544536954efac6219db7bb911098c7946972ff --- /dev/null +++ b/specs/Navel_Princess x Princess/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a533c4974e2f1f24848957dcae74f4b71fa85cffa836ad55cc5df937e0bc0e2e +size 247685 diff --git a/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec1.png b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c50d4381df26d39a1703861baf8bde7f3cae832c --- /dev/null +++ b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ff576481bd72201dc01d3dbf78df9a731bbae75f387fbc3e7f342b7b934e74 +size 300614 diff --git a/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec2.png b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d4cdf16bcf738f11bd60aad684c5fde0d93ef4 --- /dev/null +++ b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef95919c20d32ede3e30c9bcee025d57ce3d3322220eb871981a398b7d1c58c3 +size 304592 diff --git a/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec3.png b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..df86e265bc5a559330d5664b1b4438e04279a5ba --- /dev/null +++ b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c6a4964cabea85002d575b9aca6ff77122cef5d086da751197c6043650d39a +size 296517 diff --git a/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec4.png b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5f5086ae710aa2e331cf639caf960c61ff272688 --- /dev/null +++ b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21416edc3ca14b53d63997133b8f78635c8a784bbed955109d174e25de1eb8f4 +size 296433 diff --git a/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec5.png b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcb38efa36acb69ab97db040703665b6c0dfad7 --- /dev/null +++ b/specs/Navel_SHUFFLE! Episode 2 ~Kami ni mo Akuma ni mo Nerawareteiru Otoko~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aafb37d2ae386b5e3b763ee5836dce5cbbd2841065feecd8951d360348bcb407 +size 292184 diff --git a/specs/Navel_SPIRAL!!/spec1.png b/specs/Navel_SPIRAL!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e3e6774a23205851e5da45b4126b48e769d5e346 --- /dev/null +++ b/specs/Navel_SPIRAL!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8166c17b2dafeda7841f0661b0f298626308774032beee58f8fe1429445afc +size 322055 diff --git a/specs/Navel_SPIRAL!!/spec2.png b/specs/Navel_SPIRAL!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8c01647d737eef904a2679969283adf41a000a0d --- /dev/null +++ b/specs/Navel_SPIRAL!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c918420c3ba8d2ec8a6af50e2704adaacb7a54aabfaf2747a16a2d3c83afc1a7 +size 318101 diff --git a/specs/Navel_SPIRAL!!/spec3.png b/specs/Navel_SPIRAL!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3b6e0c09ced95b3dd6b0181d01343d007f5fcbf3 --- /dev/null +++ b/specs/Navel_SPIRAL!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa877fb3d1d4a2294dbc2f59e1f7855a399449b2987b618cd84fcc0eddba3ce +size 320384 diff --git a/specs/Navel_SPIRAL!!/spec4.png b/specs/Navel_SPIRAL!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f04ac0db0623754636edea81eb9f7064af4cb876 --- /dev/null +++ b/specs/Navel_SPIRAL!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bcff46dbbe788ff77cda14e7fbcb3e48dcf0e44226b8c69df12814af856531d +size 315984 diff --git a/specs/Navel_SPIRAL!!/spec5.png b/specs/Navel_SPIRAL!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2999b4f5766913191e3098892652f4c6112fa53c --- /dev/null +++ b/specs/Navel_SPIRAL!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3869e235580eb9484fa22c7440ff0d8769dfff7c45526bad30440ab1efc18671 +size 320225 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec1.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2594813785817ab12a5483c01f059bae2cb3aed4 --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f8470e8fd8ebce32af919e5d659a662454041b544d09116d3bc54f8946c0e7 +size 270953 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec2.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4c304da78e0dafcb0d17001747fa68881f1c05d6 --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ed334ce2929f76c801ddc1329d3973c0eeab7d6e8791d65ecc84b2561eda30 +size 267314 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec3.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..affb33b3c681f28a46aa83e05e9858c0ccd3f11b --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2118b4f4e2012d58f5d38c3614c4708158175837de05a40832f77e6a73c1263 +size 276845 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec4.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5ac921d420ec549f0ca7e1de614457f18883ee8a --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec812fa205b52dae9a6ee4f09792040c501cbb4ee90e9d25e78e97f8e1bbf03 +size 276325 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec5.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..227702c9ccacfe7eba102451a8adb4271663c7f9 --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou -Full Voice Edition-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6650b7f5db5512cd2c53ba52354158c1b0493e03aeaa978f1fca0ef25171904 +size 281473 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec1.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a7a7a6339fe2991cd628b0fd4f17d1fff142917a --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f04eec3751b1dd39d33b1e46d52ec60f3bd84d0fd19110dabc37469b1ef66d8 +size 279485 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec2.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..245927adea32598b4a4018a2c9e945240fae7df6 --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:015e11af992e60c83ad038efba2c5dfa7d257a98e28e99fda6900337055f700a +size 280844 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec3.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5ad5ba1b99616bef9b30aecfa106a7222fef06f2 --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf4582afb0565d30b0e5cb73aeedaddc4bd0c5682b1980d9a01148c1c30ba2f +size 319737 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec4.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0dc5740784d942024d76abad71b500fd7a8341da --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99438f327528e74da2436d2d004d32baaac1608249c436b28b332ab1853ee59 +size 226294 diff --git a/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec5.png b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..57e2c49febf9eac2b957f075539bebc58ce029dd --- /dev/null +++ b/specs/Navel_Tsuki ni Yorisou Otome no Sahou 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ddb58ba7c52523bf5d05c194346388b33a5b014470c2ad9d95e7e658a38506b +size 285640 diff --git a/specs/NostalgicChord_Houkago no Futekikakusha/spec1.png b/specs/NostalgicChord_Houkago no Futekikakusha/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..db59d70cb8d293d1c79bc1db03dc40057da2da82 --- /dev/null +++ b/specs/NostalgicChord_Houkago no Futekikakusha/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3694c84deb06620df9fce9bdae58130fb43bd9a7d0dcca3ece091d358565a277 +size 248681 diff --git a/specs/NostalgicChord_Houkago no Futekikakusha/spec2.png b/specs/NostalgicChord_Houkago no Futekikakusha/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5a0f87add4e49425bf64ad524c88602bafa9da4e --- /dev/null +++ b/specs/NostalgicChord_Houkago no Futekikakusha/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65954dae6a0ce02601896d402ed97a8100ef0d279e8d532220d863dd753781a +size 300533 diff --git a/specs/NostalgicChord_Houkago no Futekikakusha/spec3.png b/specs/NostalgicChord_Houkago no Futekikakusha/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ca84d1cf3273457768c4400181b34137297ffe4d --- /dev/null +++ b/specs/NostalgicChord_Houkago no Futekikakusha/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260020a97df37f2e73080415dd66c6bfaff8b81936f63343ab249db768b44c16 +size 249370 diff --git a/specs/NostalgicChord_Houkago no Futekikakusha/spec4.png b/specs/NostalgicChord_Houkago no Futekikakusha/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..20b1dc17aa7af730fdf3a524e2088b32333cc410 --- /dev/null +++ b/specs/NostalgicChord_Houkago no Futekikakusha/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91d96d74625574461bb5d81ad145ef31007fc01981f5dc45eaa0893fe3afe6bf +size 294316 diff --git a/specs/NostalgicChord_Houkago no Futekikakusha/spec5.png b/specs/NostalgicChord_Houkago no Futekikakusha/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2e07c3772f385baea4d7f4cf95195a20cecc8943 --- /dev/null +++ b/specs/NostalgicChord_Houkago no Futekikakusha/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27f4d74c2f597a0c3d4c4358c7b69b1f09e9bd41e74cba5c2506b475eeaba92a +size 304556 diff --git a/specs/Orthros_Otome Sekai no Arukikata/spec1.png b/specs/Orthros_Otome Sekai no Arukikata/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..52996d15dfb70109414d2335c2ec2933cab05ae7 --- /dev/null +++ b/specs/Orthros_Otome Sekai no Arukikata/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97c30857998ea876535d0f644784087560872b6db464116ea109490eaa152cf +size 324725 diff --git a/specs/Orthros_Otome Sekai no Arukikata/spec2.png b/specs/Orthros_Otome Sekai no Arukikata/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..276e35a1e89454e86d765024afa78ad4926ed2d4 --- /dev/null +++ b/specs/Orthros_Otome Sekai no Arukikata/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dd41d5437646e4a22c4ab89a4481109f32683cd625304c3de250274bb734aa +size 331770 diff --git a/specs/Orthros_Otome Sekai no Arukikata/spec3.png b/specs/Orthros_Otome Sekai no Arukikata/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1cf5aba20b0ef202d9bc3ac28fe2429df9bec5e2 --- /dev/null +++ b/specs/Orthros_Otome Sekai no Arukikata/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7006f63a553b0418b88868f26eac03f892a1f2a351ef5a7174d948de1dee82e +size 331247 diff --git a/specs/Orthros_Otome Sekai no Arukikata/spec4.png b/specs/Orthros_Otome Sekai no Arukikata/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c8016a5a532b7efbe17c8c82336b245a1f4983d0 --- /dev/null +++ b/specs/Orthros_Otome Sekai no Arukikata/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a40d1e0afd9aa8af1b26f4223e7280400fe1c68b43cdc3d6d7c67bd1cb4298 +size 299568 diff --git a/specs/Orthros_Otome Sekai no Arukikata/spec5.png b/specs/Orthros_Otome Sekai no Arukikata/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..80953996cc4df41b6d6b3a06e405794873bb2f14 --- /dev/null +++ b/specs/Orthros_Otome Sekai no Arukikata/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03796f15dedf8580b43e21448beedf4da43caf19270f30231f538a47af87fba +size 330707 diff --git a/specs/Orthros_Zwei Trigger/spec1.png b/specs/Orthros_Zwei Trigger/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..129f8b43419431e727e325388ef44942b4e327b2 --- /dev/null +++ b/specs/Orthros_Zwei Trigger/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d23f88ea3a417876f4f57972086fd35578b996a1c2b0f62ef4859ec587066ef +size 308595 diff --git a/specs/Orthros_Zwei Trigger/spec2.png b/specs/Orthros_Zwei Trigger/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0991cb142696376820c122868c184256d9b1c324 --- /dev/null +++ b/specs/Orthros_Zwei Trigger/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d9a5dadcb8ff9683dbd54630d4bce0a4b384c6ac1f6ac6a6381b273468c5de +size 323521 diff --git a/specs/Orthros_Zwei Trigger/spec3.png b/specs/Orthros_Zwei Trigger/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a347890f0512d58c30bb7b5380c0f697e0032e2c --- /dev/null +++ b/specs/Orthros_Zwei Trigger/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbbca49edac584bd6d211cef5a55ccb9a7f311fd0ad3fb9b15559d69e312fbd8 +size 323270 diff --git a/specs/Orthros_Zwei Trigger/spec4.png b/specs/Orthros_Zwei Trigger/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..14d67072a9ca5d1cd5866cc837044df1a39dd36d --- /dev/null +++ b/specs/Orthros_Zwei Trigger/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785266659cb2581f0f460fb12e10bf1efccbc0950b4be5d02cac3029804a37e0 +size 311866 diff --git a/specs/Orthros_Zwei Trigger/spec5.png b/specs/Orthros_Zwei Trigger/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f37e9dd517335c9a4c2f5c8aad2f95cc18ae71e6 --- /dev/null +++ b/specs/Orthros_Zwei Trigger/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882ba2243faf8974804d7384b03700b1f189e5a60e74151536c09b2f992541f6 +size 288326 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec1.png b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..160ded4eaf012c3fd96866a222c36266687feb5a --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d40edbba37869e9a7deef837ce89fa6f98ef83b47c4a8ce1009678279c088bf +size 297564 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec2.png b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d1391347074efdcbe899193548549bc7bdf30f99 --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2d8afee01093780895274e1848b0dde4d4ce0b5189a72d0ca82400f4de7733 +size 241530 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec3.png b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c295363622f6ef7f50716cf6ab4e20091b0539d --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b103f7dd1b4c086f2b335ad7b072acdf3e2334b3396efb0f6fb8dbbea2b9f22e +size 317585 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec4.png b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..31c8813ec9f4cd2c6e32f742874c467a9370636f --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edae26c3e0d59e3843ceabcf8eabfc892e80b5e67523e6092557c2e7fbe6318 +size 238482 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec5.png b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1add01e24e04e9d1ed5446afa706549b61d811fb --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to Koibito to/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b31badd5cd9cff306bb73114cdc845a060d159f0e2cc5ad91f70966fc15ba6 +size 227351 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec1.png b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0f3af43996177acdc08f4dafe073f9b2d98d55a9 --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3984283ecde6cb84c4616c2fe1386ca2aebab1eced72938ca327b4f72a622ebb +size 182176 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec2.png b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..075eb30ef6defd8daf9d0d9fb3f61a3fcdffc1d8 --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef0579b2a56914f009651dbbe406e68147ab73b9816e292bc10820167435a85 +size 318192 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec3.png b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c9432c5398de66de4dda5e62b7fd0a344a84bf6 --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829c79e8ba81bc72d2d4a62f030daef29fb7ba58a8dd5f6775ba47459155083c +size 304003 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec4.png b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0e402aa99c55c6c300c7cd4bce62436c99a86b88 --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa901cf5f3c9790bf2d0b7e0529b07cdf65a25db97795f46d2a769299fa818b3 +size 293124 diff --git a/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec5.png b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..468002bf6908465c2dd510fe27764a92353b7e8a --- /dev/null +++ b/specs/PULLTOP LATTE_Kanojo to Ore to, Koisuru Resort ~Kanojo to Ore to Koibito to. & Koisuru Natsu no Last Resort W Fan Disc~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b6262b8a65fd15988755556211df3f0edff5564d3c649cd27e1689cb056d6e +size 305254 diff --git a/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec1.png b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..caaa60769cf00607d26cad15b5523a4fa0fd6b53 --- /dev/null +++ b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1845987dfe0073f13846d2798bc93c5aef4263f0c0e3b5fe09da4736ac3b009 +size 283552 diff --git a/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec2.png b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a06d528beaccea66db529637048bf4ec70123622 --- /dev/null +++ b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cbd8e61a104463f4f545d156589eed327c3d3853f2df16d2a51a8351ba168ac +size 252569 diff --git a/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec3.png b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..be580d701e1eaca2ee6dadb618d127eef49e43f3 --- /dev/null +++ b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8a68f847a9a6d2d8fa1cd66ff660442adcea86f178cc91cf4ac659c62e22bb +size 273442 diff --git a/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec4.png b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ec8fd91a93ab65a20b7811f9cdf95b1b0b6ff679 --- /dev/null +++ b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f223bb1c0fd2da9ecf5fe259825515383eceb5de16bd75c9aaddf92af7df5c2a +size 298635 diff --git a/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec5.png b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bda3897377fc8267ddbc10b8e5c9de5e49bcc7ac --- /dev/null +++ b/specs/PULLTOP LATTE_Koisuru Natsu no Last Resort/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b641e4c982644b468e45be3b64e1d61b70bd39b3bcaf769aa05d25616832cd5 +size 253273 diff --git a/specs/PULLTOP LATTE_Mirai Kanojo/spec1.png b/specs/PULLTOP LATTE_Mirai Kanojo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..dd268c9d7b46d3134adaf71fd37f9679e6d68757 --- /dev/null +++ b/specs/PULLTOP LATTE_Mirai Kanojo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0183c383c7c8ebe2b9912fb5b49ba7b2584fb350b6454fdc1a210910846009f +size 268983 diff --git a/specs/PULLTOP LATTE_Mirai Kanojo/spec2.png b/specs/PULLTOP LATTE_Mirai Kanojo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ebaf92b83d17b64ad3532994e874e1ae52b5211e --- /dev/null +++ b/specs/PULLTOP LATTE_Mirai Kanojo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffd8d15f4618ef55d2f41497bf963cc347bee3d22012dc67710d742de6726c0 +size 311864 diff --git a/specs/PULLTOP LATTE_Mirai Kanojo/spec3.png b/specs/PULLTOP LATTE_Mirai Kanojo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..004682bd5c55b1b105ace6bea0f99e6c1e91748e --- /dev/null +++ b/specs/PULLTOP LATTE_Mirai Kanojo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943066bf3c33cdbdd6c6827e7a006397be86b19a1b42d0281415a8a10e3b1c7e +size 274669 diff --git a/specs/PULLTOP LATTE_Mirai Kanojo/spec4.png b/specs/PULLTOP LATTE_Mirai Kanojo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c6475728fa84690d2cbf68d4addf6c390f483868 --- /dev/null +++ b/specs/PULLTOP LATTE_Mirai Kanojo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c217a358b178ac879e5d082dea43dbacdd167fb8391a09abd459c9ee107517 +size 227590 diff --git a/specs/PULLTOP LATTE_Mirai Kanojo/spec5.png b/specs/PULLTOP LATTE_Mirai Kanojo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cee396fce4fb32fc131d9d4b89a2ae9b0de5bae0 --- /dev/null +++ b/specs/PULLTOP LATTE_Mirai Kanojo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c0fd229d1bf73efc645e3728b7eb31fe8420f44c31e18478048c075aa4185b +size 251595 diff --git a/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec1.png b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7f1c9fe9e9ae471387b7d0204276e70923f5bd36 --- /dev/null +++ b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5916512dfbc4601c6201c8b778262a856de0ac6053a7f3f108139ac190a2ff4 +size 313027 diff --git a/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec2.png b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..de04e9057f88299a1f41f7d77581d460c2c639f6 --- /dev/null +++ b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57086a42de66bea038c9d24e751fedffff2636a38054137cd5a7301b45339d9 +size 314287 diff --git a/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec3.png b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7186a963d5bc2d2c86e104bf6a64d6b18d2e88ef --- /dev/null +++ b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93026491255c978a47fb6d36d1548333bcf7e962ec5a2e48471b6eecba1560cd +size 303604 diff --git a/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec4.png b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7f1558e19cd6307c85359e3ac20de076425cfe39 --- /dev/null +++ b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb76330ecd65473339836a83e0377cc0d5f0db5017ec40b8810b7c73aff3f6d +size 320020 diff --git a/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec5.png b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..559cfd2d4834c1d31266b46eca647d39898bb68d --- /dev/null +++ b/specs/PULLTOP LATTE_Office de Sasou Ecchi na Kanojo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c99381c7e6f26521d726d1fc6e2fb3a4d5a731f5d2e51561a61f04cf766301ef +size 318769 diff --git a/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec1.png b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..cdeb2426f9d7199bd688369d7c8d40a3a581af7e --- /dev/null +++ b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2870baa8427a58077f17a0dbe17941aad6fb69ab349bd454aa11b111b65996d +size 249703 diff --git a/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec2.png b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d06c2cd86e39bb6b6d20a9f9ce98a97a1c930430 --- /dev/null +++ b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1789d4785a2e67f611c92594714ec38f8351826c0d273bd03a16a52cf8654726 +size 303456 diff --git a/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec3.png b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6ff1a5aabae8d8542ff33d6f06c8c6944426f0 --- /dev/null +++ b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689613b8d886ef492808cebb06ec328c7684090c212dea5e12c4c485631014a4 +size 237588 diff --git a/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec4.png b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2f0a78d8bcff5bb65146522c2cff634818c62377 --- /dev/null +++ b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d03e660d6b084275741cb653c2623d6b97c0a196345856172d6a714ce56ec77 +size 308343 diff --git a/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec5.png b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5ea7f8409295d3965d3847da3de65a86f0442128 --- /dev/null +++ b/specs/PULLTOP LATTE_Yakimochi Kanojo no Ichizu na Koi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb7a7540cbd43291fe4d269f2d12ba55b37dcf86de490f06cdcc6a53b8c8a7 +size 288702 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec1.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b76a417c44f6bd2ef43cc808e27f7a1ff379e042 --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48caa0f592b4bd8b039edb1d06867e51ccf3c91bd4b69973a937323794511ecf +size 291685 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec2.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a863b687b0400265a8cdb04f495f3d7795da51a8 --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f9c14ccb32b77a753f102883a71d8f115663e3b9986e49255fbffb32a568857 +size 304270 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec3.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d344c80da93af36940e2b1271f0b2e8c1f88eb --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40449829b27484caed32be2181fbe5b120d4e12aee4bdf8f56d5e690a2068e19 +size 310001 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec4.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..580a7bd4fdd8a0e26276bb6a524f84f482d7602e --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e890f8000a782751cbcc35d17c53fb7ac3e9de7ea3ad002f0e459eafc10a44d +size 265356 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec5.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c79976b2c885f8ab6a3e4f71840c75ad76936b4e --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete Flight Diary/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6817c4ac231c653182fb550f7a1d4571284da67af3bb5f9b9dbb4cfe4d7c35f4 +size 315878 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec1.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbe741bbcac9145f06fe3c71f7cf27d1836ace4 --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dead2f7769470c4f65aec8f3ea83bb475514bff875780200aa1a288781553fa +size 299340 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec2.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..65786b66e3474af0f1f41a626eaf491fd8722b47 --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa16467e5ba2987e3a38db550531f617824cb34368bc9de789bf723e92f30ac +size 284981 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec3.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3375d164c840868b9acbbfe4c794a551c478d59e --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8fd16caaad6cefc0395042ca6469dc4e69bc7bc2f6d9164cc00b6e8d7b2116 +size 289102 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec4.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ea6fea5e557189e2a6ad1b73521c53593edfbbc4 --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fec9c6c639822bb1ee41377705ab3791dfa9fdc0cde87adc50639c6393ff81c +size 263258 diff --git a/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec5.png b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..93b1f829386db86d5402a3a4ca022e20478a98a0 --- /dev/null +++ b/specs/PULLTOP_Kono Oozora ni, Tsubasa o Hirogete/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac465afcfd47f4508076897aad6eb22b5b21c508a754158406af570d161a7890 +size 235988 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec1.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4e1db8f83745b85b65537e54d09f7b6a311ebfec --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da1d85950fb80fba02cff2ef20c1af6dce725faca98cb62bf56d3afc990b33ce +size 261652 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec2.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8e394783c26678f0ee2de4efed3fa05447d2c03a --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2158ffeae2a9593a7fef787ed353e00af381c4a63c738e4185b71a55dfd064 +size 262110 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec3.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a7e19d81f5f238daa954c01d5ccd3f9d1e354d --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b369ef5ef5163429a5a4b60ba5871e6a62bf71513dd50edbff37623658aee4 +size 279673 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec4.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..529842d2599a7299ad12d909a2fb104ec1655131 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4560b6b0f3825036b4d03de6685cc2483951f2337748a2fa432c3c4a398368e3 +size 280824 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec5.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4cddba0569e246e6ae3ce63924bbe1c208e8125b --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Fine Days/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef4477b258167d728ac649800b1a08e8a7d7a231552d7149eb3922dd7c77071 +size 247632 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec1.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..793d66c02a2810aff1b9217501dfb7fbd870b28f --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4190cd04228604c972e7a35415293c83bac5ab331db4b75869ff721eb4983158 +size 269890 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec2.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c65c4228e450604b954eab7fd67c1fe5a07a3372 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd05b913c94517ad1f93fade5a8c2d6fd8933a2108465b1c43079ab0c8b2a8e +size 287694 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec3.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..aa20dec592b56ea217bb32daa7d689053e4b2981 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d9d8f7fa877b3228cc3df920012ed5834947a242137a1764be9e30bb3f4777 +size 281044 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec4.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4ad96254abe1be8e0b10dd4adaf6362a14f3fe15 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:816f8a66d1e86b8761bf4c95b28f610d4563f8162a409dd20d7466be1824eb4c +size 254187 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec5.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..70481d0e3bcdc1b159185be53553b5fc7769e108 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o Interstellar Focus/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1fb72667ed0d8b8798d4e2f560568dfd5a82ba41c51c3064b758ca3e5f8536 +size 287836 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec1.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b7908f3a70f23d5e938d7d540b29bc552c7f73d7 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9243f153f7581b1d0b5d03eb27a75de7a047cf340e12edc3a46e91c8d1ecc14 +size 274590 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec2.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cdb3f723bdf07b194599d33a3cb067c0178e18ec --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b28da00ef075f8b01bdca1f0f4c9e58d21f4b3907f401fe800d59bbdcc1c243 +size 284788 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec3.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5cf4aa74c8b5220b6807b6f3965fa08e40cf9368 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b595771f512911720827a84938d96994794261c5bab29dc3e60c637d6473cbd9 +size 129853 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec4.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..112703389eeffebc8ef599bbe18ece155d0c9e5e --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909f83c9bf8d75e81f7b82e1b99a8becc33036374a818ca225d31fa52fad0d99 +size 263388 diff --git a/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec5.png b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b741e130f5c2e5e2389aa80268ea36acf402f6 --- /dev/null +++ b/specs/PULLTOP_Miagete Goran, Yozora no Hoshi o/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7688d04ffcc24d6ec56ed09081dc44cc0aee75b212ef8f2ce25b07e52dda3dbc +size 298113 diff --git a/specs/PULLTOP_Pure Song Garden!/spec1.png b/specs/PULLTOP_Pure Song Garden!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0eef7e7559e758a82561f9e237e2d86956ecdee5 --- /dev/null +++ b/specs/PULLTOP_Pure Song Garden!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0031c489e2ee1f27f66cc1eda1885ef560ee1caa559e1fa119def541998068b7 +size 279732 diff --git a/specs/PULLTOP_Pure Song Garden!/spec2.png b/specs/PULLTOP_Pure Song Garden!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f01e359af347fece53731d739bca281afe23a0 --- /dev/null +++ b/specs/PULLTOP_Pure Song Garden!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd49e904fba6d6c4c07c5b6454d774509f7a4ee3287f1eda2bec5b091c4a3e8 +size 282394 diff --git a/specs/PULLTOP_Pure Song Garden!/spec3.png b/specs/PULLTOP_Pure Song Garden!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d4079f9882633f54b84c6fa2282649a658e5184f --- /dev/null +++ b/specs/PULLTOP_Pure Song Garden!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13902e20050a9904291afbb5aff1f29d4a30fcdaf82cd4433e8d29530e1a5e96 +size 274597 diff --git a/specs/PULLTOP_Pure Song Garden!/spec4.png b/specs/PULLTOP_Pure Song Garden!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e30d016d9ef215341ae478ea72145f1571c4a6b7 --- /dev/null +++ b/specs/PULLTOP_Pure Song Garden!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9eb82833c0e8355c849d9c12af329b0e60468b85eb7f5ffa02b30d0d8d52a68 +size 277381 diff --git a/specs/PULLTOP_Pure Song Garden!/spec5.png b/specs/PULLTOP_Pure Song Garden!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a272f2a99b69007febd1c1f8c8ba92af18eacfd9 --- /dev/null +++ b/specs/PULLTOP_Pure Song Garden!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d1f2a24b00e14416ef5f4f31523232f5ea248203a8af5327596f4f38ddc967 +size 300423 diff --git a/specs/Palette Qualia_Otome Domain/spec1.png b/specs/Palette Qualia_Otome Domain/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e94c86ddfe6d6183f386bc4a7b9256ff37e527ef --- /dev/null +++ b/specs/Palette Qualia_Otome Domain/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bcde42d8e005b9a811d44e7a9bb485800b259ac98463e85b5db56cecef09bf5 +size 359529 diff --git a/specs/Palette Qualia_Otome Domain/spec2.png b/specs/Palette Qualia_Otome Domain/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7382c3da1e9ca7dd973c5df510cc1f0e47463818 --- /dev/null +++ b/specs/Palette Qualia_Otome Domain/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6e4cd4d74d8a5f81c12ad1a3f08cd5a7a115068afc03e03d3814da433dd2a8 +size 339392 diff --git a/specs/Palette Qualia_Otome Domain/spec3.png b/specs/Palette Qualia_Otome Domain/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..744df300c66bd939aeb9c5881caca55a0d60ef34 --- /dev/null +++ b/specs/Palette Qualia_Otome Domain/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed0ee5977c92d63e8e09fda7e4be30c1edf62baf1db69d95af9f457c52381f4 +size 342161 diff --git a/specs/Palette Qualia_Otome Domain/spec4.png b/specs/Palette Qualia_Otome Domain/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2c611384cb15e41bb90f2cf12ae5d6073877d744 --- /dev/null +++ b/specs/Palette Qualia_Otome Domain/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe463f8ff1b21677615285969e80d439700b02aaa668a72556606ab6f8091b8 +size 360469 diff --git a/specs/Palette Qualia_Otome Domain/spec5.png b/specs/Palette Qualia_Otome Domain/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..60c8c9f5803d2f877793ddab50c37ecf7305f0b2 --- /dev/null +++ b/specs/Palette Qualia_Otome Domain/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fdf202ea3b0d1d3b18561014909ea0a3f084748a6beabd46612eb87df07df9e +size 341650 diff --git a/specs/Palette_9-nine- Deluxe Edition/spec1.png b/specs/Palette_9-nine- Deluxe Edition/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d9f3780aca69189984b658543e1a40313805241 --- /dev/null +++ b/specs/Palette_9-nine- Deluxe Edition/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac18d075b81a3704148ccbe5b4a85cb45b4c58010046f0bcee1bfe0c9fc5568 +size 323897 diff --git a/specs/Palette_9-nine- Deluxe Edition/spec2.png b/specs/Palette_9-nine- Deluxe Edition/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..23a6eab7b9fcc03b5371c3dac8b128703a2b2af3 --- /dev/null +++ b/specs/Palette_9-nine- Deluxe Edition/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd60bf3831738f0a8ce18317b172781cfe1bb6c63f1c4e9c69ad2dd6e3aac4da +size 308834 diff --git a/specs/Palette_9-nine- Deluxe Edition/spec3.png b/specs/Palette_9-nine- Deluxe Edition/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..52f2b4b610401451b5e8a39d3c395b4666d90df9 --- /dev/null +++ b/specs/Palette_9-nine- Deluxe Edition/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728d014baf5d3fb7df3a9415e6d3e88208a4731e094f872f1b80e0819b83080f +size 300535 diff --git a/specs/Palette_9-nine- Deluxe Edition/spec4.png b/specs/Palette_9-nine- Deluxe Edition/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..959631c45fbf33a19a425ee33b6ce5da8650d9cd --- /dev/null +++ b/specs/Palette_9-nine- Deluxe Edition/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bca9c656bfa7026699ad34f79c3ad9e046dc6c162aec4b300a1731a2eb96f22 +size 323071 diff --git a/specs/Palette_9-nine- Deluxe Edition/spec5.png b/specs/Palette_9-nine- Deluxe Edition/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8defec78660975aefd4648d4c357a975eedfe61d --- /dev/null +++ b/specs/Palette_9-nine- Deluxe Edition/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1321a3a71fb11f9668f2ae037fffb0557b9e32bcf8925aa0263d6f777615a223 +size 321572 diff --git a/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec1.png b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1d7121885edfdbd49caa2a6b3db5e0eef25b483d --- /dev/null +++ b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a11437a1e2bba9ad0b655c9aa25f8e67cb347cff77d835a6dd224a85340f87 +size 319867 diff --git a/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec2.png b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..722f5c692aecec513031bf4265061975f56d4e62 --- /dev/null +++ b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28c6df954fb6ae32fc7e93f502f0f928a158f4d9985c8dd2fff9407d6d5a8e1 +size 309549 diff --git a/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec3.png b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5de3fe9d4a7d045707918b91ac15f65af59787b7 --- /dev/null +++ b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f4c8ecd90844e436ee7d821bf9c2b74b4f4b733facedff0f0256f6aacb0497 +size 332056 diff --git a/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec4.png b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..152a416d177d215235de8f84ec2341641176dd44 --- /dev/null +++ b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0198187d4b6badb5c2108ab6b3edf340d514f6d51781480fb3cfb6ad5bda4b28 +size 259808 diff --git a/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec5.png b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..473fbb844d0afaff76f7fad6a26b60c07bf1a8e4 --- /dev/null +++ b/specs/Palette_Mashiro Iro Symphony -Love is pure white- Remake for FHD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a64ae26147ba60a12c527d0f9896b5be2f88365dbac54695c913a1cf9d96af4 +size 323530 diff --git a/specs/Parasol_Derivara! -Deliverance of Strays-/spec1.png b/specs/Parasol_Derivara! -Deliverance of Strays-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..43f24ed2a2cfee477dc158b3aea48848da0f2d94 --- /dev/null +++ b/specs/Parasol_Derivara! -Deliverance of Strays-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a66970edae36cb82558d49b223d7ce6560cb44775b38686c4401870e4db6e8 +size 320978 diff --git a/specs/Parasol_Derivara! -Deliverance of Strays-/spec2.png b/specs/Parasol_Derivara! -Deliverance of Strays-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e717e355dc44d6553f3cefc6e1ccda04132cd2b8 --- /dev/null +++ b/specs/Parasol_Derivara! -Deliverance of Strays-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a46bd84e77db95df37f7617a8ea7747cd276c2da2aa6ebe04f7b682e8797ac03 +size 335400 diff --git a/specs/Parasol_Derivara! -Deliverance of Strays-/spec3.png b/specs/Parasol_Derivara! -Deliverance of Strays-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8921d80314ecc91c40d3aaa278ff7a20e158f2 --- /dev/null +++ b/specs/Parasol_Derivara! -Deliverance of Strays-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb9688433d808d8c984ed8398c8e0074b0551b2ef96b7061135046a1b29609d +size 329626 diff --git a/specs/Parasol_Derivara! -Deliverance of Strays-/spec4.png b/specs/Parasol_Derivara! -Deliverance of Strays-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6aeca9d62af0aafb15d6e878a6324e42828f0b6a --- /dev/null +++ b/specs/Parasol_Derivara! -Deliverance of Strays-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229778bda4ccc4d7367b72231116cef3cf39e1b47ce5f8af00eddf9ad4863ff1 +size 308870 diff --git a/specs/Parasol_Derivara! -Deliverance of Strays-/spec5.png b/specs/Parasol_Derivara! -Deliverance of Strays-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2519dc8411fbee1574b98179b64cbb2a41fa739b --- /dev/null +++ b/specs/Parasol_Derivara! -Deliverance of Strays-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703fa6e9f1332a90ae98cf03614d90e71be76d110229c269769f3f72c3638e22 +size 300991 diff --git a/specs/Parasol_Kanojo to Ore no Lovely Day/spec1.png b/specs/Parasol_Kanojo to Ore no Lovely Day/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3b922a95f84172d14e976405426135b1da800651 --- /dev/null +++ b/specs/Parasol_Kanojo to Ore no Lovely Day/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab2b783e2d768c2f7689507d390ba7b58e21b750ded81a7be01ff66587370f1 +size 315088 diff --git a/specs/Parasol_Kanojo to Ore no Lovely Day/spec2.png b/specs/Parasol_Kanojo to Ore no Lovely Day/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..33fd45816a98d5ad38c61f9d072a038973a59398 --- /dev/null +++ b/specs/Parasol_Kanojo to Ore no Lovely Day/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dfa9331568898e37bcffafca2fc7cb68e64501b48a7b40401c304fce24aa4cb +size 271970 diff --git a/specs/Parasol_Kanojo to Ore no Lovely Day/spec3.png b/specs/Parasol_Kanojo to Ore no Lovely Day/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb061496014f667056fe2af2fef3228b32b8455 --- /dev/null +++ b/specs/Parasol_Kanojo to Ore no Lovely Day/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0887200e737247d2f961f43475b63bd528382da837c4cdb7d5ca3bfa2cbed777 +size 289709 diff --git a/specs/Parasol_Kanojo to Ore no Lovely Day/spec4.png b/specs/Parasol_Kanojo to Ore no Lovely Day/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..203b5dd5385c3ab41d32f12f65be418ac4267f8c --- /dev/null +++ b/specs/Parasol_Kanojo to Ore no Lovely Day/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039c3914cec41145cbd41e18da1fcb13fb1c01cb0610475b2a9fc4e4c0156293 +size 331741 diff --git a/specs/Parasol_Kanojo to Ore no Lovely Day/spec5.png b/specs/Parasol_Kanojo to Ore no Lovely Day/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0261318cd79cffc385a347f4f141a7c0f65399 --- /dev/null +++ b/specs/Parasol_Kanojo to Ore no Lovely Day/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7aa336bde964d2279aac6c7e1e28f706c6a671da5ac43b14b1035c995eeaa5c +size 320542 diff --git "a/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec1.png" "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..775cd8fa2195a2fce703b56481320c5723a827b8 --- /dev/null +++ "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b673d74a84c37ced7b17ba6c59bb981a428cf5988da18be9513fde4b5ec980d +size 321333 diff --git "a/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec2.png" "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b5e11827d1c7b3db5ec071068a6ca89bb419dd56 --- /dev/null +++ "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffad09d9967670d1121877f86f8f54098730276c38c5404cba3d35d3e96c101a +size 326654 diff --git "a/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec3.png" "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..fdc2d8a3d2715ed9bd5eaf4adda62142aba846bc --- /dev/null +++ "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c0a57c4ccc8ae22f70d0b52bee2aa0565b21a8bb53662a859df5fba956b6a1 +size 320840 diff --git "a/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec4.png" "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..4bf6353f0a043ec86c881389124c23fc78b1ea98 --- /dev/null +++ "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4c5516ccb52efbda31513d45e6c5b8b0a0a6146490cd0a5bb6c68b0674b5d3 +size 322075 diff --git "a/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec5.png" "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..cfc186b38cf5b30de4d24babe812f0956f2c47cc --- /dev/null +++ "b/specs/Parasol_Koiimo Sweet \342\230\206 Days/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:648ba671d6242849477b51f6d0fb10b06a146bf8add5b30b7abe8c41f88a84b9 +size 326548 diff --git "a/specs/Parasol_Magicarat\342\230\206Radiant/spec1.png" "b/specs/Parasol_Magicarat\342\230\206Radiant/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..7e25667f30b0cb8592eac167e423b23d4acbe59e --- /dev/null +++ "b/specs/Parasol_Magicarat\342\230\206Radiant/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f089fa5917711b230593aedf37cd215d307b97225a208d7b0c1f09883df2b5 +size 295273 diff --git "a/specs/Parasol_Magicarat\342\230\206Radiant/spec2.png" "b/specs/Parasol_Magicarat\342\230\206Radiant/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..5746404bd38425b88098bb90b16d4c2bd3badd73 --- /dev/null +++ "b/specs/Parasol_Magicarat\342\230\206Radiant/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f202d498594b34a3adcdca901b16dbe87f91fd55c3694950ed42ecccbbbdcb +size 344591 diff --git "a/specs/Parasol_Magicarat\342\230\206Radiant/spec3.png" "b/specs/Parasol_Magicarat\342\230\206Radiant/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..a14ea5b39c4a96e2826558b3c52539973d1735ac --- /dev/null +++ "b/specs/Parasol_Magicarat\342\230\206Radiant/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a206365df319f09315ddfe6481870c1aba574c1a0b9db5cc60fb42c989464d +size 288473 diff --git "a/specs/Parasol_Magicarat\342\230\206Radiant/spec4.png" "b/specs/Parasol_Magicarat\342\230\206Radiant/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..f3b5904ce4c069aeab93c28f514d18e5b43b5887 --- /dev/null +++ "b/specs/Parasol_Magicarat\342\230\206Radiant/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651bc3c53536f00d39a8a244a182142b92b45537f98a77fcb693b413d02f4c2a +size 346547 diff --git "a/specs/Parasol_Magicarat\342\230\206Radiant/spec5.png" "b/specs/Parasol_Magicarat\342\230\206Radiant/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..f1489e5264102b6bbdac2fec1d45e5808b4aae8d --- /dev/null +++ "b/specs/Parasol_Magicarat\342\230\206Radiant/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e13021ba8e4e4de8b07d60ed954dbb4b670fa179056d391afb45124c116f3df +size 341374 diff --git "a/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec1.png" "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..7599cd724de67b07ea4e1c29a7097a08ceb1d76a --- /dev/null +++ "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877975c5545a7b5c3acc3232b78d08fcb905742fe9c727a7550621a63bfeac95 +size 320494 diff --git "a/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec2.png" "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b33f99abdbcdc2e2300bfef29338246bd2feece6 --- /dev/null +++ "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e7e9baf214eb96999fd7c1cc1872356460622a2526962bf5e0cf8d3c06f621 +size 320701 diff --git "a/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec3.png" "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..2d9089610eec297cab0db61baa91b2f9966aa53b --- /dev/null +++ "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681d8df00960a9bf8fbf3b7e7370e451748a962a76eebf01499cd76425dff163 +size 288540 diff --git "a/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec4.png" "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..ca7fa4a3a358a3284a7d78c0f8ab2e448f31e678 --- /dev/null +++ "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d4f7eec18b00e3acc3b50b19b2072fa297febad053e9ab3a7ad5f58f929eb4 +size 306450 diff --git "a/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec5.png" "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..1d84957dcb9e75395473303f920d08f227de024d --- /dev/null +++ "b/specs/Parasol_QUINTUPLE\342\230\206SPLASH/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240c6321391e252a898a3bb5ed47e6a3a94f8a63045bd0b6073ce88fd140eb67 +size 318306 diff --git a/specs/Parasol_Renran Spirichu/spec1.png b/specs/Parasol_Renran Spirichu/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..29315cf72bc10228a847b0ac1763aa6d6971620a --- /dev/null +++ b/specs/Parasol_Renran Spirichu/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9cbc418782a412ce72982d6876683f62afb6cc143a739ac3c57d38547e54f5 +size 326292 diff --git a/specs/Parasol_Renran Spirichu/spec2.png b/specs/Parasol_Renran Spirichu/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..78b256eb4c5844603999f5a589974ef7f08ac3df --- /dev/null +++ b/specs/Parasol_Renran Spirichu/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca964a26fcad2ffd82755596f11f290fa02d8faacb26cc329639f8d50bd491d +size 328477 diff --git a/specs/Parasol_Renran Spirichu/spec3.png b/specs/Parasol_Renran Spirichu/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..261de31b17c40df5a67eacbbf0adce96c0df3e64 --- /dev/null +++ b/specs/Parasol_Renran Spirichu/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0aa837339d40c38ad4c106abd1fc60d17308bf479705a421bd83e66b8db2103 +size 306989 diff --git a/specs/Parasol_Renran Spirichu/spec4.png b/specs/Parasol_Renran Spirichu/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e93fcd85c43b5330378a57a561f67dba966bac --- /dev/null +++ b/specs/Parasol_Renran Spirichu/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d769ad288e3fc7ec6db9b6b10043500018e6fd57c41a4f970be96e3dadd68107 +size 339430 diff --git a/specs/Parasol_Renran Spirichu/spec5.png b/specs/Parasol_Renran Spirichu/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a2365020d608e20a8b1d2543cae2bac2cdd116b3 --- /dev/null +++ b/specs/Parasol_Renran Spirichu/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4a18e137ef874489170f1defa47dc86b0e2fc1da96417df5b1502acd06472f +size 320851 diff --git a/specs/Parasol_Sakura Hitohira Koi Moyou/spec1.png b/specs/Parasol_Sakura Hitohira Koi Moyou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d82014e599a340355b29bcab8de47636244d9180 --- /dev/null +++ b/specs/Parasol_Sakura Hitohira Koi Moyou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9821e473a2d8ca392817324af8c2c8f35d28cdedab2cfbd98f8fa0a2e1dcf600 +size 313493 diff --git a/specs/Parasol_Sakura Hitohira Koi Moyou/spec2.png b/specs/Parasol_Sakura Hitohira Koi Moyou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fd898ccbe69c2073d430df559eb7ad39ba22cd5a --- /dev/null +++ b/specs/Parasol_Sakura Hitohira Koi Moyou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c647ec073d19f96d1edce12cbaba97e8a79567d9b1a3fc7f8bd62a9586d2ee24 +size 320575 diff --git a/specs/Parasol_Sakura Hitohira Koi Moyou/spec3.png b/specs/Parasol_Sakura Hitohira Koi Moyou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..be51b81cd562dacfea7dd059f144be49a892f60e --- /dev/null +++ b/specs/Parasol_Sakura Hitohira Koi Moyou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af1a0b404a6e4e5a2e19e5bc122a8d77f6c36788e5787455d6d99c56b73cc1a +size 319061 diff --git a/specs/Parasol_Sakura Hitohira Koi Moyou/spec4.png b/specs/Parasol_Sakura Hitohira Koi Moyou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..330b2ac5570f1231c79a2305440b7f6ce3ca8e0c --- /dev/null +++ b/specs/Parasol_Sakura Hitohira Koi Moyou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91fb4efafc9707dfe4041cebb7796883d4548f1eec5d6753b57bc6899d8565f +size 317739 diff --git a/specs/Parasol_Sakura Hitohira Koi Moyou/spec5.png b/specs/Parasol_Sakura Hitohira Koi Moyou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..07d57ea2d18eb3c57bba0960c6acf265421e3ad7 --- /dev/null +++ b/specs/Parasol_Sakura Hitohira Koi Moyou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab747ad985fac4b70d96f8d823e8e454e8e2052ae19941886afc3181f7b1a64 +size 318123 diff --git a/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec1.png b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ff7dad849edbe9d8ba282450ea96d9e6110d7984 --- /dev/null +++ b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a05fb7a60b16771b371b020f64e9660d46296a4d02a6b84e26d0d04209255a4 +size 345679 diff --git a/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec2.png b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a151efc4cec3af63531dd8c11bfc2a49500189d7 --- /dev/null +++ b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea2a0457a86a703497c266e6dc405658c7ce66b0f3116e2fe264f91806bc793f +size 347403 diff --git a/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec3.png b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..503d9d23e2af90d4d0acebc43ff253dcd4d9d57c --- /dev/null +++ b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a9f1f85cbf9ee25f75f6ee767697c636ac091ebd80e1ee248d79e482eaf0bd +size 334211 diff --git a/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec4.png b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d16e0b9684836c0bd794106f2b7c5c55cd0601d9 --- /dev/null +++ b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ed83a631150698770b59073f4f3f9ffcadd419f50c9c14210e25890e939b4b +size 350931 diff --git a/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec5.png b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f9619692315cd72368e8704ff48fb51f0e9da80b --- /dev/null +++ b/specs/Parasol_Yumekoi ~Yume Miru Mahou Shoujo to Koi no Jumon~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d9f326e9c8ae8b7bbe3221d75e40525adbae82fee1a695ad55ef4f9769fa4 +size 323376 diff --git a/specs/Purple software_Amatsutsumi/spec1.png b/specs/Purple software_Amatsutsumi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0e0ec9652f962c93cb8600a6165441a2c92c1f96 --- /dev/null +++ b/specs/Purple software_Amatsutsumi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ba411fdf836d34ccc1c0b14eccfd776180d5b19e9da4297d7e331f09ed68b3 +size 256319 diff --git a/specs/Purple software_Amatsutsumi/spec2.png b/specs/Purple software_Amatsutsumi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..309ae8ef2798ed8043b641b35595cfe5e8bc1228 --- /dev/null +++ b/specs/Purple software_Amatsutsumi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5e1bb4e8096eaa62c45871162776dfe8e3c95639f85ca2b18dbe88aa333234 +size 293815 diff --git a/specs/Purple software_Amatsutsumi/spec3.png b/specs/Purple software_Amatsutsumi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..57bed232c81576d005a4fb9650c8d4713237a070 --- /dev/null +++ b/specs/Purple software_Amatsutsumi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a090c3b96b5a62c503387f22c46c19c246f977de2e2cd6313a4586b0debe6f +size 293798 diff --git a/specs/Purple software_Amatsutsumi/spec4.png b/specs/Purple software_Amatsutsumi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b89fd5419798cc47f0278079471c2d80fec262d0 --- /dev/null +++ b/specs/Purple software_Amatsutsumi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6408beaa979677a01f4e2d83329c953728d76603970595e06153027d5f7a5764 +size 291868 diff --git a/specs/Purple software_Amatsutsumi/spec5.png b/specs/Purple software_Amatsutsumi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..45fee27b191933c8a5dc497e84bfd1cb1916b33c --- /dev/null +++ b/specs/Purple software_Amatsutsumi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d6e96abaccf08ef53239e098c479348da7521ba145693bf1d419255612f0e7 +size 286901 diff --git a/specs/Purple software_Aoi Tori/spec1.png b/specs/Purple software_Aoi Tori/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..41ffa88a743dd31e193d1d56c2812ea10dd20b67 --- /dev/null +++ b/specs/Purple software_Aoi Tori/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371a78579f95ac9f22d92ffca9e777767c5148ebb5f2b517ebfa99270fd9dcf0 +size 297901 diff --git a/specs/Purple software_Aoi Tori/spec2.png b/specs/Purple software_Aoi Tori/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..214225c674dcc8c877469474b3afdf769520346f --- /dev/null +++ b/specs/Purple software_Aoi Tori/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf0e09d1e867726e7a00b033f72245d9f5c50d8d98fa9d3266281cd1e7abda3 +size 296380 diff --git a/specs/Purple software_Aoi Tori/spec3.png b/specs/Purple software_Aoi Tori/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f25a91138136e94d70e7dae2782dfe6ef73299b9 --- /dev/null +++ b/specs/Purple software_Aoi Tori/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff662c3bba8c3aa01979e9cc6692eba4b269807ed2480b632e91a6ad6e91fdd2 +size 302039 diff --git a/specs/Purple software_Aoi Tori/spec4.png b/specs/Purple software_Aoi Tori/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4b86750c5dee055c014c27f1f51705f56110870a --- /dev/null +++ b/specs/Purple software_Aoi Tori/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16183b401fce11868379dfa961df9a37a6207831a4a6d0c01a4561ff373020a +size 295576 diff --git a/specs/Purple software_Aoi Tori/spec5.png b/specs/Purple software_Aoi Tori/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b018df6b3c6d84d1215460432bd42dab9be5a04a --- /dev/null +++ b/specs/Purple software_Aoi Tori/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e358399f504dffeeb7cbead56deff604b13e1801aeed1ad7c90455da9e1361e6 +size 294099 diff --git a/specs/Purple software_Chrono Clock/spec1.png b/specs/Purple software_Chrono Clock/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3b5f08a83a2311c55ab0d7c00380336612798d --- /dev/null +++ b/specs/Purple software_Chrono Clock/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5fcb18992d0a0b214fb705e1183a50f58776f8085301b1ac957d2ff807248d +size 241197 diff --git a/specs/Purple software_Chrono Clock/spec2.png b/specs/Purple software_Chrono Clock/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a11cbd37d3fafb24c87c0dcb464fbbd68808418c --- /dev/null +++ b/specs/Purple software_Chrono Clock/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bcb52e70a1e611e30f99633c3151802e772374bdee7896f290bc55efbc6eec +size 217027 diff --git a/specs/Purple software_Chrono Clock/spec3.png b/specs/Purple software_Chrono Clock/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4c22c27598a4f8042f2834d0475c9762d6c85110 --- /dev/null +++ b/specs/Purple software_Chrono Clock/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d945e1dc63f21fdc67394ecc09a145e7c409d805657084a6578a63e67d4c1d1 +size 255638 diff --git a/specs/Purple software_Chrono Clock/spec4.png b/specs/Purple software_Chrono Clock/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..22d1211dd1801aba305e93b68351e26821d58bd1 --- /dev/null +++ b/specs/Purple software_Chrono Clock/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658f6cfdd11972aaef2165e5a8786319c3b19bf0342ad87f262f1e3a13be04e2 +size 230418 diff --git a/specs/Purple software_Chrono Clock/spec5.png b/specs/Purple software_Chrono Clock/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..75c6219b24ba5ffd296d78750367fce5f7d09185 --- /dev/null +++ b/specs/Purple software_Chrono Clock/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2843fccfced3ed0557a24b511ee9aa2e4c71d200252efb3e046585f9c05973 +size 287374 diff --git a/specs/Purple software_Criminal Border 1st offence/spec1.png b/specs/Purple software_Criminal Border 1st offence/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..10e3d76c096959513b04bf6964a29d5edee6906e --- /dev/null +++ b/specs/Purple software_Criminal Border 1st offence/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d6f989c4c723b6b9cec64e9d889a8106aedf4ff33d3985205873882a3294b4 +size 267301 diff --git a/specs/Purple software_Criminal Border 1st offence/spec2.png b/specs/Purple software_Criminal Border 1st offence/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ad2cdffd30fae3b60b5cb20145d91be428ae911 --- /dev/null +++ b/specs/Purple software_Criminal Border 1st offence/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c529bfab41e3519686b4edb4d79c5bad9c2c0cb6c2c9e8cb06b764fbcb177486 +size 282264 diff --git a/specs/Purple software_Criminal Border 1st offence/spec3.png b/specs/Purple software_Criminal Border 1st offence/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bb084f7fb00aa4286e822ce856beab5e6abcca20 --- /dev/null +++ b/specs/Purple software_Criminal Border 1st offence/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aebcab57ec29362f018f726f49c2fb4eb887af877509837c0b27e5e222c5f466 +size 283291 diff --git a/specs/Purple software_Criminal Border 1st offence/spec4.png b/specs/Purple software_Criminal Border 1st offence/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..19e579b77abb95798af7e937cc58ccc30d5cfe1d --- /dev/null +++ b/specs/Purple software_Criminal Border 1st offence/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d979c738b3a7f5821c0fdf414bfba8b588d90605253949dee21ce6f30e4acc +size 284852 diff --git a/specs/Purple software_Criminal Border 1st offence/spec5.png b/specs/Purple software_Criminal Border 1st offence/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..500b2562bd95de86f257002a818d8f2b1f698a0a --- /dev/null +++ b/specs/Purple software_Criminal Border 1st offence/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1ea1e29a5a74b2062239bcdc6a10496e9e26f3f5832d1db72785fa682f6985 +size 293948 diff --git a/specs/Purple software_Criminal Border 2nd offence/spec1.png b/specs/Purple software_Criminal Border 2nd offence/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7ca216a207637ab8d3f25b554ad204be0987270f --- /dev/null +++ b/specs/Purple software_Criminal Border 2nd offence/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2362348174e6d608002b1007f00c6ceb8dbdac41e9d3fa4a1f9401dc46ff6a0c +size 222356 diff --git a/specs/Purple software_Criminal Border 2nd offence/spec2.png b/specs/Purple software_Criminal Border 2nd offence/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..310da10ea4c3f739803f9b218e2cc0a66d5c9ab0 --- /dev/null +++ b/specs/Purple software_Criminal Border 2nd offence/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e304c59071550b9941bb523599a0476fcc6c82c52146812be9277e3262f6607 +size 207791 diff --git a/specs/Purple software_Criminal Border 2nd offence/spec3.png b/specs/Purple software_Criminal Border 2nd offence/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c4fb8f27aab2b480b6dd111e801c3508f1d1de20 --- /dev/null +++ b/specs/Purple software_Criminal Border 2nd offence/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925ba6b4665ccf87ece452ff1d2e6aba3fcdac94b0d2dfd385dd71e0ccc9d22b +size 207433 diff --git a/specs/Purple software_Criminal Border 2nd offence/spec4.png b/specs/Purple software_Criminal Border 2nd offence/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..cc92e9e546f1bd7eff61d077b679f12869587d94 --- /dev/null +++ b/specs/Purple software_Criminal Border 2nd offence/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709587188253227d6e34ce76cbf3e7ca6276a5b853f164a0da20275c6267f9ec +size 231270 diff --git a/specs/Purple software_Criminal Border 2nd offence/spec5.png b/specs/Purple software_Criminal Border 2nd offence/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..697daaac5c8d12940071dcb7e7dd2f266f1c0d99 --- /dev/null +++ b/specs/Purple software_Criminal Border 2nd offence/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94cb14ae1e9815321630d6267831d97eef1ed2d445d2169817bf5a6c209cc169 +size 200889 diff --git a/specs/Purple software_Criminal Border 3rd offence/spec1.png b/specs/Purple software_Criminal Border 3rd offence/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7a35a416b3f99fa070ca005a94df12f86c5f0278 --- /dev/null +++ b/specs/Purple software_Criminal Border 3rd offence/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5813cd060a9563a8b2b87e4b3d4fb75fe5c865e3409f556799eaa1d47008dc +size 140262 diff --git a/specs/Purple software_Criminal Border 3rd offence/spec2.png b/specs/Purple software_Criminal Border 3rd offence/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..27778fc367242287ed79f6260901f3b2595c2144 --- /dev/null +++ b/specs/Purple software_Criminal Border 3rd offence/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f929e737e3ad934e12d4a5ae2b0c4463c0d43da764bef43fada65122ada72e6 +size 253240 diff --git a/specs/Purple software_Criminal Border 3rd offence/spec3.png b/specs/Purple software_Criminal Border 3rd offence/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e35e82c64b8c8fff6225ba7479ee24e02a906dae --- /dev/null +++ b/specs/Purple software_Criminal Border 3rd offence/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad4fd64d8aea76dc83897d97f43f454e7062fd05874fe85afb9e90d2dc8cbe4f +size 118451 diff --git a/specs/Purple software_Criminal Border 3rd offence/spec4.png b/specs/Purple software_Criminal Border 3rd offence/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6a292541fd37a464ed0202e9e8200f5a7076e751 --- /dev/null +++ b/specs/Purple software_Criminal Border 3rd offence/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010ce7d99ca0e0e81c91519a03a99870b206753c83389e56abceea0d13b84009 +size 236368 diff --git a/specs/Purple software_Criminal Border 3rd offence/spec5.png b/specs/Purple software_Criminal Border 3rd offence/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..42f2d9ddcf022c0dae408c5c8b5e93af6ec858d8 --- /dev/null +++ b/specs/Purple software_Criminal Border 3rd offence/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322928d8bb060c9b79bb816f617403a2599c492619edbae84ee0f1a17ffa270f +size 196741 diff --git a/specs/Purple software_Lip lipples/spec1.png b/specs/Purple software_Lip lipples/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2fe9b604a3b7de84d8e5d323592b9db0fc62640f --- /dev/null +++ b/specs/Purple software_Lip lipples/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4681ea6c6ab4d34576f1d9efebea03d7a2a04ccd5d944399776b2b5d88861184 +size 279962 diff --git a/specs/Purple software_Lip lipples/spec2.png b/specs/Purple software_Lip lipples/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1362e2dbbd7086752247eb8d6c71246192ef67c1 --- /dev/null +++ b/specs/Purple software_Lip lipples/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275bf84da5b5cf8a3021f17828dc3922bbdecf097ba11a029fbc854250bac5fd +size 280215 diff --git a/specs/Purple software_Lip lipples/spec3.png b/specs/Purple software_Lip lipples/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e8c1582bb39d1960fbb8863e8731200ec02e0b06 --- /dev/null +++ b/specs/Purple software_Lip lipples/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a5ac81c9367365fe7e03d738b0e044025c2662bc6e96b59947ddcfab01f89e +size 275987 diff --git a/specs/Purple software_Lip lipples/spec4.png b/specs/Purple software_Lip lipples/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a283eaabed146d951807371869bc3d8a1f39a514 --- /dev/null +++ b/specs/Purple software_Lip lipples/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fab831320ca72baed0a3cb6bd57412714e0e03fb95e6d597198c8b3f846cc0 +size 290402 diff --git a/specs/Purple software_Lip lipples/spec5.png b/specs/Purple software_Lip lipples/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..afac0b1e63b9381448a6334c44a60d52c32c62dc --- /dev/null +++ b/specs/Purple software_Lip lipples/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5399a525a6fa12b556a9538c558c4059e5d8740255479eb7db9eb8f7bdd353b3 +size 269144 diff --git a/specs/Purple software_MOON GHOST/spec1.png b/specs/Purple software_MOON GHOST/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b1755ad663e5213f730ff7f1fe959bd503b0b911 --- /dev/null +++ b/specs/Purple software_MOON GHOST/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b338b8013743ad7edd20ce8e3989085d38596a06081f156af4f1c28b050fa50 +size 271054 diff --git a/specs/Purple software_MOON GHOST/spec2.png b/specs/Purple software_MOON GHOST/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..49761c9e135905510384cd006296aea4e16e6d2c --- /dev/null +++ b/specs/Purple software_MOON GHOST/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d163f36dac5e31b5e23aee6d9f4e74f99c0625fcd28d573150210b2cad4163e5 +size 241435 diff --git a/specs/Purple software_MOON GHOST/spec3.png b/specs/Purple software_MOON GHOST/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..583148c98b3e8bb49a38f588e27cf2ff160ea574 --- /dev/null +++ b/specs/Purple software_MOON GHOST/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23bfaa01e31115dd849ff4af02a9f94389eb35fcd6d2081071cb17224ccdd48f +size 202460 diff --git a/specs/Purple software_MOON GHOST/spec4.png b/specs/Purple software_MOON GHOST/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b6df952144716cd7f3bb686889f69ba91d93a85d --- /dev/null +++ b/specs/Purple software_MOON GHOST/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5f169889751728996de1a0006ecf85abb4531edcbd893e7fdc2d7c3fe98f0f +size 259791 diff --git a/specs/Purple software_MOON GHOST/spec5.png b/specs/Purple software_MOON GHOST/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..aa0a7d5ed90b5a43895ed9adf18c0afeb15146be --- /dev/null +++ b/specs/Purple software_MOON GHOST/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccee990f2130279f3e9d88a9f273e0031bea32f43f1f1c3406e91fc2b6ce7c9 +size 253173 diff --git a/specs/Qoobrand_Majo Koi Nikki/spec1.png b/specs/Qoobrand_Majo Koi Nikki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..11d67378b871f47973997b78ac8fb5a97614cf9e --- /dev/null +++ b/specs/Qoobrand_Majo Koi Nikki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5c90f8f8295356b690e0e19c8c2811717c730b6630df15b005a48eecad4930 +size 320074 diff --git a/specs/Qoobrand_Majo Koi Nikki/spec2.png b/specs/Qoobrand_Majo Koi Nikki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..965b28217d324d98c73945db7c3fbd2cc1cd785a --- /dev/null +++ b/specs/Qoobrand_Majo Koi Nikki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45d2f7612c48faf3db9616f9932fd91e539d3e9041848c20f3de67ebc6a8ffa +size 324653 diff --git a/specs/Qoobrand_Majo Koi Nikki/spec3.png b/specs/Qoobrand_Majo Koi Nikki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9eb0d250602b2b93a49588e247d8c10436e06e40 --- /dev/null +++ b/specs/Qoobrand_Majo Koi Nikki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3fe457175a08391d4b88e991afba6a7ea76236436073eb2bada581edb8a12b +size 335995 diff --git a/specs/Qoobrand_Majo Koi Nikki/spec4.png b/specs/Qoobrand_Majo Koi Nikki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..633a0fc0f8aff325fa00ef24a7acf904b614c48b --- /dev/null +++ b/specs/Qoobrand_Majo Koi Nikki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6258389e1d12b4c575b7240d0381ea2213ddf720664606f345e05f4f41f83c +size 327111 diff --git a/specs/Qoobrand_Majo Koi Nikki/spec5.png b/specs/Qoobrand_Majo Koi Nikki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fe119e1d1969e15e6f33645406ed442e55b36813 --- /dev/null +++ b/specs/Qoobrand_Majo Koi Nikki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087e95377c6b00217df160e53ee044cd932194443b215e3606f8aa42bf8a3c52 +size 322807 diff --git a/specs/Qruppo_Hentai Prison/spec1.png b/specs/Qruppo_Hentai Prison/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..872b91c6994e6d4f6297e9565490e612469d3eda --- /dev/null +++ b/specs/Qruppo_Hentai Prison/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2253b2986355321bf1757652adbb0ae633f707738e06ef6beee7176d09cab51f +size 330550 diff --git a/specs/Qruppo_Hentai Prison/spec2.png b/specs/Qruppo_Hentai Prison/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d9a2f7839d7d435c133a29172768b438804bb0e --- /dev/null +++ b/specs/Qruppo_Hentai Prison/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:644bea8c1fdc46360b0ce6f8bb16787745501f71bf76cb6f1eb592654a1044ff +size 254567 diff --git a/specs/Qruppo_Hentai Prison/spec3.png b/specs/Qruppo_Hentai Prison/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f1107d0a889b9d2f6d1ef35a474a08fd45359af8 --- /dev/null +++ b/specs/Qruppo_Hentai Prison/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80bd45a6b1a0a08ee4eaaf17d4b43da0f1bef3c4b60625701fe65f395f061d95 +size 261916 diff --git a/specs/Qruppo_Hentai Prison/spec4.png b/specs/Qruppo_Hentai Prison/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..67f27404b90239be4cae1e86bd199484016ca96a --- /dev/null +++ b/specs/Qruppo_Hentai Prison/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96d8d73f1e8ab5dc8396ebf7a5a5cb09e527e9859d1b1a45f16b36ca04af0eb +size 228026 diff --git a/specs/Qruppo_Hentai Prison/spec5.png b/specs/Qruppo_Hentai Prison/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..55fe2c52209993352e026c9f970364da3a0b57e4 --- /dev/null +++ b/specs/Qruppo_Hentai Prison/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e06ec55ee200910a0de037a3af1b3cc1fc22d522ee0cae3362703d5b107b14ac +size 339653 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec1.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..512b486df6ea3ea1eb2de5d7531bcdbf0e514ab8 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af281bc5cc46277f36eca76ff646ed2a852b6f01d9d9d8981c362a933deea09 +size 349392 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec2.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c39bcf051edf7351bce06a88c807ed14e53cf7d3 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ab3fea2188908bd6eb09fe723dd79c6228adedf9894dd8f341f29fe0927cfc +size 338909 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec3.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fa4738bef769fdeb0643b1441a92753f235b0e84 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b565e78f00f37c81e1dc3fca0fff96497fa123a5f659acd74342e4e69b1055ee +size 347565 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec4.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..89f9624f1b814fd40cb5786dce3ad3657ddc698b --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec2408d28d283b97380fe70b1a26dd32dbbd0886a514f0ff137eb21a4a084eb +size 292306 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec5.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..88456645fe7db81b708acdb1338dfb32d82b1e82 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f4582164e6c36b1407feed26570bff83b2ba84fd4bed793238a89beb1490fc +size 268890 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec1.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e6c388c8bc2d87824bb99d708a83fce673cd9827 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5ba422df1ad8f01ccd6cf3c4bc9bfc5c7aaf4a515bae9f48fb7a8527bb0612 +size 290460 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec2.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e57f737f9865d15ef793d1336e948ebaede5e1ff --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f90e284a14a52f373faaaa7f87072580ad1def9faf946cfee9f2dd59acd6da2 +size 250891 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec3.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..73eb37421b643850112b6e4d8cc80da11abf3611 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a79adaf2bcc865dcf1b8c1f8d99bb058a294efcec321860073a39a7077327c +size 291553 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec4.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0437fa690c5c3f6e7b40beaab5e401e1585d5504 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f2d1fbba6a4715c35cab39261fcd4d5e1a913a85e9a1b3bac79115d7341041 +size 196781 diff --git a/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec5.png b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..23bda7341964e5ac3eede922fe8fbbdbee9a26c9 --- /dev/null +++ b/specs/Qruppo_Nukige Mitai na Shima ni Sunderu Watashi wa Dou Surya Ii Desu ka/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d75d4a37e4b17446e40acb497da4a59c21a067b44f710c66f812fd931bcf383 +size 265374 diff --git a/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec1.png b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..71814e6d46065f9bf801ca74df2048e8bf8acfb9 --- /dev/null +++ b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce4e028015f8b0381c07e4d1eba33d720737a93e7c8c720bd3d9f302ada0018 +size 269701 diff --git a/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec2.png b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ed2dd804d5ea1583a87cfd64a54d23557227967e --- /dev/null +++ b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e393ca4f6122b59c7a8557e5afa6eb7e60ef04415d9bf8ebacddce41e6619f1 +size 276595 diff --git a/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec3.png b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7b9863d4dd45b84b79e35465691d3d75e275efc6 --- /dev/null +++ b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b6a530e48ec1a9eca33dbd4852382f62c5204924ceacdc4c3b9362968dfbff +size 318916 diff --git a/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec4.png b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c62730f2d510a2f76f588a2b972d68ffd9c04861 --- /dev/null +++ b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a800488f72fb78ce8f733d3891bbd14c399f778c94de2dd473d01fd91a44ae +size 242602 diff --git a/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec5.png b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ac122862b4f17732e57d402cb18f5b1bd1f2efc9 --- /dev/null +++ b/specs/RASK_ReLieF ~Shin'ainaru Anata e~ ReEditioN/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8eb3e5aeaf59313b1b5bebd6b30afffef9369307c2ba885029e9c1c968f5e10 +size 282566 diff --git a/specs/Recette_Shugaten! -sugarfull tempering-/spec1.png b/specs/Recette_Shugaten! -sugarfull tempering-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bb54ad1363384db31ad6ab1ba2713ec89007580c --- /dev/null +++ b/specs/Recette_Shugaten! -sugarfull tempering-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4042760b5059ae1b117acc56a566bb8ea3da19191c5910af5a7966a9010f369 +size 357123 diff --git a/specs/Recette_Shugaten! -sugarfull tempering-/spec2.png b/specs/Recette_Shugaten! -sugarfull tempering-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6650935daadc35e77f3d1dbf4d03c596cbe6c5c0 --- /dev/null +++ b/specs/Recette_Shugaten! -sugarfull tempering-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655327f09b5bec9efa0050d991b3d628e26546e382542b55bf7ce5209a0e35c7 +size 348405 diff --git a/specs/Recette_Shugaten! -sugarfull tempering-/spec3.png b/specs/Recette_Shugaten! -sugarfull tempering-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d82f0b121dd5c4cc75971129199366dd94e8c431 --- /dev/null +++ b/specs/Recette_Shugaten! -sugarfull tempering-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81471b37b2d0f18340cb53ded4ee9b9e764115b2a8d560357d3c84baa2df8deb +size 343895 diff --git a/specs/Recette_Shugaten! -sugarfull tempering-/spec4.png b/specs/Recette_Shugaten! -sugarfull tempering-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1cbf45677d114782afa024f636864ddd1a4d51 --- /dev/null +++ b/specs/Recette_Shugaten! -sugarfull tempering-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48488dd0eb785843088bedd2a7974b029b5a0b1370f173da81018fecc41ec61 +size 345941 diff --git a/specs/Recette_Shugaten! -sugarfull tempering-/spec5.png b/specs/Recette_Shugaten! -sugarfull tempering-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b658e8c167b7ebba41e56e4112ac70fd02ed95cb --- /dev/null +++ b/specs/Recette_Shugaten! -sugarfull tempering-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc8bdaba5b7420a8d7cdbc5a60e74d7bddad987cd12953d757d712c36ce49e7 +size 331460 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec1.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8b237271357b38d8182e9b1b51b589d3d1ad920a --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f20f5a708a61de4269877e20fe78d86f98dddf974ec8b1878025009a2fd233 +size 256862 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec2.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6bdfab769835edb99a9a871ca0062945166c3dc3 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d2a2ace77e0d7f8bb4ec4699097b8d79df95519b117d43ea2575826ca5cb87 +size 260238 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec3.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f067960ac8ce906537afd4654f8a7a11e9a28a30 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb53b0fc8c6666dd0395f18d05801becbdf2aeb4f9c7a70c4b50c8487baa196 +size 247953 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec4.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b401be01566131e5ccbd065c115eeb7e13a61c74 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c882f8872e41de55408ecf2b701cb1d85477a7722f2f9ffcac8b4a1679a0253 +size 262190 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec5.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ba96f298bc49710f218f7066621c51ff1c02887d --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 1 Kaguya & Atena/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6fbebda43c6a4fb7f848270ca3e3cd81c596a389102da6e532f4a9c460a78c +size 272854 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec1.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e517f578ed58550121f2855a4197a8f13948970d --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21142ed2c8fc8343e9c121e1b952bbb69adc8ecef1393973b205d859e92918d2 +size 281128 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec2.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c98342ece3f8b96a3499c2bec9478ab65417d584 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51dfd47e70bd305fbbc9ea111a576cd071d13283dd018f9b96c86e4fc82a5fd3 +size 217498 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec3.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1248436d75323490bb93cb94b0fd9f637c5996ba --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b85f00960328bb257713957a0e1e4e82d6c9c799f945394b23c8aefadc86ea +size 256335 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec4.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..34d6130adacc066e35df1f91e3333063e50dbb8a --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16625769ac1d909d86c0d3d854c4d66f769451909b70c6c707822248db0e33d9 +size 282803 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec5.png b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..68c2cd0382b2d67aaa75e5fde17733604147a3a4 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION After Episode 2 Yae & Nijimu & Charl/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1631605c676fa82b82baf4e46f7f51f86dfb957b9d08a5e026937bb7f662fe31 +size 253992 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION/spec1.png b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..aee61931b3c36340f0646ee0e939e23658afcf4e --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d669537a6ccc3584e8c83d0c635d801c33caf20cc616b2aac5b892f0c2848e6 +size 278532 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION/spec2.png b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..167bdfd9f223b649fd8d2ab0d95554dfd6ba1269 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc20023ee2aa53eae79d0a20ae9300948796e9d5c0afce1301761befadcf603 +size 268180 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION/spec3.png b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..dc03d7c080f34522910b12f70673fee3fda88738 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01f2bdea174ba0c2e1a922f487f741d4d5b4ad2aa5ed40c6481cd8f5156ae76 +size 214697 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION/spec4.png b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..68e7cca1de749c3cbeed00777cda1740f21cff98 --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af6f890a8649bad47ae1b7968b7024d7f413b6bce9ebb84bb42c1e2d62119eb +size 213391 diff --git a/specs/SAGA PLANETS_AMBITIOUS MISSION/spec5.png b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bb527a9dad4e4f31724ae57a1341760f6773dc1f --- /dev/null +++ b/specs/SAGA PLANETS_AMBITIOUS MISSION/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72721283ac8aedd7cad24b7d8d21f74a7764431b38efdb0321ca887f5082dee +size 292942 diff --git a/specs/SAGA PLANETS_Floral Flowlove/spec1.png b/specs/SAGA PLANETS_Floral Flowlove/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4823c041e2c72a519a2512306975e601e47cd43b --- /dev/null +++ b/specs/SAGA PLANETS_Floral Flowlove/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f13bea845c676e44c08df31cb31b2c539d45b089389be07bc75fa7da442529 +size 315490 diff --git a/specs/SAGA PLANETS_Floral Flowlove/spec2.png b/specs/SAGA PLANETS_Floral Flowlove/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..088298200eb4455266a51b84f493d14bc9910e0a --- /dev/null +++ b/specs/SAGA PLANETS_Floral Flowlove/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec563275969bb165f7198f0c0ecedd35a210d20038b23694e44be5a80e071da +size 326225 diff --git a/specs/SAGA PLANETS_Floral Flowlove/spec3.png b/specs/SAGA PLANETS_Floral Flowlove/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..62dbea976dd9c32c0657dba521b7e93731e35155 --- /dev/null +++ b/specs/SAGA PLANETS_Floral Flowlove/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203787833b49f9460a63e84f441d354bad268869f4aad5cfe222a507fd044e66 +size 333146 diff --git a/specs/SAGA PLANETS_Floral Flowlove/spec4.png b/specs/SAGA PLANETS_Floral Flowlove/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bc117c2d90567599471799ee4d152066c1b8e279 --- /dev/null +++ b/specs/SAGA PLANETS_Floral Flowlove/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb8135ff00fa1983eaf67de55f8754350ee948539c9f547dbf2c3b0eac988458 +size 328731 diff --git a/specs/SAGA PLANETS_Floral Flowlove/spec5.png b/specs/SAGA PLANETS_Floral Flowlove/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4ef9751b55764bc7775a33d92e8930245956d831 --- /dev/null +++ b/specs/SAGA PLANETS_Floral Flowlove/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9f848919d8e57d75c3690b2157d628b96a792d8d9d0a5a675bb7e642115baa +size 323628 diff --git a/specs/SAGA PLANETS_Hanasaki Work Spring!/spec1.png b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9d7a9c517bdeaf8a2fc92cb686ebd80882348fbc --- /dev/null +++ b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3173b8b9c1b1ea333a98810a40de42f8b0e090670fb12cd755a63fd4e0a80eda +size 312990 diff --git a/specs/SAGA PLANETS_Hanasaki Work Spring!/spec2.png b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5213175628cb92ee6ead62861b253d1d61f4feff --- /dev/null +++ b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31004313ee5b2b0e833278ca3a883b6d368f90bad82f625af14a109996b73248 +size 304330 diff --git a/specs/SAGA PLANETS_Hanasaki Work Spring!/spec3.png b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e76fa0542fbadcf29ea2c5f20397d97486226b56 --- /dev/null +++ b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61a8856bad8bdbe7b6b93e580194d4fd90b12c6da39d84fe4f74b618d006496 +size 327094 diff --git a/specs/SAGA PLANETS_Hanasaki Work Spring!/spec4.png b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ba2e0da9445a2050c3bd11a4fb7a9d3c58b6d0bb --- /dev/null +++ b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383d52caa046743ad84bce4ad6a1fa439cf29200026f3349255e20e64ff40846 +size 330255 diff --git a/specs/SAGA PLANETS_Hanasaki Work Spring!/spec5.png b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5955223584b35a0dce220bb42d0020e18d915a56 --- /dev/null +++ b/specs/SAGA PLANETS_Hanasaki Work Spring!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa8e8198f57fdff07897bd133e9b75638152e3a1a4e66216ee2c670f8d5ac2c +size 338243 diff --git a/specs/SAGA PLANETS_Hatsuyuki Sakura/spec1.png b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d8247bd63e5da59f7c3e8b4887ea24a913d57273 --- /dev/null +++ b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b21dff781cd973472106175980d6814dd5e047304b5f0b66bd446034ea4690 +size 337757 diff --git a/specs/SAGA PLANETS_Hatsuyuki Sakura/spec2.png b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1b713d875831693c5da4ced188f9f9993a90ff5d --- /dev/null +++ b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7556c59033defbfff3cb832533bf1c6cc15f0d1af7a96a3a29dd9719d622859e +size 318985 diff --git a/specs/SAGA PLANETS_Hatsuyuki Sakura/spec3.png b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..537ddc1fbd017ef9a4a1efa9b76ce68460644a43 --- /dev/null +++ b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5622586afcb07d9218e0c7190e38dca048213edd4aeb32a4dd71e00220957bc +size 333312 diff --git a/specs/SAGA PLANETS_Hatsuyuki Sakura/spec4.png b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..65fd3ede36d59a17ea84d3897f451375176eee81 --- /dev/null +++ b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc06b23f2c1bf7611faeeb1c535560e905e3a63cdfddf78ef635594a564405b0 +size 325662 diff --git a/specs/SAGA PLANETS_Hatsuyuki Sakura/spec5.png b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..856ec510ccaea7656fa35d1b422df082fbdb95ce --- /dev/null +++ b/specs/SAGA PLANETS_Hatsuyuki Sakura/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df59d564dd8ccc79158554adf5266639737750f6633896897f947940eaff0975 +size 342608 diff --git "a/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec1.png" "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..63248d3d9ca203b1352130a7308d7d8c9502fc68 --- /dev/null +++ "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1c1ff8dea2d0d4f241bb190ee70b8ce82623affeff09066b6df4b73d482020 +size 289674 diff --git "a/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec2.png" "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..6205db20f333d86673604540f95eaf59d5ba5ad5 --- /dev/null +++ "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4fc3f2faa2246b2a8a7e5a735362b7e07b69e0f052821fc8950dea95cd2ded +size 267179 diff --git "a/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec3.png" "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..f7a0c1e4b263510c3df001571ec3c0501b2da2ca --- /dev/null +++ "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f8c85cc6c2d7ad693e0ec2964e441de94965ffcfd3a5733d97487334377e23 +size 198078 diff --git "a/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec4.png" "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..bd20c040153ab93528a26fb9129c564b7a5d39f7 --- /dev/null +++ "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3cf4a92746c148c69ed031adb91fd632cb6f95f2e6f194c5678b9e18a53ac0b +size 299737 diff --git "a/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec5.png" "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..ce85de9418936d237eb08a995afdae782f035723 --- /dev/null +++ "b/specs/SAGA PLANETS_Kakenuke\342\230\205Seishun Sparking!/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a51442abc1e3cb353e8cb3991261d167762efee4cf48c715f2363b758e12467 +size 272600 diff --git a/specs/SAGA PLANETS_Karumaruka Circle/spec1.png b/specs/SAGA PLANETS_Karumaruka Circle/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d28fa985f4083f02624ba7ef55762deb8cc065b6 --- /dev/null +++ b/specs/SAGA PLANETS_Karumaruka Circle/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57f80391c4ce1e3b2e507ab4fe9c059ba403dd78dd8b6e13ec11cd8c187b4f6 +size 321083 diff --git a/specs/SAGA PLANETS_Karumaruka Circle/spec2.png b/specs/SAGA PLANETS_Karumaruka Circle/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..60f727afb2f4f1f1915403480bdcda8ad3d3df7d --- /dev/null +++ b/specs/SAGA PLANETS_Karumaruka Circle/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b24a2cf3faa0008c7c8806ac96ef4868f1d2bd04df2d821d4a79459e956befe +size 311168 diff --git a/specs/SAGA PLANETS_Karumaruka Circle/spec3.png b/specs/SAGA PLANETS_Karumaruka Circle/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd9f97edf0703e0b20175e86b84d6f99a8d6f254 --- /dev/null +++ b/specs/SAGA PLANETS_Karumaruka Circle/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1f68b85578c82fb69fe9cc84e683e9d4eb304d03517a89eb9ad64c1a46c74e +size 316583 diff --git a/specs/SAGA PLANETS_Karumaruka Circle/spec4.png b/specs/SAGA PLANETS_Karumaruka Circle/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9bf3ecf2f151340cb073813934fcf57d2b379dd4 --- /dev/null +++ b/specs/SAGA PLANETS_Karumaruka Circle/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79463133d69b59560665169b8d9c40e24faaa4928d0c3949fd782ff6c5619795 +size 312227 diff --git a/specs/SAGA PLANETS_Karumaruka Circle/spec5.png b/specs/SAGA PLANETS_Karumaruka Circle/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a1bfd7d5745bb00858afa87b307268aa40102e46 --- /dev/null +++ b/specs/SAGA PLANETS_Karumaruka Circle/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef55ac556a93887195cd5c29ee86803544883e43d0568114e9da3af4750587a5 +size 317322 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec1.png b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a846de5d08435dd2091ec5717a615c322bec1d4b --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03cdb588c830f19ff1d36786cec041dc2c001d9325f75e725eeadf688f47c52 +size 240607 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec2.png b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b7f906b0471e29c54c9c65128a358619dd70503 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b5e0ec02fa0ef3c1b4bc5456561488dce7c2f55ffaa02bd87636d5f2984d8a +size 271889 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec3.png b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..10baf866f86f0f4cc5d9eb13bf289f9eb1cfd635 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4013d3751703b19bb2f52654bc3a091c03d504c965545bffdc4b8f363199b69 +size 190279 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec4.png b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a0beca491e8402b0500eb10a56898c44f025b088 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e855bf9738d42a681b6ba9aa8559de701c466b42a1922917ec78a65f544829a +size 256804 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec5.png b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..49d5d2098536baedc6e9fd83c5099ee637d6ba85 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche -Golden Time-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d0400ed00d907a75482c0cb87f53423fcffa92ccbf1a8546cbb6d6a76145ac +size 243614 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche/spec1.png b/specs/SAGA PLANETS_Kin'iro Loveriche/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..189c5e8262cf00f9cb13cbc1875f99e321e1c784 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0baef50586df951e29b3ff52883b8533269307febafc7a28dab0ef2d706c54a2 +size 312235 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche/spec2.png b/specs/SAGA PLANETS_Kin'iro Loveriche/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e87c79d70633528d717ddcaa10ad1d15c857445a --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1caed6b96f9fe8dbdc3111d30830e9f53904d46bd763694eb5addf76729c403b +size 314583 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche/spec3.png b/specs/SAGA PLANETS_Kin'iro Loveriche/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..45e4df432adc4f6c5e1f1a809ff7c8da0383c737 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e8d40d4f3bdf79576f8dbfcedc63d80745d70b944c3bbb2fc483799c286c2c +size 335303 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche/spec4.png b/specs/SAGA PLANETS_Kin'iro Loveriche/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ade44344a76db269bcf3d55527d4a861aea4bd11 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746a41b7a32fc73b1c98eb6f95663a931378e40add04ac6caef044f26c2e97f4 +size 319136 diff --git a/specs/SAGA PLANETS_Kin'iro Loveriche/spec5.png b/specs/SAGA PLANETS_Kin'iro Loveriche/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2c18045a7229632748746a4b8adb14d4ad039961 --- /dev/null +++ b/specs/SAGA PLANETS_Kin'iro Loveriche/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d32cb2be91eaa7c5c2a82754a8ec9cea1ccec9b33ebf7128436e65bb05e25b +size 308915 diff --git a/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec1.png b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9980975a625a85f4d86a605bbb5e115f3f3d745b --- /dev/null +++ b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee461ffacb29e0ea843c59aaee9f23c751553d6a78a0cf45f4ea8c8c84c6066b +size 237909 diff --git a/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec2.png b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..49c7cc58ffc5b4c393c57bac7df39d9e5f3466fb --- /dev/null +++ b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96d1405463903d3be2eb9b3393d2cc408e4a6384b6bea14e7056b6f92f89895 +size 299697 diff --git a/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec3.png b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ae764f57b8c0831edc8417d92b5c5ed9b8ea1f55 --- /dev/null +++ b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a7f93621c4b3ab309c88523948b79bedbcb76b20b94b0ae0004ff7759941d1 +size 299909 diff --git a/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec4.png b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..91c34f53833d0646402e7729ff852ab56ef48962 --- /dev/null +++ b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68eca7dc8d85395d159c205d29a0f0acd1e53bde3d34278765de42a90163adce +size 240586 diff --git a/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec5.png b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c087458b14bb65cdb126f52cd5a6b3f5ff85c769 --- /dev/null +++ b/specs/SMEE_DOKA-ICHA!! LOVEPICAL-POPPY!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4357ca5105974c2a61d2b91b754afaa4e4ad77be9c95fa0fcc3318ccba3b888a +size 275613 diff --git a/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec1.png b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..337b831f4f71bb87f20cb23fb7d20f990a4a8bec --- /dev/null +++ b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f931cebddb6e84e0ca824de25b095db9214a7257ecfb94c9fb91777cdc6ca010 +size 293691 diff --git a/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec2.png b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f83577fe3e3621246d1e1916aeb6fc240eeb3269 --- /dev/null +++ b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb77c02e7b4befd1d35c69278d61cb1441525240de12da6edddea6f07ffdce0 +size 319612 diff --git a/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec3.png b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bf4137eabf17ddaaf1a481c9988b49131bb93682 --- /dev/null +++ b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a6481c3a2f1c0b4e3eb216927c39dfa552e3b7606dd9bdb7c4a9b21190cf214 +size 321138 diff --git a/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec4.png b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e339ed7cd1fc2c56b4f27e69bc1ce97c20e2afd --- /dev/null +++ b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f69787e1e2235b1eb73d966b73f8f0f4a567a87025cfff442d92fbe0d88c006 +size 300708 diff --git a/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec5.png b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..14bdba6910432232dc95643fca9495877fe7b801 --- /dev/null +++ b/specs/SMEE_Fureraba ~Friend to Lover~ Mini Fandisk HD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6869c9e43c8d88c63e5e1ffe4c41213e47edf569207c6f652a0669d599f0d93 +size 301254 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec1.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6076a494cc894cbcc2df523638ab399618aead3c --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79485461fa855210b49fc3c95b8f628f3cc160275b869d783e4d850d073c1866 +size 211142 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec2.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fa1d7722db748947282de51ed8eeb369cbd735aa --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e4b33f8ef17dde8607f4d6a4bdca01b2b1a3f5371aaca78c97a87837fe641f +size 281003 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec3.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e039c773bc49e6ff3ebdc9b29d1b2719b4f73088 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0daab228f66462b0227e2ccbfa837eeaf5f23de0aaa8954cab170a4874df98c +size 286113 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec4.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5f86a5a80411e0794ab5584dd7af25dcf3419f6e --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067704b63f704e6dfabbacc54eee85c0b4763da7bb4e153f939405b16100e759 +size 259273 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec5.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6c81d5f87683f4150c3a94ecd77ee4600dcd7453 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.01 Sakurako & Yui Hen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:692a184e54bbd54df008674dc7e1d5ec3811236fa42ed355cb667d2fb5e41ded +size 252082 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec1.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..277a3082e7811f5f5a587d3311464671c0985c6b --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c906008338f78dc2a9a66c50dd5dfd92e257e6e373f2b69a2e31782ef6935f1 +size 265442 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec2.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..68e716be856416a35b804a49c547e7820eabef46 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db93b3b0dbac2471721d482a3e8acb854e2bbe1f3b25fc613765d2d3c1c456fd +size 298799 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec3.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..06f1a66bdfeb0ed00f4121efbce01ee9bd70d053 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ab084d4dced3f8b71efbaa683371fdf7b4b8112ce0b60670030ec63b3d4d46 +size 257391 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec4.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7974412084616368439806fb3f3c69b0df829784 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9284bbea23d9863906863ceb0166d6969a4f81024f6caa739e37935828b53d41 +size 299620 diff --git a/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec5.png b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cb0f3af92714359fa6d3b090651540f69338c651 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers- Mini Fandisk Vol.02 Kouta & Hatsuho Hen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c841baa4145740e590f7c42200beab741f6de2438e7862c43ae940510b4b2e84 +size 260224 diff --git a/specs/SMEE_HajiLove -Making Lovers-/spec1.png b/specs/SMEE_HajiLove -Making Lovers-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8b8e3e96fe53da8bb69d65c3c613ec54dee9cb --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f0f68fc37b8543b7bcb397e3acda96de9ae3b1a449ac972d2606ff0168b543a +size 221911 diff --git a/specs/SMEE_HajiLove -Making Lovers-/spec2.png b/specs/SMEE_HajiLove -Making Lovers-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cba8e1bb02a950c1ea9fbd4d31c64f5ffd05875e --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e82686a33b65bf2cbb880bd832cda7974228a6ba7f072a8a3210b7c4040589e +size 260261 diff --git a/specs/SMEE_HajiLove -Making Lovers-/spec3.png b/specs/SMEE_HajiLove -Making Lovers-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d7c7fc44a47c6b269a8213c75a1267eb80aaa410 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b504469636819c30144ccd55c8d10de39b995efa902922296f29cf8a51d19b29 +size 205011 diff --git a/specs/SMEE_HajiLove -Making Lovers-/spec4.png b/specs/SMEE_HajiLove -Making Lovers-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9da7855a2a87fa299e72b35dc82eac9cc9837bb5 --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a8c234e8f0bf1415542c5572f8440b584ec983dd38f0f774333707b5fefa35 +size 293521 diff --git a/specs/SMEE_HajiLove -Making Lovers-/spec5.png b/specs/SMEE_HajiLove -Making Lovers-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..434262149fe7d0748287fcad651d4029ac65633d --- /dev/null +++ b/specs/SMEE_HajiLove -Making Lovers-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1114e8b56fa801150f9638f27fa2d1730e4736974dd9ecb3a05eb7e0b2942e6 +size 301546 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec1.png b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..143f0424adab26c649b0442e02ac86864ec0857c --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e270545d70883b34644638390ffdd5b93d3ca032518fb830db90beda5a84a4 +size 315517 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec2.png b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..53e592f2adeb04fa2676e372976c229b07deb1b4 --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea92cc84a65a3d739c9565233de7430b16b922b5b37940c55d0c8a84aaf53086 +size 331595 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec3.png b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..143d30e951d4f7725d8b1887a30cb5ae1b2a5cb0 --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744c5efdbf5d9476f62c0875fad788965eea3e4e3f0bb4c70f279ade49eb8d08 +size 309340 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec4.png b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..03ef9d64c0f512418f7f4e21112b3dbc918f7bdf --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a59f345b6bef3fc4966f29168f258e1c20643b022cfe21aad4ef92e028945d +size 335572 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec5.png b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9bfd758056f4966a7dd38c2b86310344d0e98302 --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Charlone & Marrou Hen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d533ac9cce22036cd1ecf6bba2b9c0249ae278993fcc1087cf36d93c601842 +size 319472 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec1.png b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..cd3272f4f78326b83eded4a276e4f8f8ddb6f9ce --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e140159380638015013d1b6c7b176dc297aa7ee2bf51462072921b17a59061e +size 338328 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec2.png b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8d4ccdefbe524498a6884e29ade735a6d34309 --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2079db5fdae7b8159d64f89613c15d10029a686613398c4f6d14648050c101 +size 318347 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec3.png b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6830e095f0d8e2a1eb0dff7d74333526c8a0b2b5 --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0def491a9b02f4f88c97f03bc28ac771f59a586de2621082dda2b11908e685cf +size 322905 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec4.png b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..dd91c746d830d55838851a72468bbce95f2c45e4 --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e675dad9743154349bf86c3c2b92c6b29d772658f85c005991057da37287f21 +size 316583 diff --git a/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec5.png b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..588743d128e3b0de4185682450b67776293ed85a --- /dev/null +++ b/specs/SMEE_Harem ja Nai yo Kingdom - Hikari & Sophia & Kiki Hen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d95e4c0e048e9d7f8765c82f293deed9c623d6151bc1bc860e253fbf78e5054 +size 317913 diff --git a/specs/SMEE_HaremKingdom/spec1.png b/specs/SMEE_HaremKingdom/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..87f81a3ed9537b6831b4699192632321fad71b6b --- /dev/null +++ b/specs/SMEE_HaremKingdom/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae700f5f7215d7c601bc736bee3d979a196c79ffec1c7872581923ea93a31b58 +size 343850 diff --git a/specs/SMEE_HaremKingdom/spec2.png b/specs/SMEE_HaremKingdom/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2dab5ced7b8999cd17c255f8120088b610c48a06 --- /dev/null +++ b/specs/SMEE_HaremKingdom/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a780d1b4233084dd879a5a68037971b539a301b8fec80a68c443819d7fd899 +size 326177 diff --git a/specs/SMEE_HaremKingdom/spec3.png b/specs/SMEE_HaremKingdom/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..99b74102b8798f5280e68033771a326763455d6e --- /dev/null +++ b/specs/SMEE_HaremKingdom/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02512855ffcce514722c23c237dc0e82b90e18599b6546c783cbffff70078433 +size 313518 diff --git a/specs/SMEE_HaremKingdom/spec4.png b/specs/SMEE_HaremKingdom/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4fb3e5129a8cf2d74c5471361967a9085716aa49 --- /dev/null +++ b/specs/SMEE_HaremKingdom/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515d4c06ac0a70487c5b82c0963b44b31cad1fcc18d0a047d9e1477514e48461 +size 328638 diff --git a/specs/SMEE_HaremKingdom/spec5.png b/specs/SMEE_HaremKingdom/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..67467b45cdc2cca22b4aca971fb555fd4804d0c2 --- /dev/null +++ b/specs/SMEE_HaremKingdom/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b34325fce46347217b36aac60ac8ff0317f41c1904217c8adc7f68298c90559 +size 339611 diff --git a/specs/SMEE_Kanojo Step/spec1.png b/specs/SMEE_Kanojo Step/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..18b115048c91803cbe9e392c73862c685c6ff345 --- /dev/null +++ b/specs/SMEE_Kanojo Step/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa4cfdeebbcc3eb79cc3d23adf55651141612f705159ffb1dcb6a83d1253ce6 +size 339442 diff --git a/specs/SMEE_Kanojo Step/spec2.png b/specs/SMEE_Kanojo Step/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ec70f37d13e9fbe1106ac297d3c86efec04b575c --- /dev/null +++ b/specs/SMEE_Kanojo Step/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a800a60412f2a26feea64c35d91eb763d5b4fb88d212fba55165a6f91e8f6a +size 338284 diff --git a/specs/SMEE_Kanojo Step/spec3.png b/specs/SMEE_Kanojo Step/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0f323fb14bf14b30ec37c21be285faec2bf26879 --- /dev/null +++ b/specs/SMEE_Kanojo Step/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b5b0cae7706011ffa887f7015c9b66f8f7f33c7c19acab7abfbed39b5f83564 +size 332551 diff --git a/specs/SMEE_Kanojo Step/spec4.png b/specs/SMEE_Kanojo Step/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1d833c5d2128d4b5d3b382ae19c1a7dc5f39d93b --- /dev/null +++ b/specs/SMEE_Kanojo Step/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb38dbf9862394c0f6fa265a874e98cd82c5c9b3d72437fe2148c0d35e15718 +size 309146 diff --git a/specs/SMEE_Kanojo Step/spec5.png b/specs/SMEE_Kanojo Step/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..875f7c4d4a5caa7b8af645825b11773e7baf5105 --- /dev/null +++ b/specs/SMEE_Kanojo Step/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c14449b1f21f8ae8ce14eb729bc859b94d4f553674ff867fbf897636ff96d4 +size 330292 diff --git a/specs/SMEE_LOVEPICAL-POPPY!/spec1.png b/specs/SMEE_LOVEPICAL-POPPY!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8ae585d63f0e83615eb84a672b93d33782444bd5 --- /dev/null +++ b/specs/SMEE_LOVEPICAL-POPPY!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae1c575987d6f23341bd184e835f43895e76de121457ea66f6665394aef9aba +size 214575 diff --git a/specs/SMEE_LOVEPICAL-POPPY!/spec2.png b/specs/SMEE_LOVEPICAL-POPPY!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5a2d6d4f2b13d678d6869f07c8e266985d9f016c --- /dev/null +++ b/specs/SMEE_LOVEPICAL-POPPY!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710e85e408e6c37a7a1cbb648dff5a4b9b004bf96d5b02146ff4cf793f112473 +size 245407 diff --git a/specs/SMEE_LOVEPICAL-POPPY!/spec3.png b/specs/SMEE_LOVEPICAL-POPPY!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..69ccea40fa35acb95f508fbaedfa75b2dbbad56d --- /dev/null +++ b/specs/SMEE_LOVEPICAL-POPPY!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb3d831eea4140c9e41e575d5ad0175bfe0b6669694b40917c2d84ee7244bf8 +size 235560 diff --git a/specs/SMEE_LOVEPICAL-POPPY!/spec4.png b/specs/SMEE_LOVEPICAL-POPPY!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..29f7e83c8bde3f35c69e2ffe477efdb26af96578 --- /dev/null +++ b/specs/SMEE_LOVEPICAL-POPPY!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8a88aee11af520d0497514072289fd1ed3aad951769d94a6c859c73a5398d1 +size 242046 diff --git a/specs/SMEE_LOVEPICAL-POPPY!/spec5.png b/specs/SMEE_LOVEPICAL-POPPY!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7113cdcd9c6a1362aecd179cd7d0321db53b22ec --- /dev/null +++ b/specs/SMEE_LOVEPICAL-POPPY!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67aaceeac480295f6d62060bdf3ceee9fe404a141d6c47117822ee30e6ca4c90 +size 254484 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec1.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e039c773bc49e6ff3ebdc9b29d1b2719b4f73088 --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0daab228f66462b0227e2ccbfa837eeaf5f23de0aaa8954cab170a4874df98c +size 286113 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec2.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8b54fae35093c4bc8b08a51fe8184a84abb8176e --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f0e0e1e1502c4f9d1d795dc4b9c4267f18b9e8bb6c011e8ab13df954cc5e81 +size 283245 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec3.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2d331710b1916a97e4b357e79805e8a7937fc8ad --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3795a41121a382c3a24dd5de8e5aa01677bc0f0ab9abb2f1794207538f32d1c +size 283981 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec4.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ecbb74b2db61c0d68494ef01ef4b052943ef4dc9 --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dea9da4f5c08d36f6be994595660a2795f0ec1d2a7d7aab9b2cd2af527c4b2e +size 276665 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec5.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e86f878853946ff1d811f68cdb5e7b670d3d37fd --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.01/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6aed194944bd372c464be828165dd2239cb7008a0ae255d468c73a0bb3e9563 +size 253520 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec1.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..be2096efdf135a0e333dae3de1f70414399c7292 --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c2b709f9e5ac675269b1bbca831c60c092b7a8ac49b375543efa9bfb45ddf9 +size 266399 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec2.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c33fd3f721e0504632535e9e5b6d3c142cfda883 --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53933f96577d1bf695404cb94407d198da1ad3ca7917af103ab7ffca30c5932e +size 271233 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec3.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f10db633f821547f2bc1c444f1bc8466267b1049 --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea56db15525326863030d440348e8873d89dde664d1cf3779161fda27cb511b +size 250393 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec4.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..254712b0c6b6171b8a3726749a5b299d0b5ce5c3 --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3563a212b639ff0879d47ea717e377f1bc125412975d27e7e60c06a5072c3a1 +size 279160 diff --git a/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec5.png b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a0c990d39bbac94bbfd4330b311db1074032e28b --- /dev/null +++ b/specs/SMEE_Making Lovers Geki Icha After Story Vol.02/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced4ff804ebde8027e7ae8a002081ca0bc8af29547eb4d744dab92390936a291 +size 210923 diff --git a/specs/SMEE_Making Lovers HD/spec1.png b/specs/SMEE_Making Lovers HD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2d442a93a4d4a63ac984276e39c23ac206f3585b --- /dev/null +++ b/specs/SMEE_Making Lovers HD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868d553cbfb1752bba0f25ebff9db635333082dbeca13d63fae00e9f7de49382 +size 303543 diff --git a/specs/SMEE_Making Lovers HD/spec2.png b/specs/SMEE_Making Lovers HD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..54d66b2e8eb47ba75c420ed92cc1468e9ea5bad7 --- /dev/null +++ b/specs/SMEE_Making Lovers HD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4827b4c3e02fa184bb2457930e84769ce7625349e87e74bc19d49b8c35b1a1cf +size 318106 diff --git a/specs/SMEE_Making Lovers HD/spec3.png b/specs/SMEE_Making Lovers HD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9c4d24e584712237567fa39b8e03bb511ad0b0a4 --- /dev/null +++ b/specs/SMEE_Making Lovers HD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b080f6bdf3e2fabfaa7332d1a16a566d4f907981701da759c4cd3c59348160 +size 314900 diff --git a/specs/SMEE_Making Lovers HD/spec4.png b/specs/SMEE_Making Lovers HD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9caa3bfbb1e55cd781b2bff326e115576a6c675a --- /dev/null +++ b/specs/SMEE_Making Lovers HD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b287fa627bb278ddbc26aa01836b395eb50b778e20ee2fa5f8b277a93474bc +size 324132 diff --git a/specs/SMEE_Making Lovers HD/spec5.png b/specs/SMEE_Making Lovers HD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6bc5101bd8ba78ba3ebdadefe5100c809614a23e --- /dev/null +++ b/specs/SMEE_Making Lovers HD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3d1070a94175490940b37b9fe1c01f7d9173d1f257eb5916c00a8671bb21ad +size 308378 diff --git a/specs/SMEE_Pure x Connect HD/spec1.png b/specs/SMEE_Pure x Connect HD/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d9cd23b5dbba1a8e13888cbf1fc3b432ab08cb9e --- /dev/null +++ b/specs/SMEE_Pure x Connect HD/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20194fb808aa5654bab48910f9b96cf430efc95c0ed223aa9270ff335f18520f +size 306681 diff --git a/specs/SMEE_Pure x Connect HD/spec2.png b/specs/SMEE_Pure x Connect HD/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b11d2b7219d975eab595421e848d6fcef6d5f46e --- /dev/null +++ b/specs/SMEE_Pure x Connect HD/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfe30a25834e76ce9b6619287e42f0e88622faa3ad7dc2b0fa3d5ec06834ee6 +size 256364 diff --git a/specs/SMEE_Pure x Connect HD/spec3.png b/specs/SMEE_Pure x Connect HD/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4727b52d2d4d9b6a136c299c1028e2c752ac87a1 --- /dev/null +++ b/specs/SMEE_Pure x Connect HD/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298bfd5c52f4117cd6d54ec7571855b7bd9d27335657eedd59c79df41a98a83a +size 306931 diff --git a/specs/SMEE_Pure x Connect HD/spec4.png b/specs/SMEE_Pure x Connect HD/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0c911a1a955e859cbf2d7a80f588ce0bc145d924 --- /dev/null +++ b/specs/SMEE_Pure x Connect HD/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d233339c81e7e4866a08229d3464070a0abfef4520c7c4ce3e449688311e90 +size 322962 diff --git a/specs/SMEE_Pure x Connect HD/spec5.png b/specs/SMEE_Pure x Connect HD/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..47a9bc306d2db1c76c7d35c441e8e3fad5a93d02 --- /dev/null +++ b/specs/SMEE_Pure x Connect HD/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36cb92dd8be4b855f6fd03d963715840bffbdf86d5272f901d471d8fad74971 +size 308792 diff --git a/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec1.png b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..885245614e2613e0898bf030b85307980fbefcc6 --- /dev/null +++ b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5630998df14ed2c19f097324f94b071157d09a303710fe19949951dbf4fb563 +size 325432 diff --git a/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec2.png b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4128081107b34c8df161cb1dd3b1f23c666371d3 --- /dev/null +++ b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d63175a3f58ad047f729f8670b9d46b0700a62c7761d145adacd0238b5b25e +size 324815 diff --git a/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec3.png b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e7172bbb0f94aeb29b33f7d273752f5323d28acc --- /dev/null +++ b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d93a6fd0606864ef1c3d4a0421e14c0cd433dbdfc8058f69c57a0751ae818455 +size 333167 diff --git a/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec4.png b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2c48fb6b8805bb35b4ed813643c203f30cbb9738 --- /dev/null +++ b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8734abaa85f6ec8f90a14bb6c47657ed1445b2366d0d7d32bf86d44226031604 +size 315480 diff --git a/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec5.png b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3122de72b40fa42cdb76ad1e0dd4295df78bfb04 --- /dev/null +++ b/specs/SMEE_Sugar Style Koibito Ijou Fuufu Miman After Story!!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2188220d2b8ca7430e863ca30b5e01417d89264941bfd7c6d0d97fd21cdce12b +size 325450 diff --git a/specs/SMEE_Sugar Style/spec1.png b/specs/SMEE_Sugar Style/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f0e46b655cd7f573045bccb4686ead6c68bc5628 --- /dev/null +++ b/specs/SMEE_Sugar Style/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4568432d77d5079c5c4c1af4969f351b10a1d1457be9076945c5f2e1bcaf82f9 +size 320847 diff --git a/specs/SMEE_Sugar Style/spec2.png b/specs/SMEE_Sugar Style/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..61ebb76a29041a95e0311dc2fc658aee0b3b4129 --- /dev/null +++ b/specs/SMEE_Sugar Style/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66acc52c332e5bcb926e9b6e14a0a29c85fc80ea227c67dbb79f51e59f627a6 +size 346283 diff --git a/specs/SMEE_Sugar Style/spec3.png b/specs/SMEE_Sugar Style/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d83e4b0cac97c007f3e798b9a6752e75c84f6d1c --- /dev/null +++ b/specs/SMEE_Sugar Style/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a364abf36ad9cf55b9129c05d41de2dea68056ade5b7e8911e7bc70b86ac26 +size 349887 diff --git a/specs/SMEE_Sugar Style/spec4.png b/specs/SMEE_Sugar Style/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2884218364b00484d95d57609dd55845d3e816db --- /dev/null +++ b/specs/SMEE_Sugar Style/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a26fff0ff25db9d0b4466138113d1f64833978e5d50d8b5ee6fa951ffa182c +size 337506 diff --git a/specs/SMEE_Sugar Style/spec5.png b/specs/SMEE_Sugar Style/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..baacee37d86389e7e34cfe836333d4d1eb6d8ea5 --- /dev/null +++ b/specs/SMEE_Sugar Style/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f904ff6149d0c1dc715dd4e32b8eec266e756d630adc1b166c8cb35762c22d5 +size 319317 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec1.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..54e2619cd7d20b43bbbcab5ed9d4ca123212c7bd --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c556c369d5d233da877abb7782030d88a983091baf276568b3ea3ccb204a7c +size 325829 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec2.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..334fbc8872e9130c08bb43f6480f4da90d2b3b1e --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b4b5e85b10070bc2312d2ea32bac8bdde25f390ec59d1573aee5177ff2a267 +size 304936 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec3.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..813389453e97492e4ec99eaeb6fc5eb45940b6c8 --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03814c61c0c15507786edb3768ba605c1985457ce35e7472e756a1608ea2f78e +size 333522 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec4.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..863fad261bcbc91382c83b13320ae53fcf6c45e0 --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd0c8a049dfecf18dd92ab5ba896d852860526e091b5b2cc3aef59211a98cb4 +size 331084 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec5.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..9e4ea331bba19d60976d3a9618197a2c62afe006 --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263 Mini Fandisc/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c076ca8d27aec5617258eea8f70bae206eb91c49d748f524f1012597c04e364d +size 323985 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec1.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..0c78ce9c5bb5c274b45efbcfe7c9370bfb8fc91a --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03434eb820e0eac1b4380c476ef15bf1e5f75e8bcf51e02c6eff35ed19fa76b8 +size 283582 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec2.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..c9c03ae0ffc0f3207550b800687b285baec39bcb --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1db319607c97c2fd26d1a6bc7058157c625cd32849588a8fc8ccd7e7ef14fa +size 297503 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec3.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..60fc1f4a9ea338e3c4d66265932aff54d48099f2 --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe84dc847fc3572480cb5587a22e94d5926385b6986a9e6b9f7b62c9c31bf88 +size 272615 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec4.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..5af65347c1723f48e874848403157bf296cd9e66 --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d09fca2418396ddc717b60f4cd74bf0670d15fa1c898853c6cb00ca6d8038f +size 256630 diff --git "a/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec5.png" "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..35b97d459ffcb26455e781e9ea18e031016811c1 --- /dev/null +++ "b/specs/SMEE_\357\274\221\357\274\217\357\274\221\345\275\274\346\260\217\345\275\274\345\245\263/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d1010df5414d959bbd2f64216f01ac4baf0287a15f8f290053b60bdcf9d860 +size 278257 diff --git a/specs/Sky Rocket_Koinoha -Koi no Share House-/spec1.png b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c8b8f9f421077ca33c80dd5f3fbeca86881bb57c --- /dev/null +++ b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf56858a78b2582846d4acc668e9cc4e66bc2fc377121f83356b58491b27cff +size 273789 diff --git a/specs/Sky Rocket_Koinoha -Koi no Share House-/spec2.png b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b103387ceb1ac20291d1a8bb2af7ee76247ddd28 --- /dev/null +++ b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72206954a4cbcf98bb04449daaf4027791b1085187fc1d9a0a75f1c442cb53c +size 257349 diff --git a/specs/Sky Rocket_Koinoha -Koi no Share House-/spec3.png b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4acef2c415060d31df20d78d86ae119298947075 --- /dev/null +++ b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa0242d74b9ebbb65cbd734b66d4b1cab2673131ecaa1aee84b9d3ec5efb06c +size 236345 diff --git a/specs/Sky Rocket_Koinoha -Koi no Share House-/spec4.png b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1e3fe15ea32d379e521988dcd6405753b82eeaa7 --- /dev/null +++ b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b2585d7b2cb08f6139eb74a058de2ba1fd344e74c81eb5efe79552d2bb06ea +size 268613 diff --git a/specs/Sky Rocket_Koinoha -Koi no Share House-/spec5.png b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4f8257e39e3f066d48f7d020291d0a63ba3057 --- /dev/null +++ b/specs/Sky Rocket_Koinoha -Koi no Share House-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea557703c328371ea959dba8bdbf11212731f49a280a7790ddd59085ccf8634 +size 298586 diff --git a/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec1.png b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..82f18c00d52318eae4ef81fb68d6483eb6641457 --- /dev/null +++ b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ddfc5a6eb1ecf2f0076c549bea556e1839e2ce7cb537d9cd9ffd2377acdc8cc +size 281316 diff --git a/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec2.png b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..46d915cc302096e8cc6f2b7af68472a010ae4f4f --- /dev/null +++ b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a015f0d8acaa3a00da8fcd28fed343b9553b2736f841334a33137eef9ef7e55 +size 294438 diff --git a/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec3.png b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..65a25a08c0c465a491bc664317ce725a3b774dbf --- /dev/null +++ b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f0a624967d85154b3541bfbdc499b86fdfe186d40229270ea66ccd35acf37f +size 300843 diff --git a/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec4.png b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..55115e36c9aa4bfa405f4ca4389b173129cc01a1 --- /dev/null +++ b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542b2f6c958724b3d4a32febeb98ec630519ee70c27d7341245ff87940de12e5 +size 258043 diff --git a/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec5.png b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..48b2f078b6f97fac68a12774b8338377b8027c65 --- /dev/null +++ b/specs/Sonora_Boku no Mirai wa, Koi to Kakin to. ~Charge To The Future~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017f2bf350bd9726f1144918b7583ae5b82edd7c3124e7c361be66aa5072fe4a +size 285650 diff --git a/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec1.png b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4583026d5307a860adeb95073aa1428ace513ec8 --- /dev/null +++ b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec33e4433f0fec2eac0fdfc910b71e941afda13f49678dc7d5d669da680aea7b +size 282297 diff --git a/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec2.png b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..029d1a53eaa5e0fec6629d9781c23699a15a2e1e --- /dev/null +++ b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9812db13dcdaedcaf692c2d7db111786b7eb2f2b3ee318fc8e60368b115ef347 +size 270711 diff --git a/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec3.png b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f32b4f4fac28eecda04bdd8e1b26cce380a10068 --- /dev/null +++ b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e76346393cf2a30a05501e5d3b595d135215b03e857e74d1ec4e4de47eb3b5 +size 285576 diff --git a/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec4.png b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6378b2f2840c679f29c3a3e21c7a5761458696 --- /dev/null +++ b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea561412a1c356dfa771bd34a526a026ebd6e2e5ccab22194c6c2c2aba2cefa8 +size 281656 diff --git a/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec5.png b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..de419824705bcc5ee01bc4e1ca9d5dfe52ec9c65 --- /dev/null +++ b/specs/Sonora_Hibikino-san-chi wa Eroge-ya-san!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5307fe7aa088f838a0d31b7972811ceef3ef22faee4a2799dd9ef1474e5661 +size 255429 diff --git a/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec1.png b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..46947fa10b780711acbbeae7c7c6b58ebccbc160 --- /dev/null +++ b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a95340cbce70f1056986863a5ef2fcf3f760fc7ed19eda97e6b25cb7f72890 +size 242514 diff --git a/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec2.png b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ccd87899e0f39d59e83466cda6670f3cbfa7ab4f --- /dev/null +++ b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe354e737ea70be852170024c4bbc02a5cc26f1d3d0e767ce0fb614b270c409 +size 241053 diff --git a/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec3.png b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0b634fdd5c8ceaf76a2ffca716d20288c91ba5cf --- /dev/null +++ b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd9e4146e1c098ca99cf84602246b2abc116fb5c7fd88c30b3896c1a2138c5c +size 321757 diff --git a/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec4.png b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e9cf3f9171048cee56a2437123c0ea43cf81cc20 --- /dev/null +++ b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf7871389422ed491844227dc3d18e7f4137052b2dbb9d5eedbe1497e1781cd +size 322243 diff --git a/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec5.png b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..60f2f7a2c68bf67e9f7ea95407a9b0088b5d8d3f --- /dev/null +++ b/specs/Sonora_Onaji Class no Idol-san. Around me is full by a celebrity/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ca984ee4e8e342f38658e9128a19eb4b7edbff775f1f13c68c4418d8fe15af +size 295436 diff --git a/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec1.png b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..abc8c18ffda1193f386c545565bf07de7aee6594 --- /dev/null +++ b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0bb1f987b7a941022a7f83e8e82b308063446e9723605164fe3aabb1fb3245a +size 296224 diff --git a/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec2.png b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..180d908e93808ced31e28f875dc768fb0519c23c --- /dev/null +++ b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64ddf2fe1993ea3f9eec4bb48ff97f58a65c33f66bda8604e38acd91fd871a +size 215103 diff --git a/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec3.png b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c278a6d9dcc7025322599bcfbe8ae01df5745a --- /dev/null +++ b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc01fcc34544d308772c2721886fbf62bd3a31248748e3940818a56383cf585 +size 324688 diff --git a/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec4.png b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a5a54dee9e3979f1282a48f8d19c7fe69bb8156 --- /dev/null +++ b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3484f6462900573e825bfb4ec17e20624ca49120fbf48ce176d8ffeae0e49f0a +size 293416 diff --git a/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec5.png b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2cd33489ec8c6be3542043a8e0fe6ee1b176b5b8 --- /dev/null +++ b/specs/Sonora_Uchi wa Mou, Enki Dekinai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56e479e0a52a0fff4bb17aee8f2726fea8fed98a8b5370fbaa4a8286de540a7 +size 298369 diff --git a/specs/Sphere_Berry's/spec1.png b/specs/Sphere_Berry's/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..00db90c86aa56eade4150760765f24fd507646ac --- /dev/null +++ b/specs/Sphere_Berry's/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b988ef822b64f550dd779e46b7ceab1baf32111ffb75568cae5f4ea294f83c +size 257614 diff --git a/specs/Sphere_Berry's/spec2.png b/specs/Sphere_Berry's/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..31fce5fe2755a9c65d24a02227a8bae018482b3a --- /dev/null +++ b/specs/Sphere_Berry's/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978e5640753ff3b7bb12dc0775e5062545a9c16d2f935b0645a5b8d137c54bed +size 266422 diff --git a/specs/Sphere_Berry's/spec3.png b/specs/Sphere_Berry's/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1ab229c32026c6a3def9f8c0788d822ac3c76560 --- /dev/null +++ b/specs/Sphere_Berry's/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8e0300e135e249e75fa48d307dd67b3e5f94fb29f07642f240367e3fc3d116 +size 193289 diff --git a/specs/Sphere_Berry's/spec4.png b/specs/Sphere_Berry's/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ba4a89c22b3edb69b587e650c905719d02df73ea --- /dev/null +++ b/specs/Sphere_Berry's/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fb7f69e0a0251767f85131d83a9190562167d354d7820863197ce18b4e2210 +size 313805 diff --git a/specs/Sphere_Berry's/spec5.png b/specs/Sphere_Berry's/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b5ac3cdfaed263eb171ac66a9d92c5b810780373 --- /dev/null +++ b/specs/Sphere_Berry's/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f411fb327426e21b960291127cfacf3323c753a4775042b74bd71cc2fe5ef3 +size 302178 diff --git a/specs/Sphere_Haruka na Sora/spec1.png b/specs/Sphere_Haruka na Sora/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..162f342a9ccb0e036d2d58de548185c591b9c24d --- /dev/null +++ b/specs/Sphere_Haruka na Sora/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448762b6da895ab20bb7d9813e7591e423b4334f6755ff5b79c9a13612a54709 +size 317341 diff --git a/specs/Sphere_Haruka na Sora/spec2.png b/specs/Sphere_Haruka na Sora/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d62d45260eb9b12192dde606710cd762544fedec --- /dev/null +++ b/specs/Sphere_Haruka na Sora/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54c16e23897386a6fe911f1ff04722913503c05229327645f0faaa809925c94 +size 279120 diff --git a/specs/Sphere_Haruka na Sora/spec3.png b/specs/Sphere_Haruka na Sora/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a5f784b2defb5517479690cbffd8ce2be0d40f36 --- /dev/null +++ b/specs/Sphere_Haruka na Sora/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3606ea6c75a6a362f8d8453a15d3681f27253eabd67693f1015d9d02d6661646 +size 299689 diff --git a/specs/Sphere_Haruka na Sora/spec4.png b/specs/Sphere_Haruka na Sora/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..efb613fd59f34f1866935f7ae615418337a81794 --- /dev/null +++ b/specs/Sphere_Haruka na Sora/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93cb92d2c68d70fab96544d0b9972ff0500ce2d70a299a9f19f7313103d51f4 +size 332144 diff --git a/specs/Sphere_Haruka na Sora/spec5.png b/specs/Sphere_Haruka na Sora/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9da7648ce03bcc530f5d14d8ccec49ead98ed6f6 --- /dev/null +++ b/specs/Sphere_Haruka na Sora/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4f37498a5a83cc1a550500caef373cb6010af91900da0c7f994668dcccf969 +size 315830 diff --git a/specs/Sphere_Imouto no Katachi/spec1.png b/specs/Sphere_Imouto no Katachi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2927ebc870811b0eded981dd8da5409fa8bbcb1f --- /dev/null +++ b/specs/Sphere_Imouto no Katachi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90afea434ff3c98787730811b0366e11696ed26dd5c7fc77c9663a8e3c3eafd +size 285423 diff --git a/specs/Sphere_Imouto no Katachi/spec2.png b/specs/Sphere_Imouto no Katachi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7d57f81bddc7670718842566ec2b6e6a825c13 --- /dev/null +++ b/specs/Sphere_Imouto no Katachi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a5d86e07d92388c7862ec3754200aec77328cc400ceeea74114ed334118ccf +size 291796 diff --git a/specs/Sphere_Imouto no Katachi/spec3.png b/specs/Sphere_Imouto no Katachi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d4d24241fdcb12eff6f1dd66026bafd6944cd4b8 --- /dev/null +++ b/specs/Sphere_Imouto no Katachi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e932653c4f6df83a275df571f129857600f6eb31bf12dc0035c1c98cd8300b +size 276520 diff --git a/specs/Sphere_Imouto no Katachi/spec4.png b/specs/Sphere_Imouto no Katachi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ce5ce7ed48c06fe17e33cbb88e1a96b4ee5c9dac --- /dev/null +++ b/specs/Sphere_Imouto no Katachi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32b649bb77643f502165ce830a2c06ca929912811e1d88e73821f7c96075928 +size 284008 diff --git a/specs/Sphere_Imouto no Katachi/spec5.png b/specs/Sphere_Imouto no Katachi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c6efaa440b200b81fdc80f622542ca3ce6e383b2 --- /dev/null +++ b/specs/Sphere_Imouto no Katachi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1c395cdcb9737463ae2896509bec4f9dd8843ef6f4f17d00b374c2009ea601 +size 299022 diff --git a/specs/Sphere_Yosuga no Sora/spec1.png b/specs/Sphere_Yosuga no Sora/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f53352b831822b25b73f15c42c0ca0581cbb7571 --- /dev/null +++ b/specs/Sphere_Yosuga no Sora/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5c7ce48f6db30f7af184b9ca41535da82df2be98ec0bff026d294830c37f02 +size 333678 diff --git a/specs/Sphere_Yosuga no Sora/spec2.png b/specs/Sphere_Yosuga no Sora/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c0942b1c4aa53ae9b482c84a5080532c1183c9c3 --- /dev/null +++ b/specs/Sphere_Yosuga no Sora/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf3ee2a8d8dbb76eea95c7ab1341a26d55a91abec9fc98a9d51d06eb464e94d1 +size 324171 diff --git a/specs/Sphere_Yosuga no Sora/spec3.png b/specs/Sphere_Yosuga no Sora/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..07d1086bdff32991d2bb3575dc20053311ce766a --- /dev/null +++ b/specs/Sphere_Yosuga no Sora/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccdc31d9fbcb67f04f23e8d375e79490790379378ec3307bac90819431a28f58 +size 322877 diff --git a/specs/Sphere_Yosuga no Sora/spec4.png b/specs/Sphere_Yosuga no Sora/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..43413939be91122335c7f84aed59f1a979bfc3c8 --- /dev/null +++ b/specs/Sphere_Yosuga no Sora/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9619c9978c5c2edea0f07e349cd0d5d815bc41a939440bc093137d081dedbe1 +size 317961 diff --git a/specs/Sphere_Yosuga no Sora/spec5.png b/specs/Sphere_Yosuga no Sora/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a80ec2a166eec2ac6465b2000fe6f09822dc268f --- /dev/null +++ b/specs/Sphere_Yosuga no Sora/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17122b992963e188a7dea411eb65432f8879c44e7dbd7ae312666d5e92079c49 +size 325006 diff --git a/specs/Studio e.go!_Izumo 4/spec1.png b/specs/Studio e.go!_Izumo 4/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..df4270fcad744c936c07002480a6f8b9b102412e --- /dev/null +++ b/specs/Studio e.go!_Izumo 4/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee2065422d17cb48608f9c949f05347c8466a7bf482a6ef0cf7f5aad73b27cdf +size 328034 diff --git a/specs/Studio e.go!_Izumo 4/spec2.png b/specs/Studio e.go!_Izumo 4/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b6434ebd320fd6f0230934528450b40c2ffe4f0f --- /dev/null +++ b/specs/Studio e.go!_Izumo 4/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9676bc5795def6fc2373429d60fc112ac13d829209677c4f496e359c8aac9772 +size 335740 diff --git a/specs/Studio e.go!_Izumo 4/spec3.png b/specs/Studio e.go!_Izumo 4/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3b3ba14e9865b61e49d500229515d168be3f62c6 --- /dev/null +++ b/specs/Studio e.go!_Izumo 4/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81aa96573b5e3e24bd4368ce082698a864c85f3e7ba914ce6067468a67b5db33 +size 314563 diff --git a/specs/Studio e.go!_Izumo 4/spec4.png b/specs/Studio e.go!_Izumo 4/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9eaa8a3010e7e9d52ba2302c29c6725f2fa50233 --- /dev/null +++ b/specs/Studio e.go!_Izumo 4/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed955b74990696cd8fdf495eee7c145e34d94fb194c8177d6d5ce38c02f6745 +size 320765 diff --git a/specs/Studio e.go!_Izumo 4/spec5.png b/specs/Studio e.go!_Izumo 4/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c2597f1efc6403b8418f644a6baefafe9aaca0f8 --- /dev/null +++ b/specs/Studio e.go!_Izumo 4/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9429b9fc0284750d7ce34674dd8cd9a2feaac292fad18154b43272fbc72b6b14 +size 333987 diff --git a/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec1.png b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6222c384f7928e3e5fa1ae4bf9659a6d772c291b --- /dev/null +++ b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b1b11575f6b71326c4c9e2d5c343863d98b7db18c1ed9979110fd5466e0ae5 +size 281110 diff --git a/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec2.png b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..376c1389e0cabb2a6410c60b43de2ec8551f6fff --- /dev/null +++ b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6cf0d4f862729e5665aa13d2c71ba571e3501044381117596c76ebfb5bee80 +size 296838 diff --git a/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec3.png b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7f4a273e98c4630733ff6e9b62ab9648209e529d --- /dev/null +++ b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a087001322724dcfad4cd984cf1a35105b0cb28a0c10bef9bebcd92644f19dec +size 287949 diff --git a/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec4.png b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0e99cc819b8454521c8351b6622dd9dacf241b37 --- /dev/null +++ b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfec53a16e22eef37046a61b8d3651f4f9b94e411fc761daf1bf50540ec8c273 +size 283331 diff --git a/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec5.png b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9eea16bfb50a9e5e7eb8d800ea6483f4cd226a51 --- /dev/null +++ b/specs/Studio e.go!_Meguru Sekai de Towanaru Chikai o!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1681679bc7fa2bcc79147ac0e8c71c0de78bbe60d6c9452a1b44349ca63ae85a +size 282320 diff --git a/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec1.png b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e02a9bdc7a8122d89fdd0817cbfceebac38eb6ed --- /dev/null +++ b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbc56bd45c7e0606497db1fe0b07b682f2bd006729344217e15c891943d5ca3 +size 290388 diff --git a/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec2.png b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e32abccb7c3e4ccd0ad929fee5d8047837f8a0b3 --- /dev/null +++ b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1badcd462ebac777c0cbfbc4a4ff93ea14f481e20dbf271e701ffaea7ff4d972 +size 305127 diff --git a/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec3.png b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..165570dc8720801152b07cd0ea938413830450b6 --- /dev/null +++ b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96b3621738db729f382f744581a15d6599d4b06ee7363184d924648fe0fffb3 +size 319581 diff --git a/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec4.png b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..70901ef86bfa7c125f5b3cebea9924c81cb8b6fb --- /dev/null +++ b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe891f94fa862612eb1d04e529af537b6d7d18ec5038bdae31d32edb8aba10c +size 309701 diff --git a/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec5.png b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6062b2ba07b7bffc3f01a159d035b05fc5d8085c --- /dev/null +++ b/specs/SukeraSomero_LipTrip ~My Boss Is My Heat Suppressant/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fca6dfd691aafb6485e3273e7bd7a039cbb8fe69524367b52bf94a51eadcc5a +size 307972 diff --git a/specs/Sumikko Soft_Akiyume Kukuru/spec1.png b/specs/Sumikko Soft_Akiyume Kukuru/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..66a921431f9e5e24f9bb966c0411d08c14213b63 --- /dev/null +++ b/specs/Sumikko Soft_Akiyume Kukuru/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9dc7c91318a43534bfb307e1b39fc2a821688a8d96fab2c94539208a3823ed +size 348948 diff --git a/specs/Sumikko Soft_Akiyume Kukuru/spec2.png b/specs/Sumikko Soft_Akiyume Kukuru/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..48b93a8340b7c291d771a0fea720708dbd868dc0 --- /dev/null +++ b/specs/Sumikko Soft_Akiyume Kukuru/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f880de9690bbbba905a5fca619bfbfdd738d4819729c759fac442ed0aa07d0 +size 339192 diff --git a/specs/Sumikko Soft_Akiyume Kukuru/spec3.png b/specs/Sumikko Soft_Akiyume Kukuru/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..20a9a49960fc74d32f46a9e4f2fd6c0a0dfac0c6 --- /dev/null +++ b/specs/Sumikko Soft_Akiyume Kukuru/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6243b65038146d2d28f9cbfba504985c90387eb514c3eaa75659be020f3e4eea +size 341690 diff --git a/specs/Sumikko Soft_Akiyume Kukuru/spec4.png b/specs/Sumikko Soft_Akiyume Kukuru/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2329b1a670ca1a8ae70ef80806d88d22c261116a --- /dev/null +++ b/specs/Sumikko Soft_Akiyume Kukuru/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3fe7ff0007e410c6dc5d6380631c1597844daefff92a38e1ec4f13842f084d6 +size 326602 diff --git a/specs/Sumikko Soft_Akiyume Kukuru/spec5.png b/specs/Sumikko Soft_Akiyume Kukuru/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a14b259b78033e44a0a3653ebd2a949a44b80174 --- /dev/null +++ b/specs/Sumikko Soft_Akiyume Kukuru/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a2f60ae20019a5f0c282b0f80bc945e9ee0cc5cb47c941b038ff78997fc9c0 +size 339394 diff --git a/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec1.png b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bfe18c4ebcd85708ed033b8f8da0c90c4894c163 --- /dev/null +++ b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9f8c2c1bac31bdf14285af2a45bb13d302d4bd6c29fc7781245b64185e93bb +size 314864 diff --git a/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec2.png b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0f8b24e14dd290edbbc59c0812b048e48c768339 --- /dev/null +++ b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b6fdf8c4f855ceccdcffd461cafbf86e1ec28a9c38fea9cf99268f115543e6 +size 272212 diff --git a/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec3.png b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..db0cf0307cf0fd5950255ccbe3559d682f11c8ba --- /dev/null +++ b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66a35b4a1493ccec544fbe37a95825ec68f7ba7e46d2e318f268fafbe2a56f0 +size 286010 diff --git a/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec4.png b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..57bc7c7f4833b85ba0956848757d26670d131544 --- /dev/null +++ b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ca9ca53afe1cc22522c034bef84bbde2bf9ba73a9eb4c8fe767af0ffdfe627 +size 294211 diff --git a/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec5.png b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..f57ccbc7b9f6a01916768b42b7c26c32592abf4e --- /dev/null +++ b/specs/Sweet & Tea_Karenai Sekai to Owaru Hana/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c24baa3d9faea1946f678fac8b23bbf0c0ac38bb09e30a09ac6252f607e466 +size 367584 diff --git a/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec1.png b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9266d603ccc0ce00e7fc98dc13af1adc97e854 --- /dev/null +++ b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432f4c4ef82193cb3c07c2cab361e968459f0850c34042d4f76b2bc675835041 +size 326726 diff --git a/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec2.png b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6bc54fbc2da57d8b4d9587058c7c4d2a916ff5 --- /dev/null +++ b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0708bb4f85ec78ff113087239bbae55d32b5b2821512bc987129be801e7ccb +size 345586 diff --git a/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec3.png b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f366a04ff793ece352fc3cddfa6de5c9eab14971 --- /dev/null +++ b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54952614a8151b1fc6c787e3206ed0f077c962bce0b522f52351c5ca236f7f3c +size 351742 diff --git a/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec4.png b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9fc3bf219688e574cb8135e12f86a4fc4614c607 --- /dev/null +++ b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a2151d86d1bdd20bf5299d3c99e056b90b79e43f08c0671b419587ba3b3acf +size 350911 diff --git a/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec5.png b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..93b5b136c1ed1782a5b8a48d8139ce7595b487d2 --- /dev/null +++ b/specs/Sweet & Tea_Kemono Musume no Sodatekata/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9b3bb9abc499c633f36d013c2b9780e4f97d5d1ed5b337312631d359327e80 +size 345459 diff --git a/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec1.png b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fe90ac2c8f889810b671dafca0ccc4588457a637 --- /dev/null +++ b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdafd1ef7e0cc44e3c86275db589133dff89419bcdf8a9050b2dc1621140b9a +size 346927 diff --git a/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec2.png b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..041e3e254175271c6128437d4eedba9e3fdab686 --- /dev/null +++ b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e2cef9f834c7cd920182081e6e72a5cc0863ec2d5189148f464862ed68e8fc +size 341753 diff --git a/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec3.png b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..46638945e218fd2ad985409739cfb8e8f2d2f062 --- /dev/null +++ b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d88f76000e4bae78a0fbe482dea163b669229b7e1c9d4336da84c69d155904 +size 210111 diff --git a/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec4.png b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6aa510ad607ae11a433d281b5fea27853735b8f0 --- /dev/null +++ b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3050081e8f1cc01357297b85fa0b1959adfefad3200b189bbbd81244f643268 +size 334232 diff --git a/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec5.png b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..480bf4cd77ebdfef5fadaf19a11b5e23bc86c044 --- /dev/null +++ b/specs/Team AIGIS_Koisuru Otome to Shugo no Tate - Reboot The SHIELD-9/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903e6479251949fe83e738e1990d5b19355cb8db585803f0b65c19ce728b6b60 +size 345169 diff --git a/specs/Tily_Ano Hi no Kimi o Furimukasete/spec1.png b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6710ccb22b1838a3fb2b0db40657dee227bd8459 --- /dev/null +++ b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d117a808152912e1ab556744b7525ecb0716619a44612ad4952555bd974885 +size 296571 diff --git a/specs/Tily_Ano Hi no Kimi o Furimukasete/spec2.png b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cb33da9c4a501d99534ed63d5f0d411b84852056 --- /dev/null +++ b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c6990ee80cca45691c6ea26d7a0042b4564049a17c1931b43d171d5b6e1380 +size 244718 diff --git a/specs/Tily_Ano Hi no Kimi o Furimukasete/spec3.png b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a90a3b4b4bb351257dd0146b3f1ec91ce3754fe1 --- /dev/null +++ b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de08fb0ea9082fd2ee891be8543e0ed6fa9b14982c1dafbb259fcc6f4692cd67 +size 300408 diff --git a/specs/Tily_Ano Hi no Kimi o Furimukasete/spec4.png b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..be6034aaac1656acb720fc45c8648f4064aa8575 --- /dev/null +++ b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5968a4293ec4549dbac6fbeb96df2eac95df68da6fad5a7d2d51e4f3444f8b59 +size 302581 diff --git a/specs/Tily_Ano Hi no Kimi o Furimukasete/spec5.png b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4e2c55ec62c58d85e82edfe697f2a36a084cc713 --- /dev/null +++ b/specs/Tily_Ano Hi no Kimi o Furimukasete/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e0ca558103084be46e280f273aa935384e09c601c3579c4cae6cba6dfabdf0 +size 291047 diff --git a/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec1.png b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f8161dee2e2463fac503bbdd36e7708c91658e9e --- /dev/null +++ b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f2bbbbc9ed482259ba51ab650dd93627b812aa23e4c643b50b1c9c0e71ce2d +size 335393 diff --git a/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec2.png b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a6214db0b5de44f8a12af89633f6555e92b0fc48 --- /dev/null +++ b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4bfc1514f51d79500f8e607b494dae2d4fccecf43801207f75506db5d6054f5 +size 333295 diff --git a/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec3.png b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8eb4e558115461a4ca35822a5ecfc3102e749976 --- /dev/null +++ b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e85df1666c96aa701322ec3b8c9757d38ff984f3d99df75bb451c6ad92b11fd8 +size 342679 diff --git a/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec4.png b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..0b6f77ead7b63452f142c84615d0e57a1f5f625f --- /dev/null +++ b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab06332f76ff8ab89c8d56d65c740e50cd1ec3217f2ed07f2005235c20714eb +size 329221 diff --git a/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec5.png b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0a2595f85ec92da7a3db63051733b481cff0665c --- /dev/null +++ b/specs/Tinkle Position_Onii-chan, Asa made Zutto Gyutte Shite! Yoru Made Motto Ecchi Shite!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c82f2d0da5cebed26352d6d87c09fd710709c1959fbe07e651fc382b5c5670 +size 279590 diff --git a/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec1.png b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2cce5138ed7d04b0ae5a8a7c4e0be3ca24943631 --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbdce57a3737aa2fce887e1cdb252b678ace2fd3b2f02bd82b9d32814da66ad7 +size 271707 diff --git a/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec2.png b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b71e36ddcb8a089622464c0e3018c9af92a387ee --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10777eff1e02ffc0c606e766b262e2699bfc586a33cba908c574fa534999f81 +size 234350 diff --git a/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec3.png b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..daf69627af4b92efb7ae259526c49e816fb271fd --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef88f35025013f02cf9d6bb2c4815a12b7637fd1d2ee15cc5627ec53d0297ca9 +size 271150 diff --git a/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec4.png b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..271f799298536502e38710e22db4e93e4a47510b --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1520d347894ff4f67b7d7cff42b8f9a4702fc462ead8b04f75722c74437268 +size 218548 diff --git a/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec5.png b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e38ce4352eb56cd663663036316b05d0603fb53e --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Kinuori Futaba to Okashi no Kuni no Yakusoku~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943f1faed496f741ff2cb5d79f9efbe905c070a1e29ea4e885cc29007cc41e88 +size 285803 diff --git a/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec1.png b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..48d6d8561a060bcb7c497d385d535f19811de56d --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e253502b93551987bf1d914837f1d84c4389a9475514b13f9893b02a1197646e +size 275129 diff --git a/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec2.png b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e49e2b1acf43c145dc90fb59f88bcbf19af65529 --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a1b404ce878aa5cc300183c0b93caada699db68ddc30f9ed3c231d51b7f63e +size 260343 diff --git a/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec3.png b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1b4e2f3a5af623bcbcb929bf7119a1b2c18e855e --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248edb7b733e0b13d107c5ca65a174b92b4beb5b5e122936a97db9a4db54c237 +size 292699 diff --git a/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec4.png b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b2fa6ea92aa56fad318a2cb368cfc7e32ca9c55f --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9026da2a686eb212d057f01f1ffd1ffedaa60dd5f707202bcdd900c4d8583d88 +size 241240 diff --git a/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec5.png b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9a2bc4e6488a8f9df62d15fd498632cd55669e7b --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Senba Shizuku to Saboten no Tegami~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a86ea10bda744a28833fff9d3d6cdcde2c079881e578f337f50a4ee164db9a +size 193245 diff --git a/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec1.png b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4259f742426a5be9c2fd4610f1ef1046e63f9421 --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5d8c064a5f042db06331bd3e712b3e583d9fda69590e19cb54cb4185f55d20 +size 268140 diff --git a/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec2.png b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a07493e55e24001e7a34087a33d5b41e8f418db3 --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d5e7c7b61174b137c69578bb951e131dcd94b59125d59b03a792df47cdffa93 +size 284172 diff --git a/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec3.png b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..58a58add98f292d3fbe2639401cccb637e2ceb51 --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aef8e03f9111c39928b8b762b06d2a13025f75dcdb5afa4ffb88ae98c10e15a +size 238774 diff --git a/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec4.png b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1deded1b5b7a355996acd3f72f03650435de2b4a --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671bc6b935cf457f7655129314ec2379d9a6052c63c012401edf875c38612e2f +size 249402 diff --git a/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec5.png b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d63e58b71d6baa99cddcf727e6749adc90f12359 --- /dev/null +++ b/specs/Torte Soft_Koi x Mitsu ~Yaeneri Saki to Akai Ito no Ouji-sama~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087f7f3bccb05ca09a58e08f46338416969364feaf48ba6dec5d6d75090f37ad +size 278197 diff --git a/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec1.png b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a43059b7f1ef66b5470d176d099ad67e8fdea238 --- /dev/null +++ b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2275087b3e3d774117c13481ab2ab46363b9eaa9827e9b19e23af56766d422 +size 344619 diff --git a/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec2.png b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0062a1c20184df180a648f04f3a77cd5efbc5a41 --- /dev/null +++ b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2553c4ff2e6291edf3843caabd0434cf8830a68d2aae0ffcf426cf9e2ae9039 +size 309585 diff --git a/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec3.png b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0bc4f6ba1a14b0726b482a21947b5c19b8f09b27 --- /dev/null +++ b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e057ae8a032ed975d80928964e76939cfda32e6adc375f9859bf57d72140b9 +size 319413 diff --git a/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec4.png b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..22851ef60afc187d6a882d18da9f8ec4ffcf6cf1 --- /dev/null +++ b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f26660b0b4580e3d3629814a2ea0438d9554d3d4ef6ef0b9bf5899c67408480 +size 325729 diff --git a/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec5.png b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..24b946247ffbd5d5a78af64508379cd704488ac3 --- /dev/null +++ b/specs/Uguisu Kagura_Kami no Ue no Mahoutsukai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e428f2da8a5831723d497e7daa216a2d0533af7938805ce4d8e7e5d86b0f6786 +size 277605 diff --git a/specs/Uguisu Kagura_Meikei no Lupercalia/spec1.png b/specs/Uguisu Kagura_Meikei no Lupercalia/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c270dfae7e8cdf18cf298ae781b156f7735aac30 --- /dev/null +++ b/specs/Uguisu Kagura_Meikei no Lupercalia/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6105ff3fd150bc207a390e3e4edb15058efda0715d4bb1350e575eb7a963ff +size 318643 diff --git a/specs/Uguisu Kagura_Meikei no Lupercalia/spec2.png b/specs/Uguisu Kagura_Meikei no Lupercalia/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6e05e61fac14c723e886002bc6f5e2957bafd699 --- /dev/null +++ b/specs/Uguisu Kagura_Meikei no Lupercalia/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e752e03da768e95055245cb0007771b8309b08b2ffc5786a70878e089be7cabf +size 336461 diff --git a/specs/Uguisu Kagura_Meikei no Lupercalia/spec3.png b/specs/Uguisu Kagura_Meikei no Lupercalia/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..23a7a20b36e939342ba3c785298aefdc26fe1ded --- /dev/null +++ b/specs/Uguisu Kagura_Meikei no Lupercalia/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e8cc3c9638f55f3e4b7ae78ef5b424a8b30eaecdaad9262aca558fbc6b461b +size 292744 diff --git a/specs/Uguisu Kagura_Meikei no Lupercalia/spec4.png b/specs/Uguisu Kagura_Meikei no Lupercalia/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b014149c33cb80fe254766adde25e26235cb721d --- /dev/null +++ b/specs/Uguisu Kagura_Meikei no Lupercalia/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddaa7c2fe5c9ceb349e1b7a3626a9d95b4c9005efeead3d14d2fcb09c28ea09 +size 290799 diff --git a/specs/Uguisu Kagura_Meikei no Lupercalia/spec5.png b/specs/Uguisu Kagura_Meikei no Lupercalia/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cee158d18ea893966b4e8c850c528f67e11a0377 --- /dev/null +++ b/specs/Uguisu Kagura_Meikei no Lupercalia/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af67ce27579cfb9f1aade2f7f8f491da31390c29437ea2a6fa5b9de658cc464a +size 300930 diff --git a/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec1.png b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..69a415f22d81db8a165048197d507bda4c04a6d4 --- /dev/null +++ b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb23ec41834b5f72dcc74ce6c4d42841ef670a4d438330c76a47c684780a5f6 +size 257158 diff --git a/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec2.png b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a24c934bca055809d5f492883e96191fdf00ed6a --- /dev/null +++ b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3368a10a4b9c7fccbb81c5c34b55781c9200c64221f622e29d6eacbc6de5f2fb +size 248406 diff --git a/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec3.png b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..60c4a3fcd2fa29b94ac77385443bf38aebdc6c4a --- /dev/null +++ b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc23a99f73ec39190aa7eca7c2290e27a71571e7019bb11c5400542da0bdc60 +size 281320 diff --git a/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec4.png b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..55ee094b805f8c7c201b6ae46f1b8f3a9c7b66e3 --- /dev/null +++ b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fecf4f26f58a3c4b899fdeb72b0b87ad307b0cca84151d9bb7a640ec4c070463 +size 257014 diff --git a/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec5.png b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a59be893d3741b6a79a493dbdefd02b91000a9a2 --- /dev/null +++ b/specs/Uguisu Kagura_Sora ni Kizanda Parallelogram/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99276af86b2f8133402cf3a2c0b619f96f7389c6d0b1fb2e7bf17c52627f9075 +size 245523 diff --git a/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec1.png b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d595ed074cf4df88e842644bbccdf8bf88e25ca9 --- /dev/null +++ b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9009da6c7873f2088710c788637182fdacb7e24d246aac025af1abb13a89de87 +size 312794 diff --git a/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec2.png b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7c2ac125d58502bf9b24640e7ebecf19bbac74bc --- /dev/null +++ b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7517c131be77189b3b1b30fe9c5caa1560c85586e47d76b70169a7e309b23985 +size 304338 diff --git a/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec3.png b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..735d95ae77ba5e68fdcfff62c8c4b878eacd72ab --- /dev/null +++ b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce214aedf12b1b3d99cf94c9ff6aa2dbd129f857cfa02ab94bf13776807a9384 +size 313868 diff --git a/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec4.png b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..13a461160c87a422eb9e6b010f94b96fde1a8df1 --- /dev/null +++ b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa97eb403b2d77d1f87bb5b46200f98ed2175691a866a2d0889e5557f59cc25 +size 316965 diff --git a/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec5.png b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..33b44ce3b728961434c92b3a290715145a32510b --- /dev/null +++ b/specs/Uguisu Kagura_Suisou Ginka no Istoria/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d961f4920f0a4703ba7e1db02c6f91bca7120b3cb8e60b811a0ad1c9c5f627 +size 297571 diff --git a/specs/Unison Shift Blossom_Flyable CandyHeart/spec1.png b/specs/Unison Shift Blossom_Flyable CandyHeart/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..26fefe3e0d43324010ace18a3440e50841c8d225 --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable CandyHeart/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a104c93d20dfa99ea7df4a231801bffbfb1f430d9cb7f63ba11cda247f928e +size 346803 diff --git a/specs/Unison Shift Blossom_Flyable CandyHeart/spec2.png b/specs/Unison Shift Blossom_Flyable CandyHeart/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9309bb1853f6876bc6467ee568b304c2cb209b7e --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable CandyHeart/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0214709318a1596f88b987c3cd4c26ebcd85927fce601927fcff7d5526650c8f +size 351470 diff --git a/specs/Unison Shift Blossom_Flyable CandyHeart/spec3.png b/specs/Unison Shift Blossom_Flyable CandyHeart/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0b12f9938f4ae644b25dc43a43e67b94ab650e10 --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable CandyHeart/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc59250c8f6dfd8213f59e0a214e1977d8c8e53ea0cd057ebe6f53155f082a03 +size 347410 diff --git a/specs/Unison Shift Blossom_Flyable CandyHeart/spec4.png b/specs/Unison Shift Blossom_Flyable CandyHeart/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fdee9fed9bdcc711b62169d033c0c07c5f1576bf --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable CandyHeart/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f970bfcfd588eb665fe8f92236b1501c76fb1d884d60ec5a1843157ce62e010 +size 344463 diff --git a/specs/Unison Shift Blossom_Flyable CandyHeart/spec5.png b/specs/Unison Shift Blossom_Flyable CandyHeart/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fa76d05bb0845e9f32610045178d98a529806bc2 --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable CandyHeart/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13011f167ce16c3de6c808f9c0988eee450aa2e90195d798900035244e2a3385 +size 326531 diff --git a/specs/Unison Shift Blossom_Flyable Heart/spec1.png b/specs/Unison Shift Blossom_Flyable Heart/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..458f57f79c2ac66e456585259f760dccfe3a93c9 --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable Heart/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64d9bc7597a52ebe0f14dfa8c7fa96ee44fb1df47f0056ec7ca25427f4eeb8 +size 324906 diff --git a/specs/Unison Shift Blossom_Flyable Heart/spec2.png b/specs/Unison Shift Blossom_Flyable Heart/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4f0820ac7d55f3f2d4a38d7efee9ef60aa89521f --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable Heart/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5eb2a9e167c14615889d406baa561bd5d927d7256fc6a6c01297277f19de06 +size 334438 diff --git a/specs/Unison Shift Blossom_Flyable Heart/spec3.png b/specs/Unison Shift Blossom_Flyable Heart/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2052fe08292c7b07c139e1cd4589603fb558d723 --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable Heart/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a103334db95c0389ddad62b55424db8eef5fb95d6dfed9f957e64d62f47abd03 +size 332368 diff --git a/specs/Unison Shift Blossom_Flyable Heart/spec4.png b/specs/Unison Shift Blossom_Flyable Heart/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5294de4fe09a3f7963859f0e2e6a7955c3acfdcc --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable Heart/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56d25f39db88efb36fa640594794450910cbba763394a02d3b5837fa77b905c +size 333116 diff --git a/specs/Unison Shift Blossom_Flyable Heart/spec5.png b/specs/Unison Shift Blossom_Flyable Heart/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4ec75328b140e36a435c79cdfe76e9929b7a2970 --- /dev/null +++ b/specs/Unison Shift Blossom_Flyable Heart/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9b6828e34e7dc56d09d4fbceee91ae3cccc2112fe7a6658f54ecc44590722a +size 326522 diff --git a/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec1.png b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..948865033f84d715d5c19fb6f0f28800cf253d2c --- /dev/null +++ b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f9fa5d49bee5d0a9d8f03e877887cd23a397a4e04f3f45eec0cdda76ef3158 +size 320251 diff --git a/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec2.png b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..782996b4d4cfefd6222df3854b4746adac83605d --- /dev/null +++ b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b629e4de731faf90b85f4b3d4ba8bb5b7e38030b932ff36b5c458f3a5b0cd8 +size 302635 diff --git a/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec3.png b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b8524dd5a313b92a5c03c7b035032e01ad44ae67 --- /dev/null +++ b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ded0e9284716cb0259237be9885c4beb75c22f0326135c21d3a04f25f84911 +size 329796 diff --git a/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec4.png b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..00c7a00c7a22e4750affae7a70e6243348614b96 --- /dev/null +++ b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4deedb1d3645932665cdde82b84804b19b08d6c28ddc4644d4da2249ccc3ef +size 320475 diff --git a/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec5.png b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..41b54072a2c848f8ff8c581e51e1f0f0780404d9 --- /dev/null +++ b/specs/Unison Shift Blossom_Kimi no Nagori wa Shizuka ni Yurete/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85dd201d1004df1a942222511c80dda578005726732acb1c067aaaed71054fab +size 304317 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec1.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a2c66eeb8664a3555acbc581e806f8b7412936f1 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac5b8aa8680476756e5d1242f6e36c3912e3635afa11741f3c9fcb412a9a513 +size 354933 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec2.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e6a4057c3dd968266ebe237c32cd730684f1960 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecab492ed76b63e05222e1a82c0a23069d8e0a12a57aabf55c4d509705c5bf78 +size 349718 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec3.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..11fe38cc02c8b5fa252deaef8048c9b9ed45cc7b --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949aab1b6c4e541bc8bd44bcc37e7793fad320541bcfbc8dfee27bf1448230ec +size 329180 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec4.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6a292542ad42a7e5b40eb8bdc14ccff04499ab76 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ad0aa1b9d1e8b72270817be26fb475d0d979b7968ebca1500bd87c35201356 +size 336219 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec5.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0d6b825efe378f3675ebe1a8f8e80766bd5f2d53 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Asagiri ni Chiru Hana-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dba5836ce0ba1cbc8a34f4511a8c93fd89e17438127237c1227563e25abc9a4 +size 345928 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec1.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..02a153b08e3bbc088693f879f50a529649a96a25 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb708a38ac922e9cec2859fab4548d6861d3bd485f751971cc3bf65b5db698f6 +size 348310 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec2.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6b3ce84dd99124639402b60428157da055d88611 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e15478b7607c16e5076aecbfc549661225d27b10ef3cd6fad10089bbb4c5ab +size 347253 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec3.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1fe9b63fce7950a0c8ca557fc48365ad3371d3de --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b76fe50fa3623213e678c4fd8f5440cfc1ccb34f8b0da0ccf23e23e73e4da81 +size 357685 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec4.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c4fec7067bc26bd1761cea1965389cdf2fe4d33d --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478972fb8919bfde0773adb3285603536642ff88dd3e10574868339496470a83 +size 344235 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec5.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..33e0869a8613589844c7b95ae51371080e21a43c --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Tasogaredoki no Kyoukaisen-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f31fa1352404a724afdbae5305b7bc2db6591ae2ce542f73cb42778c59d69d55 +size 350566 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec1.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3211de1ec82c30b42b6e93e536e080d03cc211c2 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2b873e53b91d1ee7eb65da34422ead6eb6eb44cfe11dc5630ba380b511d6d8 +size 333317 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec2.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ac65880ed1828dc6e9c9bdda297dca399f9e71d6 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b3b8e77cfe86b13798d729196b6881de2c42a394ed40242b020b8239902376 +size 327231 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec3.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bf2aefbca0d0055ae3fece198d298d87811edf62 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991067094a971513d26eeb08bbd39201e52b8d47343bbcb14ff8dbdc7b048d69 +size 323520 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec4.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5f87d4dbde0ebc20ef033275605e58a9d6772732 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c70fadea88c089eb9a1e14a7a5529b6428d76057bf256308f690b712ac9f015 +size 330999 diff --git a/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec5.png b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b87e71d4aab634137382fceb7225fb0a374b1ad3 --- /dev/null +++ b/specs/Unison Shift Blossom_Tokeijikake no Ley Line -Zan'ei no Yoru ga Akeru Toki-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78f3f57727551483f413cb0c644b3102927d85a0e6bf2625d5e505b442b6d6b +size 326984 diff --git a/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec1.png b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..017383dfb73df23a4e67d34d691cd078f0090666 --- /dev/null +++ b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f777a5a6d74e558b2b391459dce6ac8f0f2de27884a8818e0397f8c80dce0d19 +size 318094 diff --git a/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec2.png b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1f7ae348eacd5d03c2526ee97028d471a4fa8850 --- /dev/null +++ b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051f9686501b9315c1428a671db518acfcdce4dfbb4b26d35fe8b5a9f375fcf5 +size 330079 diff --git a/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec3.png b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9ad79ca95f3375464a8724e17a2a462317359e --- /dev/null +++ b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70452050e20823209bb32dfc695b70cb98153aaa2ca4eb959de3ab8a0f3ee6e +size 320589 diff --git a/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec4.png b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..37d4d9f692e82e91bfb81618d01b3d51ed0e6760 --- /dev/null +++ b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4c8e09922df773655f9effb1545928ab148ab91c648f047e1e8a9a398598a9 +size 335068 diff --git a/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec5.png b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a3b8eb2912423ac217daa76d6299881ad6664d97 --- /dev/null +++ b/specs/Unison Shift_Anata ni Koi Suru Ren'ai Recette/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8bfc0a28c4fde038181d99cfd79af4d90ada594c0e5f43204724c18396053 +size 322865 diff --git a/specs/Us track_Koi x Shin Ai Kanojo/spec1.png b/specs/Us track_Koi x Shin Ai Kanojo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..38038ca956bf5787894680592ff419a64d1d1450 --- /dev/null +++ b/specs/Us track_Koi x Shin Ai Kanojo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d20a904cfab563f0b3124c71ff8fce690a4c29ed59905e33637dad8465f3d76 +size 311917 diff --git a/specs/Us track_Koi x Shin Ai Kanojo/spec2.png b/specs/Us track_Koi x Shin Ai Kanojo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..82f02bfb950242e4837478cf75724bc728755867 --- /dev/null +++ b/specs/Us track_Koi x Shin Ai Kanojo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05b7cc4444f01a3fa01cfa0507ef47a39169f72a49be16fb848a5124723086b +size 274817 diff --git a/specs/Us track_Koi x Shin Ai Kanojo/spec3.png b/specs/Us track_Koi x Shin Ai Kanojo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6e488835159c568230976cb944546473e6a620b8 --- /dev/null +++ b/specs/Us track_Koi x Shin Ai Kanojo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b530f9a1ba4f6f1a899b25e696394e81dbad1f9ab4724b282170fb43d97a0659 +size 359413 diff --git a/specs/Us track_Koi x Shin Ai Kanojo/spec4.png b/specs/Us track_Koi x Shin Ai Kanojo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..90396e48e1aad82afc06c195a30e8023cefa9660 --- /dev/null +++ b/specs/Us track_Koi x Shin Ai Kanojo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e1e0be7776ac613e227bd49f925259e3ff8f0359751ec253073a48cce3cce7 +size 350005 diff --git a/specs/Us track_Koi x Shin Ai Kanojo/spec5.png b/specs/Us track_Koi x Shin Ai Kanojo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c37a3840642665b0c339d986bac12b7adc48cbf5 --- /dev/null +++ b/specs/Us track_Koi x Shin Ai Kanojo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2f548062d93b0d452db4375e77aff83f19a6fe0ed452745568a11a7c87df2c +size 296821 diff --git a/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec1.png b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d60158b2e1e5ef672b6efa0da1a5fee540ffe5c2 --- /dev/null +++ b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7049688791ade74933a9aa6b8dc1cc8d475d067553c04d602d3d5f1866d4a36a +size 326730 diff --git a/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec2.png b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..305cba6dbaa9b95bf23b30c0d03ccaacb30313aa --- /dev/null +++ b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51831eb87d978bbe8c4cc56371df3796b5df2aa6bde72ef903f3c84459ad8325 +size 336286 diff --git a/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec3.png b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9ad5a41d876ccbf693c43149c2004093636707b2 --- /dev/null +++ b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2d81024ba43516198583e3ccd587f203bc0f13036ffa5d1e3156ea29ed129e +size 328254 diff --git a/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec4.png b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..af2e9b182dd12b2ddac3d566f57aa18924d8d1e1 --- /dev/null +++ b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91a260f4a0f75f99ff3172b267cb9ad5cbaa2ab3705bdf3664dade70f217367 +size 339264 diff --git a/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec5.png b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c6de647f256949638862e3fc8aa1af4f0b92ad5b --- /dev/null +++ b/specs/Waffle_Dokuzetsu Akuma to Muttsuri Tenshi to no Yojouhan Kurashi/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f2dd175873d24086a2d3be9703cfb47fd098e2b2fc4b2a7c282402df50473d +size 338677 diff --git a/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec1.png b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3040f23b05765f1a1a661eebfa9fb15e0eabbe82 --- /dev/null +++ b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45ee5e539d196737c306214cf5e5c727de2862225945ab7df17d38e4d722ca8 +size 326693 diff --git a/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec2.png b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..babe6781959eae3941dc2eeaaf769536b1cd29cc --- /dev/null +++ b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a9523577f2ec583ae769eb17f10aba6e6238d356de34ae98ac79845db16f32 +size 323056 diff --git a/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec3.png b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0128903fccb1b5edddebbc127d18fad835922f08 --- /dev/null +++ b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa90d6d0eb4cda90a064ca594187562a3deca21f1a8d771c49b0f79d999f28d +size 326999 diff --git a/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec4.png b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b2ea78021d0887e6874b53c94460716c185f6690 --- /dev/null +++ b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b375d8c77a3a6763bf674a72e82e416284a5b252619ead2676e2cb3bbd68ca79 +size 328580 diff --git a/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec5.png b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7bd4c51bbaaa85c60c30822a1ceb0b3a6da03049 --- /dev/null +++ b/specs/Waffle_Imouto to Kanojo - Sorezore no Sentaku/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65f1b6e2a357940684ea2a44c5b23837d5ad9fdb7e2970d99a66aaf23a99b67 +size 335623 diff --git a/specs/Watakubi_Island Diary/spec1.png b/specs/Watakubi_Island Diary/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d96bb2b7b657ed930f490d6dd8e76235c6ad1016 --- /dev/null +++ b/specs/Watakubi_Island Diary/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4249edd1122c1a7b2f79a872c1fdcc28929667f0163beefec9be63d48f74f873 +size 308989 diff --git a/specs/Watakubi_Island Diary/spec2.png b/specs/Watakubi_Island Diary/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5eaa9d0cf6b22c994257787271e097063caefe97 --- /dev/null +++ b/specs/Watakubi_Island Diary/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d5063f1855b1ec2823b177842249393a1ab9cffda6f3c08a43f8d531d0caed +size 326950 diff --git a/specs/Watakubi_Island Diary/spec3.png b/specs/Watakubi_Island Diary/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0d7a8a100b78c76c1cacfdeff10f5bfa556be8ba --- /dev/null +++ b/specs/Watakubi_Island Diary/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b410bfca875c65474f3e4e9b1ca12f1332d299cd599db89feb4e23d0531216 +size 321438 diff --git a/specs/Watakubi_Island Diary/spec4.png b/specs/Watakubi_Island Diary/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8ad521322c6aa6c65b578311caf2cc58e08f1668 --- /dev/null +++ b/specs/Watakubi_Island Diary/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a5232fd007ee45993f0ea86b6dc4e429b6c7716f43324b04b70fd768f03dfd +size 326284 diff --git a/specs/Watakubi_Island Diary/spec5.png b/specs/Watakubi_Island Diary/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a518340aef8a8f21924ce8d98811f0030f467d8d --- /dev/null +++ b/specs/Watakubi_Island Diary/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372e922b2ef0cb7c00e4963ac2dfed3fc027e4e339916e8ec64bd1d6ce614382 +size 331397 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 2/spec1.png b/specs/Whirlpool_DraPri Guu-ta-life 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d65858e74c5bad2840e18ed0f6ef267f8bfdd2d0 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dabde447a11438d83b9036e4cf423138eb3e233e8552b7306a08a866f70700 +size 226956 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 2/spec2.png b/specs/Whirlpool_DraPri Guu-ta-life 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5394177133b69975289afdb301abafbc6c3f1c24 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab58a57f127adbb9f3dfdca6441e0d548b63e751b0e632e396f9ecbca06b19fb +size 289595 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 2/spec3.png b/specs/Whirlpool_DraPri Guu-ta-life 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..57ac3e48eec1f1f224148cb5137fdcd13313fa70 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc32ccd50fb7d58792aac125f4cc5cc8ad700c5719046d5cb8ecd6ffa1cda436 +size 278093 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 2/spec4.png b/specs/Whirlpool_DraPri Guu-ta-life 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9d6664b4dc9490a471928389d10d95905612c1d3 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ac709afd2cf30d2d05eb4db6317f696d4f9a80c253ed0a3d0fbc4564437783 +size 283072 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 2/spec5.png b/specs/Whirlpool_DraPri Guu-ta-life 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..95fd2839213d5945c780a4458f33bf99b6d329a0 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4195a155d843f5303afd4daef442d2ccececc508ab9ffd5b439715a9bf43b797 +size 266249 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 3/spec1.png b/specs/Whirlpool_DraPri Guu-ta-life 3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..18f9943d4ee3efcc50a9f8e18d9e40a950fd4600 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb36cf76b0f7a05bc7840d2089513050ca0695e83b818451fcff2a7d67dc0ad +size 240115 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 3/spec2.png b/specs/Whirlpool_DraPri Guu-ta-life 3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3e3051f9a8643f42c6382739a6e06a614b6a74ed --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdab711c3d75c2926fead0984bb24eaf9eafbc1ddb0ecb6b83f65a43c4684d08 +size 272265 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 3/spec3.png b/specs/Whirlpool_DraPri Guu-ta-life 3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1d8912a3ffdd2c098c109b6cea19fd233b410722 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171a82ef5731adf4a2bf479bec9015939f5a044db19afd6c7ac721e9a6130030 +size 219599 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 3/spec4.png b/specs/Whirlpool_DraPri Guu-ta-life 3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a3c8a23ee50857683f6c386a75b20b7f843eb850 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ab9654eff9cb0d6843e623b96287fdc8acd45fed3cefec1ef448cee50d855b +size 217278 diff --git a/specs/Whirlpool_DraPri Guu-ta-life 3/spec5.png b/specs/Whirlpool_DraPri Guu-ta-life 3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3f816f31d691f90cabd181c6e26b893962de2dc5 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life 3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b681189edbbcee353e003e7981754ba44ac1a3e2d9de878b66b672ab085c5e +size 270368 diff --git a/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec1.png b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..67250e45e57aa3953cb25ba6e3e94868f7671e50 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c28d8663db295ce347c3e850df547a0d2f028a8e33cfb5a118ac2a35976a08e4 +size 265851 diff --git a/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec2.png b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..67507caa3cac34c11d0c3b62b24951857133af7f --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f9550cbfbc100c167bfa9717adaea5ad235629080190e1d8006588bc627d2a +size 239374 diff --git a/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec3.png b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..092d9adbc84add25c0a5a6faec4cfff532e986b2 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f7c06fefba50307bfb281d12517283ee46c1be69b2745899266656b1490973 +size 280540 diff --git a/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec4.png b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9c341ba9206e9bf46dd6b906b8d85266e5280f20 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930d732d6c0640a153fd3c6504da8e01843208877af1933111a9e5853aba8670 +size 287306 diff --git a/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec5.png b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e16faf74a871178bb1527607f27f52ecc7785e0a --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life LOVE + PLUS/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3beba4399f84576dbc4d0e583f6a9817d4070e95449b42ecba865d5907dbd0a7 +size 247066 diff --git a/specs/Whirlpool_DraPri Guu-ta-life/spec1.png b/specs/Whirlpool_DraPri Guu-ta-life/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4eb74dfd1cc32f9ca20be20618ecde9f539022b9 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b686f445604e67690aeb9c51247868ef21750472449cce65c1da450a7276ef +size 263346 diff --git a/specs/Whirlpool_DraPri Guu-ta-life/spec2.png b/specs/Whirlpool_DraPri Guu-ta-life/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1c532ce1ed2822ca5ad24a046b44a45d68508913 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f094abae8b7bbfd1009068054b7fe7cb21ee0ba5ba231f43eb25c2cd5fbe1c8 +size 236123 diff --git a/specs/Whirlpool_DraPri Guu-ta-life/spec3.png b/specs/Whirlpool_DraPri Guu-ta-life/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d7318bff000683ae52c912b7410dbbb7a8d8ace5 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4237c81e3a00ad8f42755d28c2d2e21865dbef8d91c442634518af1c5214e0fd +size 303965 diff --git a/specs/Whirlpool_DraPri Guu-ta-life/spec4.png b/specs/Whirlpool_DraPri Guu-ta-life/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..846f13505fcc97a604dbdcc53f57b0995ee275e0 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f92c943632d19f0c27844197044794057e4f9caef2e2c8dd083c71933dd5217 +size 279731 diff --git a/specs/Whirlpool_DraPri Guu-ta-life/spec5.png b/specs/Whirlpool_DraPri Guu-ta-life/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cb7e96d95012bbe8e6584959ba5872281c621620 --- /dev/null +++ b/specs/Whirlpool_DraPri Guu-ta-life/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52952767d6236395703c1fcf4a397f95bbcc604fc5456c77037630cb31371012 +size 267891 diff --git a/specs/Whirlpool_G.I.B. Girls in Black/spec1.png b/specs/Whirlpool_G.I.B. Girls in Black/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..cdc524e8d41215168d4687e2bab7b48f046d86da --- /dev/null +++ b/specs/Whirlpool_G.I.B. Girls in Black/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c16df01b322b3cb661fdbd38fa09357855d9d4a6988f75a8ac1c7341ccea40 +size 294510 diff --git a/specs/Whirlpool_G.I.B. Girls in Black/spec2.png b/specs/Whirlpool_G.I.B. Girls in Black/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b10f702bdd07d85bac6edfda3edad11718d9d1e6 --- /dev/null +++ b/specs/Whirlpool_G.I.B. Girls in Black/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2429f24b835eb67a0d9d127f5c827c77db13b9488705d82736f6a28bd0fe565f +size 307535 diff --git a/specs/Whirlpool_G.I.B. Girls in Black/spec3.png b/specs/Whirlpool_G.I.B. Girls in Black/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e9b2a335a1359e6bd3430eb15173f8814c3d9082 --- /dev/null +++ b/specs/Whirlpool_G.I.B. Girls in Black/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf96e54d87b76156c5937ae334ed67c946bd0a9e4ad6bd6bf4c99a7e7a95d8d6 +size 329106 diff --git a/specs/Whirlpool_G.I.B. Girls in Black/spec4.png b/specs/Whirlpool_G.I.B. Girls in Black/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e1cf2ffa10cca69699bf6012f18559a0db958110 --- /dev/null +++ b/specs/Whirlpool_G.I.B. Girls in Black/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8ae4cdb9c67fdf006dcbc4836fd88eac7bc48c9ec7f8d003f043e213e3c835 +size 312010 diff --git a/specs/Whirlpool_G.I.B. Girls in Black/spec5.png b/specs/Whirlpool_G.I.B. Girls in Black/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..719d377e258d458df1ba241197a429a5f1b8089f --- /dev/null +++ b/specs/Whirlpool_G.I.B. Girls in Black/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ff04ebb0b936aeabfa137cecf0b79ea28fdd127b43f100cddd9e19dc945741 +size 324897 diff --git a/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec1.png b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..24f1e9ce0b290a4f3ee709fbab618f2446d4a871 --- /dev/null +++ b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce5a18a946dd0f6f7b5afe51c666794a6bbc92f3242d5292eba6d157c7ad51d +size 282586 diff --git a/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec2.png b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..501d473d749677706b3ef916aafc8a3924b28d99 --- /dev/null +++ b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46807ee8a40d96d48fb28829719d0f6968ee9250e8318a381194cc6af57ed3b2 +size 294328 diff --git a/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec3.png b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9fab52e4cc596beba818ea60a163d5f8bb035d90 --- /dev/null +++ b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9b64c3f98cd5f40b5232292f16bc54c8b72803ce2ea0392bcedd2024c83f1d +size 290584 diff --git a/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec4.png b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..05468a4e6df0d76602187e8fa23ae07d06f5f8d9 --- /dev/null +++ b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584849a6ae6d3227737510594b48666d582f7e0969dc5ef58ede2c5e1ef9c99b +size 284089 diff --git a/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec5.png b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9e720d5b8227a9511b6286121a07eb3a0d49cd53 --- /dev/null +++ b/specs/Whirlpool_Hajimeru Sekai no Risouron -goodbye world index-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570f50a86c164741b232219dc20bec261db79c26b6fd335f130857cb0d77d448 +size 285172 diff --git a/specs/Whirlpool_Hatsujou Sprinkle/spec1.png b/specs/Whirlpool_Hatsujou Sprinkle/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..73bef47dc61692e4fccdce6795286c6dd246c7e6 --- /dev/null +++ b/specs/Whirlpool_Hatsujou Sprinkle/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d010f4865067b2cff18d03a161cde5ad323ac9f8dca9caa726e7a000a301f7f +size 310785 diff --git a/specs/Whirlpool_Hatsujou Sprinkle/spec2.png b/specs/Whirlpool_Hatsujou Sprinkle/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..121c654bc55e6194d5df2011c827637b274ea8ee --- /dev/null +++ b/specs/Whirlpool_Hatsujou Sprinkle/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fec90f60592389fa2481a7996750c55861f74deb8951ed4c9607347e3513ac +size 324043 diff --git a/specs/Whirlpool_Hatsujou Sprinkle/spec3.png b/specs/Whirlpool_Hatsujou Sprinkle/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c9ce1e0df7b5b6c8bd2a0d05e446a3b0189be3fe --- /dev/null +++ b/specs/Whirlpool_Hatsujou Sprinkle/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b301273c4390848be8684d8eaddab50486c59749e4844d181a2e3aab7090bcde +size 290660 diff --git a/specs/Whirlpool_Hatsujou Sprinkle/spec4.png b/specs/Whirlpool_Hatsujou Sprinkle/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6899950a5648253d52b623ad93d4da617f8b5abf --- /dev/null +++ b/specs/Whirlpool_Hatsujou Sprinkle/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3694e82949c0fe36acea2e9046f37865169af57daf044412daec77ebb72b2ba0 +size 295490 diff --git a/specs/Whirlpool_Hatsujou Sprinkle/spec5.png b/specs/Whirlpool_Hatsujou Sprinkle/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..222240bc344b8d6715c9eacde23c0b24085e9750 --- /dev/null +++ b/specs/Whirlpool_Hatsujou Sprinkle/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bdcb43bf736e9e3ce6e5c3ce995ae085f4f23eabcabd2edd62c30a825f04810 +size 303328 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec1.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..b8f8981018dcbefd83c81fa1bb834a87c84dbae4 --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b97521be028e92d84905f1cc657f290c2686a14d4e7424b0ee44de189eb8434 +size 269197 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec2.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..a9a7d47a656a03aeefc4cedb4bda6af31fae4327 --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a4ee48f32f33f59abd1cd8bf8ae605b207f6e690295fd475099eb5e09fadcb +size 238906 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec3.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..9714d20829614cf9dd533e626321ebca8b807290 --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6090dbd97d9c93efcf04ac825b4a581c2e955fdbdbe00bf004d841dc0451c8 +size 260067 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec4.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..582a236407585ee18c1a35a0fc9e273f1fac9186 --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a584be950f7a26f8163c0144140f29e980d1fa621a5b411bde2731c985bb4aee +size 199142 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec5.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..493d97a2402e7f5176b03a646319db6f6ae9c06c --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square 2/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50c36d9a0b75f6e615d76e868f6f8b6acdda07df42bfdb3fc5530e32c058103 +size 229041 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec1.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..f7f4a5fa94672984f67245f4e41b33424457a9a1 --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06de08ef4ab4c0efd4c07d054865bff4e52d708aafd3958ac3109d27d94e6c01 +size 285852 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec2.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..9aa157f7f2acb74426a5cfe5426b32944cd73e7e --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23cf1549eaf8b41a19c79f6a15235dd78ba6f10c9aef8a76923f5f512c05824f +size 266062 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec3.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..8f5bb843ae89208fd318e842d50617511f177ee2 --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763e399eead35b6ca9daad50bc4e7be2da09f8b2aa0cc95bf6d61ff22e5ea9b3 +size 190734 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec4.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..b64ea6dcead2ffb863d23c7297d34845d686129a --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0077b3cfed56651cb12e8634e10475e2313b886987c9bccc6c959114a7204a3c +size 278009 diff --git "a/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec5.png" "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..182e51e5cc7918a3c41f4d6d81a7b6eea223f52d --- /dev/null +++ "b/specs/Whirlpool_Kemonomichi \342\230\206 Girlish Square/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa1b446f104b1ad6c9b769fcd56fbbb51d36ee06f09f0f490ee1238afa94639 +size 243383 diff --git a/specs/Whirlpool_Kujiragami no Tearstilla/spec1.png b/specs/Whirlpool_Kujiragami no Tearstilla/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e44781b60ac79bf3c9056b22e29298579fc6cc7 --- /dev/null +++ b/specs/Whirlpool_Kujiragami no Tearstilla/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f2916347872c4d014b8d0a8c3f71b02008cc2f877b5687ea5f6dac20d59ba98 +size 310757 diff --git a/specs/Whirlpool_Kujiragami no Tearstilla/spec2.png b/specs/Whirlpool_Kujiragami no Tearstilla/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d412ac3e509ef5852c96b7ccf044b292c2bc42e --- /dev/null +++ b/specs/Whirlpool_Kujiragami no Tearstilla/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c759ad4931490b5f8c89b0bef59532b3bd12eb56a9e17d70ae07fd7460244ae6 +size 315154 diff --git a/specs/Whirlpool_Kujiragami no Tearstilla/spec3.png b/specs/Whirlpool_Kujiragami no Tearstilla/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3acddb8fba16fd5100bb15a3d773d22f152dcd3d --- /dev/null +++ b/specs/Whirlpool_Kujiragami no Tearstilla/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788d990b5c8d14c02707fbbdf293f8e40fb528cb91b146637c2383638a2bf332 +size 318265 diff --git a/specs/Whirlpool_Kujiragami no Tearstilla/spec4.png b/specs/Whirlpool_Kujiragami no Tearstilla/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5a31c468614593352396cf3034cf32f0f7667c79 --- /dev/null +++ b/specs/Whirlpool_Kujiragami no Tearstilla/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6244944abfa588a71d2ade8420265e8a9b68023bbcb3c87e222cf7ef36b8f29 +size 329432 diff --git a/specs/Whirlpool_Kujiragami no Tearstilla/spec5.png b/specs/Whirlpool_Kujiragami no Tearstilla/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e3c823601fc8eb26d33e148953f75a1a53c6843a --- /dev/null +++ b/specs/Whirlpool_Kujiragami no Tearstilla/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b88e7c6f73f5820ad1e21c4b473d1e6fd450a8f95024630b6f7c9b040e1988e +size 314467 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec1.png b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..72f352380a4c8bf008b21407c62880a8cae96583 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb7c02b4a3fc9b855794120e999678f307a3d93f4249f2b134d30f2b2bccd9c +size 282794 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec2.png b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fe0a4eebaf74aa5d421d95e12e21a118ad1fb35c --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fecb5cbe79330a3f11f6e42e656e0207b35af13c33e3926fa27006991a4e00 +size 296741 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec3.png b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0db94494ac0d3e913e174bb0cff2cab487604fa --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a7842ce1974d155fefae44f51b9342efb7467eb8123bebb60e01106e18490d +size 258152 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec4.png b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..aa044d0bddde51a5d1854da9a17fc024e50aab73 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:722d4de05fcf8070c5d8471a7454cd1b8a5f3715c79dc3248cecaaaad48bae51 +size 301869 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec5.png b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..39de50d9861c85069c04c094a31675fb6b0c0251 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Nachi Hen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce5ac00e43b790ca764103b95030afac168de81febb012a46928a3f0ddece80 +size 311285 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec1.png b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc7e9954e36a64608b9bfdceff9f8e9c4c0857b --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea6708a75417e454d6ae496c18b86a2065a81dd47c96a23c4ec40ad87844f18 +size 273103 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec2.png b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..59c379fe60c32b600ba665338c894cace80cd2bf --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8f63b836518be1679e3d8ef988beb7e70f5ed4eac2bd986ac270efe2844ce7 +size 286382 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec3.png b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..86e87d83f75e0857788abbdc7b8a19c29081d37b --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5b2b4ecda181bd0bda70bab1ce7255ab6fc9915dc35bfa24c183d75b0b6da6 +size 323111 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec4.png b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..31bc8987dfc8dbb686d64caac29e8dfce60f21d1 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b5e4fe28eddb0cbebdb1abfc5cafc5031ac278aa52f26577dd4d97b54a5b26 +size 288548 diff --git a/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec5.png b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5a6db4ada54af0bff61608d98c96e9480db6153c --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart +Plus Saiha Hen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1a1129374d60e6005a687e413ed206c56b58c3ec345530709818e7fe485531 +size 308772 diff --git a/specs/Whirlpool_Neko-nin exHeart 2/spec1.png b/specs/Whirlpool_Neko-nin exHeart 2/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..51a9e3531d95eff0e570f4b9b267b3b1f92cc362 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 2/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75be83f515086d59f9879150b8599adf2da4e5bbbd7fa94aa982b75eb61abc1 +size 313754 diff --git a/specs/Whirlpool_Neko-nin exHeart 2/spec2.png b/specs/Whirlpool_Neko-nin exHeart 2/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0461b8f30236d4d13a1a22d39781150c5c272309 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 2/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac345a350972cd60bb450e885b93db5a218343f28f806d6ddcaed9ee53a07ab1 +size 308554 diff --git a/specs/Whirlpool_Neko-nin exHeart 2/spec3.png b/specs/Whirlpool_Neko-nin exHeart 2/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bd0af246717dbfda3eada8476cc6d436e5c2a9b7 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 2/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd517ec460ac0c74aaf2e4878af4a6651d797472007e073b7c64adb8060bb224 +size 302979 diff --git a/specs/Whirlpool_Neko-nin exHeart 2/spec4.png b/specs/Whirlpool_Neko-nin exHeart 2/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1d702ebeb57d9bbcdf34d1836bdf17324430e7e9 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 2/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05209aba8bcc670201998e02ed6e83f148675d51b4ec434ff394fb833cd243b5 +size 315567 diff --git a/specs/Whirlpool_Neko-nin exHeart 2/spec5.png b/specs/Whirlpool_Neko-nin exHeart 2/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9283fb95b934efd961424aba52c070360d601190 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 2/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477d19c5932e6ff3afce2dc1a3e7a27386f27dd91c30d3f71729836785fc5525 +size 314823 diff --git a/specs/Whirlpool_Neko-nin exHeart 3/spec1.png b/specs/Whirlpool_Neko-nin exHeart 3/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f474aa69d3f11820b04952ecd8d6befb8da59fd3 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 3/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd06dabfcee3db425c6d398e3a40354d9831ab8056ec54f771a90558a66d446 +size 304090 diff --git a/specs/Whirlpool_Neko-nin exHeart 3/spec2.png b/specs/Whirlpool_Neko-nin exHeart 3/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a7fed8e5a28ffa712e26c04c70014df16b6cf3d1 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 3/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f37268a291642649e7786eb1d576f2d3ea764ea7b253611f20e80b222548c1 +size 300775 diff --git a/specs/Whirlpool_Neko-nin exHeart 3/spec3.png b/specs/Whirlpool_Neko-nin exHeart 3/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..eb55f13be0f77d6f3eb90a717729a7efc91a856f --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 3/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277107a0970b0a7a75a15167b82c11ea99d23c29105fb08e1fad4cfddd53c9dd +size 294192 diff --git a/specs/Whirlpool_Neko-nin exHeart 3/spec4.png b/specs/Whirlpool_Neko-nin exHeart 3/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..4f5babba6b8757635f40e0dab66573eaa237770c --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 3/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcefd6b0e55e47330de1068057c5432dc0fd7505530bb116b9b3ad854b46ce3 +size 318456 diff --git a/specs/Whirlpool_Neko-nin exHeart 3/spec5.png b/specs/Whirlpool_Neko-nin exHeart 3/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..25675e05c07974d37cda5ffd1aad9cc3fd6edd92 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart 3/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a54a41e950a872d7f6afbf12fa95242082ddef8bc8333b364de347f4c80a61e +size 320923 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec1.png b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..65f7cab4030188deaa1158fc35a48c608e4d6ac2 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3076a1ed7047138b08e0693abce3953446e05f0aea1d5a8b2a6330a51a6bcbc +size 282480 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec2.png b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..24a63b93277d3bff8d0588cc4a79a5c1292ad681 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831d73c34410b73334fde7347255e04e1500bd72b8d6f74d87897757f8f5d999 +size 262948 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec3.png b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ccfa5cf569be0c052902c2632d0c9de9ce04693b --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb66c8d0c127b3381951ef42356449b2a270d65cab4e0e77030eda53da7c8f2d +size 288054 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec4.png b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d9ebc7a685d265bcc7590f58081bf7bdb1a4118d --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c877d42d43846355be8c9b825610f8ab731e2db9294a6781fbc1d007ba6ab7 +size 300693 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec5.png b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ef794d988f75df2d6e4bfe8b1263edfcac3aca87 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN! LOVE+PLUS/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4a4bf78e30a1ec3decf0628afcd6f1bce3c706c9652f79a1bf56c59053cef8 +size 255558 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN!/spec1.png b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c73d41e423521db36081ca0beb3ac13babbee04f --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa98714b7849c6b295d822fd58075d532f91c7de9afe26d22c40043bdec6b46 +size 264938 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN!/spec2.png b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a442789335a6d4d2c183a2dbcad990926b86b300 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bfde1034a0d7f00f662233b2cc7039548d34b535d3fbedb05f4ff4df2fcf7c +size 254547 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN!/spec3.png b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fa02e75cf1bc04053464aea64f4061f72c439169 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdfb2159cd84450faf1d3c4844f7afd0f43986d5ce0d02b712b8f6fc2f3a2039 +size 232473 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN!/spec4.png b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5eb4ae50e3d98fc7edbe49fc8c51b2384722f039 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12318be9bb83c83fc23f01a554404b53193b8a84595861b34b6e46a8bdd1269b +size 221564 diff --git a/specs/Whirlpool_Neko-nin exHeart SPIN!/spec5.png b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..29579b00eab0f31d02c573acb40faa3ad0a4de24 --- /dev/null +++ b/specs/Whirlpool_Neko-nin exHeart SPIN!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556e26e3b3758556f066f47e1995364840d045136e1f8a4ca8330d6520c843b0 +size 239314 diff --git a/specs/Whirlpool_Pieces Wataridori no Somnium/spec1.png b/specs/Whirlpool_Pieces Wataridori no Somnium/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..81ef8368d9b9c8e7e2340d4db9e2f111bfea8e59 --- /dev/null +++ b/specs/Whirlpool_Pieces Wataridori no Somnium/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6fa5685885153b913a40da1d753dd8d905ef817f16d072a3d65d21d4705dabd +size 301482 diff --git a/specs/Whirlpool_Pieces Wataridori no Somnium/spec2.png b/specs/Whirlpool_Pieces Wataridori no Somnium/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..eeca990576924c1d2bd5641740a1a4950e6f2a47 --- /dev/null +++ b/specs/Whirlpool_Pieces Wataridori no Somnium/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed2acadeb672e9b2c0071eda9b40ed105625a3431e91cbd21c9ca8beecc3e00 +size 324181 diff --git a/specs/Whirlpool_Pieces Wataridori no Somnium/spec3.png b/specs/Whirlpool_Pieces Wataridori no Somnium/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd4c9332deba90eb663f7f6fb89fc2ecc10b76 --- /dev/null +++ b/specs/Whirlpool_Pieces Wataridori no Somnium/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c699679fb82c4cd3f56e9c916c209deb6b0b63dfae2b89e5557389fad8c7bcb +size 315987 diff --git a/specs/Whirlpool_Pieces Wataridori no Somnium/spec4.png b/specs/Whirlpool_Pieces Wataridori no Somnium/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9b00b88f906d36c2f39a287158bc3d2a18817212 --- /dev/null +++ b/specs/Whirlpool_Pieces Wataridori no Somnium/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6a39ed54a93fc00e4e23a374cb909023f243dbbf9fc5d19120d1639d4a0d09 +size 312481 diff --git a/specs/Whirlpool_Pieces Wataridori no Somnium/spec5.png b/specs/Whirlpool_Pieces Wataridori no Somnium/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1a47d3a3ab6ef9c62a03f50b0a2caf452ffbeec7 --- /dev/null +++ b/specs/Whirlpool_Pieces Wataridori no Somnium/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27dcb009bed2f0786e35f841d47b8d9d2aa9f461c7a10c1e12304da33f376e3b +size 289595 diff --git a/specs/Whirlpool_Pieces Yurikago no Canaria/spec1.png b/specs/Whirlpool_Pieces Yurikago no Canaria/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0b88dd128dfdbd4e99986636acd4e2e277900719 --- /dev/null +++ b/specs/Whirlpool_Pieces Yurikago no Canaria/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a679478ec464f21abc825b0516e17b07e1d295cd95174364a18d8fcfbb2e8e16 +size 319743 diff --git a/specs/Whirlpool_Pieces Yurikago no Canaria/spec2.png b/specs/Whirlpool_Pieces Yurikago no Canaria/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..592bf9d7121a0ab819bf13cc5366bcf7406ed611 --- /dev/null +++ b/specs/Whirlpool_Pieces Yurikago no Canaria/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92c8ad8dd50b7c43ed0c3fa4d3e5a3ca0148fad7580a274917fa0317cefc428 +size 318466 diff --git a/specs/Whirlpool_Pieces Yurikago no Canaria/spec3.png b/specs/Whirlpool_Pieces Yurikago no Canaria/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..79d18a80fa709701d1ec6580862889485585b217 --- /dev/null +++ b/specs/Whirlpool_Pieces Yurikago no Canaria/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e091d24def8b80b747bd638006f53e8cb968fc68c2a227c97660173a466357f +size 311018 diff --git a/specs/Whirlpool_Pieces Yurikago no Canaria/spec4.png b/specs/Whirlpool_Pieces Yurikago no Canaria/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5d023ec260b70eb150df21e2fcdc0f7e7d84bd34 --- /dev/null +++ b/specs/Whirlpool_Pieces Yurikago no Canaria/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266e1f2a584b49dafbe010a6691130f02dd82af1b7d997843e6820839f139f00 +size 318659 diff --git a/specs/Whirlpool_Pieces Yurikago no Canaria/spec5.png b/specs/Whirlpool_Pieces Yurikago no Canaria/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e3464e2da8fb7361b1fde6f6385a92ef8093d264 --- /dev/null +++ b/specs/Whirlpool_Pieces Yurikago no Canaria/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5e170d2b4b677d0c20c053db7188312c987f03c8c36fbba196e775fef31d8d +size 318552 diff --git a/specs/Whirlpool_Unless Terminalia/spec1.png b/specs/Whirlpool_Unless Terminalia/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..85886c21214927af6e205786f80275ae9a9606be --- /dev/null +++ b/specs/Whirlpool_Unless Terminalia/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5098c7d0f3a006fc50d27b3add0ecb605003c2108d7e575742330ebc7dbe8ae1 +size 255023 diff --git a/specs/Whirlpool_Unless Terminalia/spec2.png b/specs/Whirlpool_Unless Terminalia/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b8080d9019138ae9cf119d714d340c14d57a1356 --- /dev/null +++ b/specs/Whirlpool_Unless Terminalia/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1493e633dda466044e03373e864c5a897b5033d0c810c33ff4d00bad84ecd6 +size 261256 diff --git a/specs/Whirlpool_Unless Terminalia/spec3.png b/specs/Whirlpool_Unless Terminalia/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5454cc69bffc26efc2591fe1962ce78fdb64b498 --- /dev/null +++ b/specs/Whirlpool_Unless Terminalia/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415713de596ef47f85ccb19619e0577e4f30bf58a03ba84a055d7c7cfc359470 +size 280265 diff --git a/specs/Whirlpool_Unless Terminalia/spec4.png b/specs/Whirlpool_Unless Terminalia/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..18b3b829390c5dbfb8ac2d82a542ceaaceeb8fab --- /dev/null +++ b/specs/Whirlpool_Unless Terminalia/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e732812df5e313bf5be8203586825faae82b9d55ded72f770adaca176fcf2de +size 234934 diff --git a/specs/Whirlpool_Unless Terminalia/spec5.png b/specs/Whirlpool_Unless Terminalia/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2e5d48196928582f1e74b4a3bcfa348b6c21fc58 --- /dev/null +++ b/specs/Whirlpool_Unless Terminalia/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd62fbb418eaa8fc6fbd043a7ce5a90de9ac6724236d1f48da30ba0a4760cdf7 +size 266008 diff --git a/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec1.png b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b42651e5315a5729853af88345b3a3609131346b --- /dev/null +++ b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046847fc2b8308be690a4e60ebdaae6502c96b9ade9670160fd952ac8e0c4c05 +size 321926 diff --git a/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec2.png b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4334819c200e7ac79f445e8f67ef6ea0c65e2833 --- /dev/null +++ b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736782cf1b0df4be4a08d44f135b58273c0a0f6d54cd10679012b680625eb88c +size 284418 diff --git a/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec3.png b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d0d3becec93b4d67779de08ad240b68eea45a3b2 --- /dev/null +++ b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef394f226bbe9909cf04db926d567e9670004726157078ed6f242b6d7882c70 +size 319467 diff --git a/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec4.png b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..816cb18fef902f67d3b07b98b76f5f90bb984372 --- /dev/null +++ b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e862bb46f1d89b8731877282b346389e29d2a38f562da2a0c68f2851576aab +size 314698 diff --git a/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec5.png b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1778eadd6e620c459c23941d46226632b1ab96b1 --- /dev/null +++ b/specs/Whirlpool_Usotsuki Ouji to Nayameru Ohime-sama -Princess Syndrome-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce3a1ffeb217d29810dded735f2f255d2d2cdc81b2ebd3dbfc46ef3e4329a37 +size 321899 diff --git a/specs/Whirlpool_World Election/spec1.png b/specs/Whirlpool_World Election/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c00fed0753952649e86b2b3edb5dc7340707262 --- /dev/null +++ b/specs/Whirlpool_World Election/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39826082fb04ea724a00a0606d79afd1d2ef14895c269bae72deb96ba7294dcf +size 170610 diff --git a/specs/Whirlpool_World Election/spec2.png b/specs/Whirlpool_World Election/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..dac1c8d25c333c89471a0abbe603fdd44c85c963 --- /dev/null +++ b/specs/Whirlpool_World Election/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2a71c7517f48e639947b8dc674d0032d392254df2704cd068f44fbeb2e025a +size 285223 diff --git a/specs/Whirlpool_World Election/spec3.png b/specs/Whirlpool_World Election/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2c13979d4a3f2cff9773458d89e53aa3189f353d --- /dev/null +++ b/specs/Whirlpool_World Election/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de0f7e44c57370f39f6a0302f29a0eb6025341b10f3f5f4fc2bdb8b1b3d313a +size 273139 diff --git a/specs/Whirlpool_World Election/spec4.png b/specs/Whirlpool_World Election/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..085c6fef6ff45ff60297ab09a14e97f109535ba2 --- /dev/null +++ b/specs/Whirlpool_World Election/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701132dcd36423a2618b23c1bc1856c6430a494a2015d13d3b0a72b8f708087f +size 295879 diff --git a/specs/Whirlpool_World Election/spec5.png b/specs/Whirlpool_World Election/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..21213fc689036f1efcdcf937512d37bc36d70820 --- /dev/null +++ b/specs/Whirlpool_World Election/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb608d21ac2d324f8b89da0e07c2a3b2946d53134d09be5e3b7f91292f73ac9 +size 294188 diff --git a/specs/WhitePowder_LAMUNATION!/spec1.png b/specs/WhitePowder_LAMUNATION!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..445cfb594c68ec1b13352c29911460e86d9f3515 --- /dev/null +++ b/specs/WhitePowder_LAMUNATION!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40694c0f028c365265a70caee2bc12f584e3d4a5d688bb35a00539f388744de1 +size 304333 diff --git a/specs/WhitePowder_LAMUNATION!/spec2.png b/specs/WhitePowder_LAMUNATION!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d9d2d4777da47c0e57397e297d41c5a61aeef774 --- /dev/null +++ b/specs/WhitePowder_LAMUNATION!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09913cf1861946e1d6cb8e4bbf026890cc5a7d846e134c5d61b3f8ed0f3a7b47 +size 324782 diff --git a/specs/WhitePowder_LAMUNATION!/spec3.png b/specs/WhitePowder_LAMUNATION!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0b7583999136cf5a38dcddcab1632d4902e3a9b --- /dev/null +++ b/specs/WhitePowder_LAMUNATION!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abbc5a8bd609461c1736bad0aa2b76fa59a7134a5e66499858d1b52465e339f +size 333628 diff --git a/specs/WhitePowder_LAMUNATION!/spec4.png b/specs/WhitePowder_LAMUNATION!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..bd6456614471f92102a7cc9c39469712ce3a61c4 --- /dev/null +++ b/specs/WhitePowder_LAMUNATION!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3252d242daaa7785f8c36fe84de0578d0f5123e0b2696cdca00f6d11e7164bd9 +size 324662 diff --git a/specs/WhitePowder_LAMUNATION!/spec5.png b/specs/WhitePowder_LAMUNATION!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..64715620398eca0f3c08adafea9147a49d82d5d8 --- /dev/null +++ b/specs/WhitePowder_LAMUNATION!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2520937ec0e3a241425a409ab79718f9bcb492eba1835c07cb27166d960034e1 +size 312284 diff --git a/specs/Windmill Oasis_Happiness! 2 ReLucks/spec1.png b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b1aa6d24349c521ecab9372deb1e6fc565eb7f8b --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68843851351398c6738721725edeec77bc5df0bbec77a4760376d0bce8af5f71 +size 200147 diff --git a/specs/Windmill Oasis_Happiness! 2 ReLucks/spec2.png b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..eb4f7ab89566df9990e0d3ff7ef3b11e77512403 --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d655c68fe75e4331a63177f02547cef58476edb1bc70276378a93ea9b3d41bde +size 276452 diff --git a/specs/Windmill Oasis_Happiness! 2 ReLucks/spec3.png b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1cf04535f3f65e7f08f8b2cd137efa5120f7b755 --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d702d101e1fa649f6202cbf83f16f1da4afcda60435664bb27a8b734f74e73a9 +size 321698 diff --git a/specs/Windmill Oasis_Happiness! 2 ReLucks/spec4.png b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2e5fcb3d24f6c2ab4b4a276df5d7b0b8e5257165 --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb25bda75d83f2bbeaf28eff4363b89df59a87873ee49238cdc803d40b1d011d +size 187836 diff --git a/specs/Windmill Oasis_Happiness! 2 ReLucks/spec5.png b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..bb2d9db1fd0e5d4c7c652eb249374f661acc6f51 --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 ReLucks/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d987397cf055f626cad533ce9332783e1bec9c99b527faff9f7469421a1c4af +size 311773 diff --git a/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec1.png b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e422757eb6264be87af46e0328c2c44ee6f3cc6a --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53638b77058f73e012ecd9754eef4d94703b7ec48956d5b8e4803ae04da22956 +size 299250 diff --git a/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec2.png b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3a93646c01dcfae21f1b1928ac31b73f3bbd973c --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72532ce3352e94b83b665aba3bc71c3bf3882b189e1bccefda71bf850f5334d +size 322813 diff --git a/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec3.png b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2def3d3aab7097a2c712961db9256a6bdba1a54a --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7983bb8caf8e299e4e22c9d9585746f432c1533882830937f0a01f33a3c28f +size 306578 diff --git a/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec4.png b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c02a566eaf725b3e95daadf1c2d8d4ed39b5e8fc --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc434c7bb1bfd5c457b4be33a5e6af1490a5181033a8bb73eae63c9f3a86ddd7 +size 329626 diff --git a/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec5.png b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..fec6f0a5068bc5883b0659ff8f791164c233b708 --- /dev/null +++ b/specs/Windmill Oasis_Happiness! 2 Sakura Celebration/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930bae511dfb960aaeea63d1328b9e5591f39182691f57c27cdc24b58ae238e4 +size 286628 diff --git a/specs/Windmill Oasis_Harukaze Sensation!/spec1.png b/specs/Windmill Oasis_Harukaze Sensation!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f5feca2d324c4306260af7f6268794619ba39d4b --- /dev/null +++ b/specs/Windmill Oasis_Harukaze Sensation!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0439953a93d8cdb43b5db7ca483a7bf674d84575f58849b9120ad38e9ac89be8 +size 238237 diff --git a/specs/Windmill Oasis_Harukaze Sensation!/spec2.png b/specs/Windmill Oasis_Harukaze Sensation!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..36ba409dd24a5e3f84099f889a45f6bb5fee1ddd --- /dev/null +++ b/specs/Windmill Oasis_Harukaze Sensation!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfb99cb466c54b3689554b80d15647bd603958b80669baa4d474af6f99a2f3e +size 206858 diff --git a/specs/Windmill Oasis_Harukaze Sensation!/spec3.png b/specs/Windmill Oasis_Harukaze Sensation!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6f8a172fda5cca62058d6d1d4387c93a06ed1e8d --- /dev/null +++ b/specs/Windmill Oasis_Harukaze Sensation!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecf96d995a4e6cba5b54331bff94b86758d660f31abcdff98c1096f313c36a3 +size 293297 diff --git a/specs/Windmill Oasis_Harukaze Sensation!/spec4.png b/specs/Windmill Oasis_Harukaze Sensation!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9a9bdc950b9e03a74cce8d2983a25ae6d039f3c6 --- /dev/null +++ b/specs/Windmill Oasis_Harukaze Sensation!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254229ee4d816ff916391d6f68fbc0637ccac6e5505c01bae02939525b204a35 +size 323550 diff --git a/specs/Windmill Oasis_Harukaze Sensation!/spec5.png b/specs/Windmill Oasis_Harukaze Sensation!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5132b5ad75a7f0e330ef7e5210295f09d38deb44 --- /dev/null +++ b/specs/Windmill Oasis_Harukaze Sensation!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecba8ad1a9a2c269394953658134607be082f30a03ec2c0d6f86f53ab01cb9d +size 252629 diff --git a/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec1.png b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..95e4b896671a6dfded25fe6dff4cb77b3431b00c --- /dev/null +++ b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800291d5a7eb6b9bacf26f98787d431a14ada8eec50c104581cf049ce64cbf04 +size 295609 diff --git a/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec2.png b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d5d93439f350a811ed6009f8e72ca9b8efaa0650 --- /dev/null +++ b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:759c43108e1a7dacaeb692da2bdb74f6c94b0a8deb356974c4300eed72f54212 +size 328146 diff --git a/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec3.png b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e349091515a40e66644307970be3596a846c4694 --- /dev/null +++ b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ebd4d319262278b7c2fe679c044c5843a74873ea01ef8ef2c3a769ddd655845 +size 294551 diff --git a/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec4.png b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f2bd84fc440e75966fd479121f54e6b06324ca8 --- /dev/null +++ b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec833f5dac702fd2d450eb9549904e0dadf93e9f59cd3b29f755e61050c947c +size 282268 diff --git a/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec5.png b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a043071236581d495226bb14c630d102cfda6690 --- /dev/null +++ b/specs/Windmill Oasis_Shukufuku no Campanella - Plus Stories/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b7186c68701d9552fe793761e32998c59acb2955d5b28513d8fbee801cbe51 +size 335071 diff --git a/specs/Windmill Oasis_Shukusai no Campanella!/spec1.png b/specs/Windmill Oasis_Shukusai no Campanella!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..fe87fa78070c23da1d481f79e4e2b06f62b10ffb --- /dev/null +++ b/specs/Windmill Oasis_Shukusai no Campanella!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810e226263898c6e2636a44ccfb8751d96e5522bba2913c2192307756152c889 +size 228990 diff --git a/specs/Windmill Oasis_Shukusai no Campanella!/spec2.png b/specs/Windmill Oasis_Shukusai no Campanella!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..aa45c1ba11c50d9344f011044a4937a591b1a065 --- /dev/null +++ b/specs/Windmill Oasis_Shukusai no Campanella!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8452f32119e76142c5f4dfcd90a6b022d6cd4968c5d2094a48af41fe52fbd1e +size 332353 diff --git a/specs/Windmill Oasis_Shukusai no Campanella!/spec3.png b/specs/Windmill Oasis_Shukusai no Campanella!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e911ac8e4339a07c155c0bee6fcadec740c6fa86 --- /dev/null +++ b/specs/Windmill Oasis_Shukusai no Campanella!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8667896b81a4cf7e40c4412a867e46f1b342d12b65c60dfb151e5c13190837b +size 297673 diff --git a/specs/Windmill Oasis_Shukusai no Campanella!/spec4.png b/specs/Windmill Oasis_Shukusai no Campanella!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c59a6c3574d9674d30fe3c6c70c7952642ee5f53 --- /dev/null +++ b/specs/Windmill Oasis_Shukusai no Campanella!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6f266f27fe3f633b67ff9a887a4943f821c030f7c0c99c964f2dfa6ea95609 +size 288917 diff --git a/specs/Windmill Oasis_Shukusai no Campanella!/spec5.png b/specs/Windmill Oasis_Shukusai no Campanella!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..26d506e7b2fa63889547a2c4943527e2d091c69c --- /dev/null +++ b/specs/Windmill Oasis_Shukusai no Campanella!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd286e74a44056970aae8483be05bae83d0b0f8a43bd3c8c948cf203c04210a1 +size 302541 diff --git a/specs/Windmill Oasis_Witch's Garden/spec1.png b/specs/Windmill Oasis_Witch's Garden/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..27ce1ac7f72c02934490e6149b12557f73d6c935 --- /dev/null +++ b/specs/Windmill Oasis_Witch's Garden/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbe79db3ca22500f0e91fb73259663d314110c2fcd83d2d5522476b245a0a28 +size 274718 diff --git a/specs/Windmill Oasis_Witch's Garden/spec2.png b/specs/Windmill Oasis_Witch's Garden/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e22f08bd48de07e10840aaea369c0b05f99353c6 --- /dev/null +++ b/specs/Windmill Oasis_Witch's Garden/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45993bdb626dbf7da8bc8423663047703d51cef84c194432f562dbf61f81b49 +size 276278 diff --git a/specs/Windmill Oasis_Witch's Garden/spec3.png b/specs/Windmill Oasis_Witch's Garden/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..750f4605cbc46ae63e86d9aac4ed4341756750df --- /dev/null +++ b/specs/Windmill Oasis_Witch's Garden/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331cd91cdd43212ed33329550250c087b7fc7bbe9cfffd509b75c5b83a658c1a +size 278510 diff --git a/specs/Windmill Oasis_Witch's Garden/spec4.png b/specs/Windmill Oasis_Witch's Garden/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a257da100b140c176f383e1b50b5e909c2c205cd --- /dev/null +++ b/specs/Windmill Oasis_Witch's Garden/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33d643fd0369ab18d2d0a8eb8dded2622588c50dc18f9a748f89c53d4510db2 +size 271144 diff --git a/specs/Windmill Oasis_Witch's Garden/spec5.png b/specs/Windmill Oasis_Witch's Garden/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8025d9c779300eea329115d678dad4bb225fb133 --- /dev/null +++ b/specs/Windmill Oasis_Witch's Garden/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ef9b84080787aa093b4e2514985895f9dfe518dd83d2b2f0188074d297a635 +size 267348 diff --git a/specs/Windmill Oasis_Wizards Complex/spec1.png b/specs/Windmill Oasis_Wizards Complex/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f260462c7e0cc18bf8a89b33cbf82bed16be6e6f --- /dev/null +++ b/specs/Windmill Oasis_Wizards Complex/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2734f5024fbbe5b25f8a97c2e3a83bb7eb26f21609ddef0ecb8f76e1d49d4717 +size 304054 diff --git a/specs/Windmill Oasis_Wizards Complex/spec2.png b/specs/Windmill Oasis_Wizards Complex/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9339ab1853bc6af2093a85db3cf28ca08e4eef8c --- /dev/null +++ b/specs/Windmill Oasis_Wizards Complex/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26a822de870bf1ab8d9f7f4da51ea24e765fdd5e91eb3e815777ec028f9e9bc2 +size 221287 diff --git a/specs/Windmill Oasis_Wizards Complex/spec3.png b/specs/Windmill Oasis_Wizards Complex/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f6036cce671d865a6f3828fd7a08005bef14ad38 --- /dev/null +++ b/specs/Windmill Oasis_Wizards Complex/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb3ccb16b44ada1afa4aafeae496739a3271a8aa54f1c39a47690ceceba296d6 +size 267367 diff --git a/specs/Windmill Oasis_Wizards Complex/spec4.png b/specs/Windmill Oasis_Wizards Complex/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2ce61a4050d6abc73ebb9b6cfbcbff1aa269e6c3 --- /dev/null +++ b/specs/Windmill Oasis_Wizards Complex/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426d75ed188e448b3eacc0136950d6e578707c68cb29caa11e18b19509819074 +size 260290 diff --git a/specs/Windmill Oasis_Wizards Complex/spec5.png b/specs/Windmill Oasis_Wizards Complex/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5d1d67461eda2a3281a389061dc9c19c55c70f96 --- /dev/null +++ b/specs/Windmill Oasis_Wizards Complex/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be718f39a6a380fb3d206cc05a683fbe03b283c21ed7b1c8eb969dfec651118 +size 314037 diff --git a/specs/Windmill Oasis_Yuukyuu no Campanella/spec1.png b/specs/Windmill Oasis_Yuukyuu no Campanella/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..22a88c8979f1ca2e3ac2aaed3bb9925e067f5abb --- /dev/null +++ b/specs/Windmill Oasis_Yuukyuu no Campanella/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ed512ee86c07b52806952fac5ede2a436ba50f240e246d7c7322cf8a40d18c +size 307149 diff --git a/specs/Windmill Oasis_Yuukyuu no Campanella/spec2.png b/specs/Windmill Oasis_Yuukyuu no Campanella/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a267f47b8fb4397d7596a8bdaa9e32b0199521 --- /dev/null +++ b/specs/Windmill Oasis_Yuukyuu no Campanella/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3982756e7166e822012a5298997bb0f3fe1ea024a62986fcbe5bb3a25d6c67c8 +size 299841 diff --git a/specs/Windmill Oasis_Yuukyuu no Campanella/spec3.png b/specs/Windmill Oasis_Yuukyuu no Campanella/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..204cd0e398d23a394b1332bd8fdcb8a85903f9e3 --- /dev/null +++ b/specs/Windmill Oasis_Yuukyuu no Campanella/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0398dd0a3a9c3c69bd515d61d89844d251dee0bd1d380f8b2cb1ac6a8fbfda82 +size 239823 diff --git a/specs/Windmill Oasis_Yuukyuu no Campanella/spec4.png b/specs/Windmill Oasis_Yuukyuu no Campanella/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8b6f59a7406b3cf6903e807d648809963e81b44a --- /dev/null +++ b/specs/Windmill Oasis_Yuukyuu no Campanella/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f09c8d8309f42adb31e4ec1a0c3cdfa81418ba5b4fb30bb5b2fae03ca75296 +size 264154 diff --git a/specs/Windmill Oasis_Yuukyuu no Campanella/spec5.png b/specs/Windmill Oasis_Yuukyuu no Campanella/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..53eb2cb1c694cb872dfdbd6f33409d97c9a6ac1b --- /dev/null +++ b/specs/Windmill Oasis_Yuukyuu no Campanella/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af96a9c00af6e3ddf7cfe39df07a7a43316213b47a95b424714d40b819055035 +size 265573 diff --git a/specs/Windmill_HHG Megami no Shuuen/spec1.png b/specs/Windmill_HHG Megami no Shuuen/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..04b36426aba865356c5f07af3cf7111ef39675b4 --- /dev/null +++ b/specs/Windmill_HHG Megami no Shuuen/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c1cfeef1a9c74b22f71967c535ad06164171f6e4c0f57efd305a432be79f73 +size 316618 diff --git a/specs/Windmill_HHG Megami no Shuuen/spec2.png b/specs/Windmill_HHG Megami no Shuuen/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cb5b1def022e678c1816a5fee9dc6abf9f3ec021 --- /dev/null +++ b/specs/Windmill_HHG Megami no Shuuen/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c286549038401239eee655238694eb4e160e8932ae6b0b053fb6f11dff107b07 +size 310661 diff --git a/specs/Windmill_HHG Megami no Shuuen/spec3.png b/specs/Windmill_HHG Megami no Shuuen/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8dfbf3ce2494491aa1a08475eb0871a618125589 --- /dev/null +++ b/specs/Windmill_HHG Megami no Shuuen/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf08ab66ea492801e1efda67aacea57c3f6d951f447583c010fa43b79db078a +size 272755 diff --git a/specs/Windmill_HHG Megami no Shuuen/spec4.png b/specs/Windmill_HHG Megami no Shuuen/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b5a9ab0e0ed0fd66be003547f7cd4daeabe05034 --- /dev/null +++ b/specs/Windmill_HHG Megami no Shuuen/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4c720d1f28aea40f81c4ed4048be69546f5a503f837b4019a2a434eac5ec2f +size 249609 diff --git a/specs/Windmill_HHG Megami no Shuuen/spec5.png b/specs/Windmill_HHG Megami no Shuuen/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0a515761ffe358e501648d7aae22456df48b7519 --- /dev/null +++ b/specs/Windmill_HHG Megami no Shuuen/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d55889480e04a01ed9e6c1341e500d847d8ca152d00a6f0a6691f5f4aec2e9c +size 195975 diff --git a/specs/Windmill_Hatsukoi Sankaime/spec1.png b/specs/Windmill_Hatsukoi Sankaime/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..00ef5bd3b107b895a5230be1533b5170941ad7e2 --- /dev/null +++ b/specs/Windmill_Hatsukoi Sankaime/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f3675e6a823ae642d070626e61e91eb5f59f68e8eb365572cfd9f1e2d355c6 +size 281151 diff --git a/specs/Windmill_Hatsukoi Sankaime/spec2.png b/specs/Windmill_Hatsukoi Sankaime/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a311aea9b705480a3d6965888c68c97372e664bb --- /dev/null +++ b/specs/Windmill_Hatsukoi Sankaime/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9263576eff85641d079d7137f0e952b51ebf5be5618b2ee7233a3c646e8a948d +size 283558 diff --git a/specs/Windmill_Hatsukoi Sankaime/spec3.png b/specs/Windmill_Hatsukoi Sankaime/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..97b762ba4a0bf001ce5c2049c6a71fbb69c538f9 --- /dev/null +++ b/specs/Windmill_Hatsukoi Sankaime/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b13f271b69faa77d7841fe52a98a7f2268bf58b939e0539b0e29060684c8cfd +size 228128 diff --git a/specs/Windmill_Hatsukoi Sankaime/spec4.png b/specs/Windmill_Hatsukoi Sankaime/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..57cde5aa7f1dddcb898a93222535ccd9faae92d0 --- /dev/null +++ b/specs/Windmill_Hatsukoi Sankaime/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64236bd08b458396b55252e556833640a4d1faf965ea10187c3bd35e142a3994 +size 307702 diff --git a/specs/Windmill_Hatsukoi Sankaime/spec5.png b/specs/Windmill_Hatsukoi Sankaime/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2d964776e8c8eca75fc6c08f64581bd83f4f8564 --- /dev/null +++ b/specs/Windmill_Hatsukoi Sankaime/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4557b2d4ca23f02dea5ea8cf6fa6f7808780ef8be7e9a407229bac6a2968198 +size 247464 diff --git "a/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec1.png" "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..ceef0a7884c93fa0a0ffd07fa54467f2ff7f2e54 --- /dev/null +++ "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cecf427805e631ddd713669fc2c9407eeb23c3745407e13e6aa136c53884d92a +size 259856 diff --git "a/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec2.png" "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..311b2d8ad63cf231b9c9f9965a62e9a082248cb1 --- /dev/null +++ "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ef7febe01c7780640ab50178c96f7c4c9fab2ddfa02d0bb76ca840f75f98c9 +size 288564 diff --git "a/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec3.png" "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..7cf58c079099344c58f295daecf2616649f3dd86 --- /dev/null +++ "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:088c65ab4b03f7f9a89a42c4f44b684bc0408ad3de93c5d7ebafd7c4ffde583b +size 239221 diff --git "a/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec4.png" "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..84bd58cd94464a49dfec2e1e7746fba4dcd72c00 --- /dev/null +++ "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a65dc33c09bf30d187310c5f49ee4e2ac81495b8d1879de830353bcf40859d +size 253807 diff --git "a/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec5.png" "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..9de74dc006c69b120cb05c326679e02011376703 --- /dev/null +++ "b/specs/Windmill_Hyper\342\206\222Highspeed\342\206\222Genius/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1692e506f17a6bc60247eba755b48ddf0d3caa36a5d5f238d6bf372c7d36ec0 +size 276532 diff --git a/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec1.png b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..44ac5116b4b149f66edabb4bebdda7ac5e0bd7ff --- /dev/null +++ b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4b27ca36f5fb8d6e80cc801d130965d866f4c668be72a7743bf280a48a2f9f +size 325751 diff --git a/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec2.png b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..031238705ef0b156f1a4130edf95950492950eb8 --- /dev/null +++ b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c234a71e6c3e4254d3cc3399f23d0c137a1312a8a3ff2ffe844745d003fa3246 +size 271938 diff --git a/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec3.png b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bf12c809ca11bcad0e43f9b819c880b34632cbbc --- /dev/null +++ b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c4c58a9ee759bde4ffc169441bbe8bac0aa2794f54c2746de511353d0fd0c6 +size 277937 diff --git a/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec4.png b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..58fc028265b3b6f4cf52bd0752c7e4dfdd9b7e29 --- /dev/null +++ b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c38e177b46d1126243deaf8a68b89280c44a800a75f82a53a05bfbd61f5d6bd +size 316753 diff --git a/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec5.png b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cfa97e07178433a56b9648ad3930266bf77d6234 --- /dev/null +++ b/specs/Windmill_Iro ni Ide ni keri Waga Koi wa/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b021e3c6bd2deb1653289b017f7f01463842e4bd515101e295af5171cf6f17 +size 322018 diff --git a/specs/Windmill_Kamigakari Cross Heart!/spec1.png b/specs/Windmill_Kamigakari Cross Heart!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..639cc4b56823f66c0c729aa27f2fc691d623e1be --- /dev/null +++ b/specs/Windmill_Kamigakari Cross Heart!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56163e7ad8fccf0d7815bd60368a044e03421caa5d1b856146f0ed385cdbd8e1 +size 237615 diff --git a/specs/Windmill_Kamigakari Cross Heart!/spec2.png b/specs/Windmill_Kamigakari Cross Heart!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b63c111d8e4aee652477df10e2b0e6d590f58aef --- /dev/null +++ b/specs/Windmill_Kamigakari Cross Heart!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da32e99bf0d2301bd8f182fa552dc22ba7a9aa478d85df109d05124a746c34b +size 216611 diff --git a/specs/Windmill_Kamigakari Cross Heart!/spec3.png b/specs/Windmill_Kamigakari Cross Heart!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..ab80a674d00e3a902ebdf749e22b64ab33011cbe --- /dev/null +++ b/specs/Windmill_Kamigakari Cross Heart!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc68ce15fd5e124fc4e73dae9076f6b1612c947d7b88d11f433fad35047d86ad +size 284918 diff --git a/specs/Windmill_Kamigakari Cross Heart!/spec4.png b/specs/Windmill_Kamigakari Cross Heart!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a32a3bccfa424c5b02e09ea72f78477a14618654 --- /dev/null +++ b/specs/Windmill_Kamigakari Cross Heart!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7e3d184d824256409a7572bae786769e35ab2f74d441ac4501db75b39390ac +size 271991 diff --git a/specs/Windmill_Kamigakari Cross Heart!/spec5.png b/specs/Windmill_Kamigakari Cross Heart!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d285bcd9407851b04150d9e8a5e19a09450e41 --- /dev/null +++ b/specs/Windmill_Kamigakari Cross Heart!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dd2f7210f3ceed6be1b292cd788d2af10cdf2201694081034115a4d7ce886fb +size 272579 diff --git a/specs/Windmill_Unlucky Re Birth Reverse/spec1.png b/specs/Windmill_Unlucky Re Birth Reverse/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3443482efa5453460778aa316a8168db7a6acdba --- /dev/null +++ b/specs/Windmill_Unlucky Re Birth Reverse/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb47c8e7984b126540d596452f11184dcd7563804be540484b000b672c5cb401 +size 265732 diff --git a/specs/Windmill_Unlucky Re Birth Reverse/spec2.png b/specs/Windmill_Unlucky Re Birth Reverse/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa0d6eca9f880c8751de9c1560888d582817c47 --- /dev/null +++ b/specs/Windmill_Unlucky Re Birth Reverse/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3e858a5512dad26bd93502d69d1649b37163ffe28c07ab6404db2f6153bb04 +size 305060 diff --git a/specs/Windmill_Unlucky Re Birth Reverse/spec3.png b/specs/Windmill_Unlucky Re Birth Reverse/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..74def64eea21e619b0b741c022422089d3c1d41c --- /dev/null +++ b/specs/Windmill_Unlucky Re Birth Reverse/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f192b29ffceacfd4fd2fec5772eb0601f0395a18da975cfd90097ba9794c52c8 +size 296723 diff --git a/specs/Windmill_Unlucky Re Birth Reverse/spec4.png b/specs/Windmill_Unlucky Re Birth Reverse/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..416426fffb4638d94ffaa2f26a5eea530c8414a3 --- /dev/null +++ b/specs/Windmill_Unlucky Re Birth Reverse/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e41363a950a4b8f09e8ea44c16e9b194aebb452c774138f897e8b6f91873f6d8 +size 317860 diff --git a/specs/Windmill_Unlucky Re Birth Reverse/spec5.png b/specs/Windmill_Unlucky Re Birth Reverse/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..78bc7653313a7d15d9f76f6fe2db7a391bb0ccf9 --- /dev/null +++ b/specs/Windmill_Unlucky Re Birth Reverse/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b736224ce928654c1dac88ea89976d2492ce1372fbc25a53c81fe6bfedc16c +size 312378 diff --git a/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec1.png b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0cdde430c964809fde3fe256f5ce05449893785c --- /dev/null +++ b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58ce58a7cb597036515a4833af409d63566002b5b8e776b79d7ed16b241c892 +size 312287 diff --git a/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec2.png b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8fd8b02893b8eb879d617864e077a84732c67cf0 --- /dev/null +++ b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be151dd5a24f9654b8d7d1217e9dd6daa28c6b4d48b65a4f142562b12927671 +size 310020 diff --git a/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec3.png b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6fc9b720be14428fcc547c2ff02c83800641732c --- /dev/null +++ b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be324fdd47e6811697e3fe9fe9a68099856b6309eeae0607fd0b892f20e92c78 +size 302034 diff --git a/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec4.png b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9a157ad294ebe7d25d44d659a50a186d1cb6aac7 --- /dev/null +++ b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb3fadacc91263a4ac529e75f61d8139aa0c4a896ef20a0448d930f3f5542ef +size 219968 diff --git a/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec5.png b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..43b1c1b48281994fc5bfb87496dd51e3160314ce --- /dev/null +++ b/specs/Windmill_Yakusoku no Natsu, Mahoroba no Yume/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0f1c721c53cee150cb64c925c6f5902c459525f2e3575648209539b1dade22 +size 285156 diff --git a/specs/Wonder Fool_Junjou Karen Freaks!/spec1.png b/specs/Wonder Fool_Junjou Karen Freaks!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2db3da0edc008ddfd000925a496a2f415cb8dde5 --- /dev/null +++ b/specs/Wonder Fool_Junjou Karen Freaks!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d7b5d822075fb6a7b9a5c7fe0cc5d2db0046e2469b8535cdb3035cab54bfd38 +size 303191 diff --git a/specs/Wonder Fool_Junjou Karen Freaks!/spec2.png b/specs/Wonder Fool_Junjou Karen Freaks!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..49a7e874ea1485446504367bf0d818f52e85add2 --- /dev/null +++ b/specs/Wonder Fool_Junjou Karen Freaks!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec39d10f9597a2a9dfba5b069b5894037f3e8feebee379ee076f6e2df9b19246 +size 207855 diff --git a/specs/Wonder Fool_Junjou Karen Freaks!/spec3.png b/specs/Wonder Fool_Junjou Karen Freaks!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..20e94346e4fc98f97bf0f7ffa8f5c65d0b5c5f9f --- /dev/null +++ b/specs/Wonder Fool_Junjou Karen Freaks!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c63635015dbd0b5d28514728840c9f99ef4b52e248d9e0340594362bd936825 +size 276465 diff --git a/specs/Wonder Fool_Junjou Karen Freaks!/spec4.png b/specs/Wonder Fool_Junjou Karen Freaks!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..df55852db0ae4bedb1c0e9199dc85441f54d7d85 --- /dev/null +++ b/specs/Wonder Fool_Junjou Karen Freaks!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4f327c184032349b9411c226f7aeb95994dd60dad07b0680195fd75776e299 +size 264911 diff --git a/specs/Wonder Fool_Junjou Karen Freaks!/spec5.png b/specs/Wonder Fool_Junjou Karen Freaks!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..22d182efaa21856e120fe1b45704ca1912f5c5f2 --- /dev/null +++ b/specs/Wonder Fool_Junjou Karen Freaks!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a384d91d641aa6ee7cae3f10f8f95d47f51762ca904f4f4ce37213612ba4e82 +size 253012 diff --git a/specs/Wonder Fool_Kanata no Ningyo Hime/spec1.png b/specs/Wonder Fool_Kanata no Ningyo Hime/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d04a15f524ac2dec2cb6bc36b5d0e9e7210e0948 --- /dev/null +++ b/specs/Wonder Fool_Kanata no Ningyo Hime/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15b4e8421a24638057dd6f7130ea0d86dbf3dac1b0aa751413809db66d4e917e +size 167587 diff --git a/specs/Wonder Fool_Kanata no Ningyo Hime/spec2.png b/specs/Wonder Fool_Kanata no Ningyo Hime/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c0deba655878060c0b2c9b948a7ee88ab5c5af05 --- /dev/null +++ b/specs/Wonder Fool_Kanata no Ningyo Hime/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58a255c5ab13d9465251b6fb6fe6ca4fb7dad9fa60932ae6f77243c924bb906 +size 199408 diff --git a/specs/Wonder Fool_Kanata no Ningyo Hime/spec3.png b/specs/Wonder Fool_Kanata no Ningyo Hime/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7c2efeaafbab5be607160aea332b9b89f79634ce --- /dev/null +++ b/specs/Wonder Fool_Kanata no Ningyo Hime/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100073745801d8203c93c861d39c5e94089a0b6ec7bfee0ce758a2d398a974f0 +size 261666 diff --git a/specs/Wonder Fool_Kanata no Ningyo Hime/spec4.png b/specs/Wonder Fool_Kanata no Ningyo Hime/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..69430e9c1bcb7400512a7fe1b2c6ee88a50aa865 --- /dev/null +++ b/specs/Wonder Fool_Kanata no Ningyo Hime/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b73b76ac46a36af35bacc894518866023e8c9de738e5dc020102d7c5d6f0da00 +size 246836 diff --git a/specs/Wonder Fool_Kanata no Ningyo Hime/spec5.png b/specs/Wonder Fool_Kanata no Ningyo Hime/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1029a449c3b18e7513a3a66bb0763474152ddd26 --- /dev/null +++ b/specs/Wonder Fool_Kanata no Ningyo Hime/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f91f782b2995295a9f57292080aed79dbfec17a598f9b3517c735b5f34279c +size 166742 diff --git a/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec1.png b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c689a4ae71016369680794ed56ebd1f78b1c07e3 --- /dev/null +++ b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fe60a8bc7d435ab831dcc7c8899b52f666b66dbd4b8b4759c6365708ea650c +size 219554 diff --git a/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec2.png b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0b89ba695e1cf5e1428a7f8c33095dfd886341d3 --- /dev/null +++ b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08b745d4e247d60aa73d4daf462e3dd2c04164dfd1142d08761d6a9bb30641d +size 258285 diff --git a/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec3.png b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..81c803e0ff8dedd3573fadbcd2970c43703ac2f3 --- /dev/null +++ b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15267b2c4a27319366470ecde9aef236a793dca9eef3f676738af21ec1e9b00 +size 222245 diff --git a/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec4.png b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f5f89c4984a0bf4632b0978dfecf48107ea5cfdf --- /dev/null +++ b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b0f4da039a3637e83d0930e4fab85916d642260bba5e6930e4332bd0692aa8 +size 266039 diff --git a/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec5.png b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..754d8aed33d9cec567a43b33785cc8202c0c94c1 --- /dev/null +++ b/specs/Wonder Fool_Maokatsu! ~Maou to Yuusha no Idol Seikatsu~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb7946bb65f322c7fc64856d4949f73976ff009cc052b54d80fa5ebcc267209 +size 230860 diff --git a/specs/Wonder Fool_Natsu no Majo no Parade/spec1.png b/specs/Wonder Fool_Natsu no Majo no Parade/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4845cafc4e69366ebd8b70c6d0691c5f7009ffa9 --- /dev/null +++ b/specs/Wonder Fool_Natsu no Majo no Parade/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150edefff04c363720fa70a455b8ae6f4b6a5bd2b2791b9ca35781ab2fb5432a +size 293992 diff --git a/specs/Wonder Fool_Natsu no Majo no Parade/spec2.png b/specs/Wonder Fool_Natsu no Majo no Parade/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..840cde0f9d050a423d775cf1ae2cb4713138dde3 --- /dev/null +++ b/specs/Wonder Fool_Natsu no Majo no Parade/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2b8af58b5f405ae0271082fc937b11395a2f1e3dceb426cc707eba4e723684 +size 202627 diff --git a/specs/Wonder Fool_Natsu no Majo no Parade/spec3.png b/specs/Wonder Fool_Natsu no Majo no Parade/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a0f48e0a0873f85edc90c3f548a65adfba95e8fa --- /dev/null +++ b/specs/Wonder Fool_Natsu no Majo no Parade/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec5168d5dc5c5cf3b74ee92d9a9ca22ccfd4e969ca0da774ff8773a45eca8e4 +size 224519 diff --git a/specs/Wonder Fool_Natsu no Majo no Parade/spec4.png b/specs/Wonder Fool_Natsu no Majo no Parade/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5c191f20c9433f187bb13249b3570b12436e951d --- /dev/null +++ b/specs/Wonder Fool_Natsu no Majo no Parade/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c696dffc99dc8f4bb7a584ac9bffb4a172aa3da15637f2916684ee5b8948ec9c +size 171940 diff --git a/specs/Wonder Fool_Natsu no Majo no Parade/spec5.png b/specs/Wonder Fool_Natsu no Majo no Parade/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d157355a48b970627a374f15cf443a2ac6f8eee9 --- /dev/null +++ b/specs/Wonder Fool_Natsu no Majo no Parade/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008114b685a30cc58fde80de4adf555c5d7d90667f51831eb1432d9417e67dff +size 326911 diff --git a/specs/Wonder Fool_Yukiiro Sign/spec1.png b/specs/Wonder Fool_Yukiiro Sign/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2dbdba4772ed7109c4e35642ac1cffea24079bdb --- /dev/null +++ b/specs/Wonder Fool_Yukiiro Sign/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2382e3a06f1c230287d57ef33adc63ca9cac1087be2b16106f99ef3049600cb +size 197528 diff --git a/specs/Wonder Fool_Yukiiro Sign/spec2.png b/specs/Wonder Fool_Yukiiro Sign/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bf8e5888959df9a3ac0fa6a200cfe2e4e5e974a4 --- /dev/null +++ b/specs/Wonder Fool_Yukiiro Sign/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273b2613d5596e18f2c96ef18aad5416b253e798308cc47018bdf4c89cce1b8d +size 254571 diff --git a/specs/Wonder Fool_Yukiiro Sign/spec3.png b/specs/Wonder Fool_Yukiiro Sign/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8d6cac5bac92f5c911dbf2c0a5f0b7c5ba853e28 --- /dev/null +++ b/specs/Wonder Fool_Yukiiro Sign/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caada8bdee57c92718dd08f9477fab40b2bcc644a1a680a8001d2be7d7e056d4 +size 174539 diff --git a/specs/Wonder Fool_Yukiiro Sign/spec4.png b/specs/Wonder Fool_Yukiiro Sign/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..60c1276f3c527bb2fab397ed9781d642fa6b6324 --- /dev/null +++ b/specs/Wonder Fool_Yukiiro Sign/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369422d529f662907e694180d43d6c5a0b4ceca030c6559a133c459dea631869 +size 272273 diff --git a/specs/Wonder Fool_Yukiiro Sign/spec5.png b/specs/Wonder Fool_Yukiiro Sign/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ff675f7dd32161fa34175f5ff5531debc91072cc --- /dev/null +++ b/specs/Wonder Fool_Yukiiro Sign/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee8381c47ab8bda433682004d97dd12f072075f71079fda50b5f3d1e71aa1b7 +size 170201 diff --git a/specs/Yuzusoft SOUR_PARQUET/spec1.png b/specs/Yuzusoft SOUR_PARQUET/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1a365cebc446506f01f1fba950c0970c03694d71 --- /dev/null +++ b/specs/Yuzusoft SOUR_PARQUET/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f89fc4dded56f2c00ed51d1a169af396f76f71fc451106d4de62ec80336296 +size 321586 diff --git a/specs/Yuzusoft SOUR_PARQUET/spec2.png b/specs/Yuzusoft SOUR_PARQUET/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..22186940fcb007fca45f044b56057163bc8be460 --- /dev/null +++ b/specs/Yuzusoft SOUR_PARQUET/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e7286f32991f67ec6c91abc3285fc931312f3a95bc8310a6d50d8b9b128386 +size 340848 diff --git a/specs/Yuzusoft SOUR_PARQUET/spec3.png b/specs/Yuzusoft SOUR_PARQUET/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3352236b8f22d721a5f8a7ccb9a2c63f3dea412b --- /dev/null +++ b/specs/Yuzusoft SOUR_PARQUET/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ed22548010d7cb115827128e7a44d9f7389725264800c6dc09ecd94c9a1e38 +size 355411 diff --git a/specs/Yuzusoft SOUR_PARQUET/spec4.png b/specs/Yuzusoft SOUR_PARQUET/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..85afe78eba348db00cdf58fe15affc54d8f489e0 --- /dev/null +++ b/specs/Yuzusoft SOUR_PARQUET/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a3c23d56c8c006e3496ed2dc690a33a9fe8bb6d7446f7c42c9aad6018bc04e7 +size 348098 diff --git a/specs/Yuzusoft SOUR_PARQUET/spec5.png b/specs/Yuzusoft SOUR_PARQUET/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..76a6bb0e9096ed5a2d72d7cd0a6f9ae842f45d55 --- /dev/null +++ b/specs/Yuzusoft SOUR_PARQUET/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d269b3154f0ac2b3f8a7261fc2a6c217a80ea58cfd2f39971682a255056d2236 +size 331530 diff --git a/specs/Yuzusoft_Amairo Islenauts/spec1.png b/specs/Yuzusoft_Amairo Islenauts/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ebbd4d84b1d042fc2c2296949ec4cf73ec4c5b4f --- /dev/null +++ b/specs/Yuzusoft_Amairo Islenauts/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124654f0fed38eb2761d322907b230839f7b89aaf4dfffd7beb2ac4ccaeb8215 +size 307198 diff --git a/specs/Yuzusoft_Amairo Islenauts/spec2.png b/specs/Yuzusoft_Amairo Islenauts/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3d42895e681cde68bb97855175558cbf5a7c83d9 --- /dev/null +++ b/specs/Yuzusoft_Amairo Islenauts/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4235d37fe102defd59a7574ecc078bff15d78caaf282ed4c38bd0ddef3ed70 +size 318088 diff --git a/specs/Yuzusoft_Amairo Islenauts/spec3.png b/specs/Yuzusoft_Amairo Islenauts/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d56ac2bee5e8602e148864ad5b0237ef850badfd --- /dev/null +++ b/specs/Yuzusoft_Amairo Islenauts/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a60fd9cae179de18bfc66d2291761b48dc7aea374a64a39acd403b2239b718 +size 297548 diff --git a/specs/Yuzusoft_Amairo Islenauts/spec4.png b/specs/Yuzusoft_Amairo Islenauts/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..31944d89595670ab6497b04d96c2768cdef1e95b --- /dev/null +++ b/specs/Yuzusoft_Amairo Islenauts/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8fe73f8a3a36f9d0c614fe24dcf753faffd65e2f5984f3df8446904df19886 +size 315653 diff --git a/specs/Yuzusoft_Amairo Islenauts/spec5.png b/specs/Yuzusoft_Amairo Islenauts/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d42baa11b14fca7396f73e55535bf326951d026e --- /dev/null +++ b/specs/Yuzusoft_Amairo Islenauts/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2ef45d4aaee1109cf6ff6c3d9d55edafd680b94cb6863b407f2600b7183191 +size 301927 diff --git a/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec1.png b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..959e3ba6306d16db3b215e6e2b86b3d0365eabc1 --- /dev/null +++ b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f64ef2397e88b05c2f58f55dc01d7a707671e2eff24128fd1bb500570d96040 +size 333612 diff --git a/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec2.png b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c1374d858d55e074ace55e2d0fb97255bb1ff985 --- /dev/null +++ b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6af436c45178d672097190e7b93f516f3a2ef9e9d6035a0e8fb2712d1f95827 +size 317523 diff --git a/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec3.png b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b1622a2461f6bbcd2fae62a13681b5f60dc19687 --- /dev/null +++ b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe70ea1f9c2afc25ece4d900afbbd89a8eafafea231fed961f8a08bfaec1ec0 +size 322981 diff --git a/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec4.png b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a6453d94844cf2514b03cfdfbc89248d8c2be793 --- /dev/null +++ b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7253981bb1abfe47e47fdb7e7159cdf3bf06f22e7232a7537b6665f43c65766f +size 321789 diff --git a/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec5.png b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4429d3ef0080c2798777caf77d5278f387affa65 --- /dev/null +++ b/specs/Yuzusoft_Cafe Stella to Shinigami no Chou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b457579c201f22b7e7028100a216ce8f94c880f2ea542569020f9f93132b1fe +size 321060 diff --git a/specs/Yuzusoft_DRACU-RIOT!/spec1.png b/specs/Yuzusoft_DRACU-RIOT!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f9386ff11434c77c29e4bf11ad961eb2ea2bb213 --- /dev/null +++ b/specs/Yuzusoft_DRACU-RIOT!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7515d202897432ac1b1c67ba118d11609cd8dcc95417355f7930b38d919bdc5e +size 335543 diff --git a/specs/Yuzusoft_DRACU-RIOT!/spec2.png b/specs/Yuzusoft_DRACU-RIOT!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1add69259815e45c70f0346389cbfd4903fa4419 --- /dev/null +++ b/specs/Yuzusoft_DRACU-RIOT!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75035ba139015f2b5ff361c7b193173dcbf197be046f0c58ab68741660f2b240 +size 302597 diff --git a/specs/Yuzusoft_DRACU-RIOT!/spec3.png b/specs/Yuzusoft_DRACU-RIOT!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e9c4f40e1fb64da44a56aae3209d2940f30cf90d --- /dev/null +++ b/specs/Yuzusoft_DRACU-RIOT!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d1c5a7e98339b4e457ff333af0c54fbbc13cd559688c879e10fcac766a7ecc +size 306416 diff --git a/specs/Yuzusoft_DRACU-RIOT!/spec4.png b/specs/Yuzusoft_DRACU-RIOT!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9324cf4ed9bc18328da6bc164470716f4d7b92e6 --- /dev/null +++ b/specs/Yuzusoft_DRACU-RIOT!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9acda6356686c66042b3e10c5c612f8dd272338134618d6503635fd946c6f528 +size 300953 diff --git a/specs/Yuzusoft_DRACU-RIOT!/spec5.png b/specs/Yuzusoft_DRACU-RIOT!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cc6e5a8e784575092dbd6ebb19a93e1e252fb0e9 --- /dev/null +++ b/specs/Yuzusoft_DRACU-RIOT!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cba5e7f24d33abbd212c285b648328282262d24daddcea44dd5212ab3373d0 +size 333702 diff --git a/specs/Yuzusoft_RIDDLE JOKER/spec1.png b/specs/Yuzusoft_RIDDLE JOKER/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..98959a5d2fc727c6fec9d51ad74850f202454fc5 --- /dev/null +++ b/specs/Yuzusoft_RIDDLE JOKER/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2856f554f04cb3b03a326f11ae391fb11ae77f502f34bbbc884420baae37ba11 +size 305415 diff --git a/specs/Yuzusoft_RIDDLE JOKER/spec2.png b/specs/Yuzusoft_RIDDLE JOKER/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..578cd6b0c4ea5b4ce450f79ebb5db33f39318199 --- /dev/null +++ b/specs/Yuzusoft_RIDDLE JOKER/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4ce88e9f6dce4c64107089890259c3dac3e1ea30ba8314a01fbaf1fa655f96 +size 303440 diff --git a/specs/Yuzusoft_RIDDLE JOKER/spec3.png b/specs/Yuzusoft_RIDDLE JOKER/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd8b1737e0a4fac46c1e690c3d3605044e920d2a --- /dev/null +++ b/specs/Yuzusoft_RIDDLE JOKER/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076b4ca597fbe979c4d4ab5783c03b6812bc70e5df2d51a68a7b1e04213be59a +size 303507 diff --git a/specs/Yuzusoft_RIDDLE JOKER/spec4.png b/specs/Yuzusoft_RIDDLE JOKER/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0de8440a36706db0a2b6cfb083c5506203f3bf --- /dev/null +++ b/specs/Yuzusoft_RIDDLE JOKER/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb29f8ce25a34a873c46ff3a0e9a704e661cf349057c9746d271aa27848dd883 +size 301620 diff --git a/specs/Yuzusoft_RIDDLE JOKER/spec5.png b/specs/Yuzusoft_RIDDLE JOKER/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..521ddde2bbc95b74eefc00b666934f40924c210b --- /dev/null +++ b/specs/Yuzusoft_RIDDLE JOKER/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea1a15ddf0ebe433cbb967a604a936aa8aea5f99aaef30aaebd7bad1cfdcbf2 +size 303822 diff --git a/specs/Yuzusoft_Sanoba Witch/spec1.png b/specs/Yuzusoft_Sanoba Witch/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c533f22a28e671069627a6598dc65a95bc919b42 --- /dev/null +++ b/specs/Yuzusoft_Sanoba Witch/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4405a31ccf304d04f509b984cc958c49dc65427cd3c46bce9930c0bb8b43c8e4 +size 307116 diff --git a/specs/Yuzusoft_Sanoba Witch/spec2.png b/specs/Yuzusoft_Sanoba Witch/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ee099594f73db6718c228d061d3230c2fe0bc2b --- /dev/null +++ b/specs/Yuzusoft_Sanoba Witch/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dda8a5fdabdc4098a551692e9f2a0c7a3853cbc3e6e5f9750e7bdbecb2b1cb7 +size 312675 diff --git a/specs/Yuzusoft_Sanoba Witch/spec3.png b/specs/Yuzusoft_Sanoba Witch/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..868e603fe340ed83fe78fa4f9b30edbfd6ed2117 --- /dev/null +++ b/specs/Yuzusoft_Sanoba Witch/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9474929e2c1dfcf3de5897765aae368b13c712f6017c72c135745d0a61acc897 +size 307693 diff --git a/specs/Yuzusoft_Sanoba Witch/spec4.png b/specs/Yuzusoft_Sanoba Witch/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6ba93459d5d4fe01f342b857abba7d61dedbaeee --- /dev/null +++ b/specs/Yuzusoft_Sanoba Witch/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465438cf2d3e01720ddb02d2cb5d06f5d69c14d782e018a931b0c15f4dfa9831 +size 312487 diff --git a/specs/Yuzusoft_Sanoba Witch/spec5.png b/specs/Yuzusoft_Sanoba Witch/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..97ebb6260aaa042c51110215a1de3e492f9c414e --- /dev/null +++ b/specs/Yuzusoft_Sanoba Witch/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d35887bed3a7e72687360b061cb0a6fab15eb0b84892b53352145d776e7f19 +size 310762 diff --git "a/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec1.png" "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..fe4669c4446aff83734060b0895a1079e234daea --- /dev/null +++ "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91699533e0dfc2e30e60d41a7c40d25229c345f967019fbe73ddccded4a0044 +size 315571 diff --git "a/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec2.png" "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..116c3ca507150306aff8995f467d23ae47bdf1d5 --- /dev/null +++ "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd193a547e3f9f5b449643bf8df90d1e3ca1801cc00b7d00e267de1ee6849b6 +size 265678 diff --git "a/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec3.png" "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..fdba408ebc717f6729ef04b4dcedd66529aaec75 --- /dev/null +++ "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a9774c8984bc5f755f6182454b4534be5bc2733a6642e2fc3fd77b96608e215 +size 265458 diff --git "a/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec4.png" "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..4506e408f73dbf12de55cc751577d2b8c6ec7b46 --- /dev/null +++ "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b96ecc4886398844d7c25a41ce9281e237b74fe00598e642f5e881e9c1f3a2f4 +size 309805 diff --git "a/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec5.png" "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..617c4088a07a255bfff91457e764eecd4799c8c9 --- /dev/null +++ "b/specs/Yuzusoft_Tenshi\342\230\206Souzou RE-BOOT!/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e2080e1721fb7437309fb826d92a711ef3b5713a32bcac34792737af16f12f +size 339874 diff --git a/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec1.png b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..eda1dafe869913b4e53b19c2070b4319d97a04a5 --- /dev/null +++ b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab300c1b0ced7d44593e5ab64ba6bb25a49e5844e55fefdc16645ae7c1d1f25 +size 347745 diff --git a/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec2.png b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..38c216f5584c13702c24ee6209aa34f3438d3afa --- /dev/null +++ b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832327c65bf605b015bbf2d3cf6588cb8a78dea5ccc519062b4a9058d4220b47 +size 350869 diff --git a/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec3.png b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6443f1cd31cf602e7cb7ba1adefa1c22afd77abd --- /dev/null +++ b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196b55ced2b7a149c3648940f1bd09f3c87a20c826e00c756fe0d8a86370f8a9 +size 334007 diff --git a/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec4.png b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f7b12a2bff6bbffb6388a1c51453f1294918035b --- /dev/null +++ b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fac58bb5b18fb075573443b26fef69d5591a0811fd89587f3d6ef50b1bc2cb +size 342875 diff --git a/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec5.png b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3ad8bf38003a8746840b315e05e2d1a5ad4b049c --- /dev/null +++ b/specs/catwalkNERO_Inmon Tougi Toshi Sodom ~Daikanshuu no Mae de Kyousei Jutaisaserareru Seisenki~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0713a863bbfb0065874dc9394e1ba0d91db45ae44830408baef91f301e859e96 +size 336495 diff --git a/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec1.png b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..07c9fdfbb21bf701139b6ff79894f8b235542f42 --- /dev/null +++ b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0927b5e5921eacd2086f93435ab5a564d290a21bcf6958005c21e3818ec2048 +size 321323 diff --git a/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec2.png b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..701051aca2715d5b721ff0b8ca4f7b8dd303bc42 --- /dev/null +++ b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be631e7f0f824a07f67903d1e31699bb36369986e8c8efc36cf29fefe59ab3f4 +size 340445 diff --git a/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec3.png b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b6f15683b4b7fa4c795823ca1c05bf29c28fa9b9 --- /dev/null +++ b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ddeccd256d65f115076ebcb1a7eefeb4a2af10b76fc30d893ffe408471662b1 +size 347325 diff --git a/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec4.png b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8bb0e9acd65255f817e2f4e6bc0af780c8a41473 --- /dev/null +++ b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce567695e120d73032f30c48d651b7a3c18433d5ed02803fd97d1ffc0482df46 +size 329146 diff --git a/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec5.png b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e0fcfff0608c408d0703f44281a5fb5ffc494a6e --- /dev/null +++ b/specs/catwalkNero_Anastasia to 7-nin no Himegami ~Inmon no Rakuin~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b15f40138cf4c2b05c2b935bea58fed18ce4e8a72ef80ceb5f14736cd3b7eb +size 350534 diff --git a/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec1.png b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..daf37a692fe131b2f2dc56594e08b58236e0fa32 --- /dev/null +++ b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb5a2003411f3932b6675b8b49140a75a1e1f7036e79a1837b0360b1b0f6e40 +size 317131 diff --git a/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec2.png b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..abecf20ea66e3ff1962c25acd728032ef255afa0 --- /dev/null +++ b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab55f114901d2b40d47d43aceabdafc011d5f94857f59d9d328da2c87ba9df4c +size 315127 diff --git a/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec3.png b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..93c4bb8f00ab7c2194300f6e406d770204e425ff --- /dev/null +++ b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f334bdfe15274e5aba9ec0967d89bdfce74e3e9be333d3607bd5fd08e3fa264 +size 298475 diff --git a/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec4.png b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5eaa10a5aecb339540f35b83046421d4f3792c7f --- /dev/null +++ b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e13e1a4487251fe8a9df02e5260abedfb09234e0bd058cd5479f21562f462c91 +size 312978 diff --git a/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec5.png b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..391a5f12fcc2031c13a695e7bcefa0a384121395 --- /dev/null +++ b/specs/ensemble SWEET_Boku no Sukinahito no Sukinahito wa, Josou Shita Bokudeshita/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb75d2937db1ac076a4872cd5c46d73632b58310359f3b16a4ed820abdb6f9f0 +size 300758 diff --git a/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec1.png b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..64c6b8925c257016b15eaecc157f5618cda50218 --- /dev/null +++ b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de0b6e87e1ae000137ec4c82a0807cb2fc08f41ecc9486768ef7a67de612e58 +size 227991 diff --git a/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec2.png b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf52ebddfe3b71101b93efe8ec94764e6d1041b2 --- /dev/null +++ b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427533a487f9fbfcaf6035276e549aaf0486a6674c39145fb51c31f5a86a412f +size 294026 diff --git a/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec3.png b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4e55370b2f8818dde17454536b118f33d8a37a26 --- /dev/null +++ b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1743c447c5836b4c8b9241b70b24bc022e3a4b0690c3ec6e2f7d0748188c5b +size 269380 diff --git a/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec4.png b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8fce817f066ab3fcdfe0c682d398e12c11e659ad --- /dev/null +++ b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d70bac794511b306e5a0d31622bc11e694ffe7aad250ef4d142b481f23a9964 +size 301909 diff --git a/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec5.png b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea27d26f03ebae21553ddb6b9e53a26fb31c959 --- /dev/null +++ b/specs/ensemble_Damatte Watashi no Muko ni Nare!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563d76573a6c3bfce06b23039f100409d2dd83b074e731e9c405fcc6321a34c6 +size 278354 diff --git a/specs/ensemble_Golden Marriage -Jewel Days-/spec1.png b/specs/ensemble_Golden Marriage -Jewel Days-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..167a8e7fd5ee3dcbbe962bf3073bba1a5ec1a0ab --- /dev/null +++ b/specs/ensemble_Golden Marriage -Jewel Days-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14e51bb4b33c2067e959b2dba922f059d198d4c442968ff73f0ac1bad97ae36 +size 298560 diff --git a/specs/ensemble_Golden Marriage -Jewel Days-/spec2.png b/specs/ensemble_Golden Marriage -Jewel Days-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..812d6ee921d3d5c554d03c9ec909fa04e9ea76ad --- /dev/null +++ b/specs/ensemble_Golden Marriage -Jewel Days-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e93e1b7584fe250a17e44e62a3ddb6d9e829a06c2a20364f1882d6b583a618 +size 322146 diff --git a/specs/ensemble_Golden Marriage -Jewel Days-/spec3.png b/specs/ensemble_Golden Marriage -Jewel Days-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..724b3928128483edf51ce5ba5bcffdd58d015281 --- /dev/null +++ b/specs/ensemble_Golden Marriage -Jewel Days-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2febfa0c71ac559f6c18d741af2d487391e5bb89a89611c700509886e5cf8429 +size 202034 diff --git a/specs/ensemble_Golden Marriage -Jewel Days-/spec4.png b/specs/ensemble_Golden Marriage -Jewel Days-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d6f48420be28156204e4403a4b59ceefb81fb87b --- /dev/null +++ b/specs/ensemble_Golden Marriage -Jewel Days-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:822c7daee8bcdf1c7325f4f2390a783e5e89c39aee9e4cb7ae83616d46985830 +size 254745 diff --git a/specs/ensemble_Golden Marriage -Jewel Days-/spec5.png b/specs/ensemble_Golden Marriage -Jewel Days-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..220b158db4d427d44ff07d20a995a1bcc68bd02f --- /dev/null +++ b/specs/ensemble_Golden Marriage -Jewel Days-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3364030a19b5b012d749d07412526d7ca96a4765079a45cdd4bb9599c4d7d9 +size 302179 diff --git a/specs/ensemble_Golden Marriage/spec1.png b/specs/ensemble_Golden Marriage/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e7c4a58b93f9b6f2e5a8438d9f08f8116ef7c60f --- /dev/null +++ b/specs/ensemble_Golden Marriage/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5278ae4475cda82563e6237ac3bd42de74386bc51c7a9c0e5575728c0f678b2d +size 243740 diff --git a/specs/ensemble_Golden Marriage/spec2.png b/specs/ensemble_Golden Marriage/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..151ff78504bda014d1752c8796dee27db282f23e --- /dev/null +++ b/specs/ensemble_Golden Marriage/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25bec6877b2fd89eda92aff1a996dd3c0f71e2d2b43cd077dcaa05bb3d606b0 +size 244150 diff --git a/specs/ensemble_Golden Marriage/spec3.png b/specs/ensemble_Golden Marriage/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d73378b95e9d294a0edd230309c298c67c7a850d --- /dev/null +++ b/specs/ensemble_Golden Marriage/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:242e843312dcd6ae887797ee5742dd78ec00644693cae89751885b8e1b178ad2 +size 264181 diff --git a/specs/ensemble_Golden Marriage/spec4.png b/specs/ensemble_Golden Marriage/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..244bac6383a0fcd63df2dd262d98e703b24c921e --- /dev/null +++ b/specs/ensemble_Golden Marriage/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a3071a58f50399461c3f5673dac48011001f8346a8a90abe0651d5262f272da +size 285513 diff --git a/specs/ensemble_Golden Marriage/spec5.png b/specs/ensemble_Golden Marriage/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..311054969ae7acf95ce183f4e49068fe20add4c3 --- /dev/null +++ b/specs/ensemble_Golden Marriage/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96e0dca700f1d940de6e4ab89b856be137e93d99004575d46e95fbd41180a05 +size 262274 diff --git a/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec1.png b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d531c79cbac95e5d3f1a60f547bcdc2029a598fd --- /dev/null +++ b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847c8d99bedc1fa78100a50b7602508ac5ea0eae0ead0fcdb0da2c2fe1c5030c +size 295855 diff --git a/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec2.png b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bd4fe9e2a0104d5af70660249ab0f2552d8ee296 --- /dev/null +++ b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc0636ee92aef2d5cd160cda6b32d868dca0af865c318181fb34e0d03d30cf4 +size 343976 diff --git a/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec3.png b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..12d166fdf09254a738789acbb2be91a666d85fcb --- /dev/null +++ b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a244ce554e1ccf6eb98eeba5b4f2be771a3138a7691e519fc3a1d8ba8c0a412f +size 302194 diff --git a/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec4.png b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..85a5783d9e0daeb7f1c0fecffbc1e87e24161241 --- /dev/null +++ b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:409d6df97185201a623e8ae0169af63c9ab5ddceb3b7e997943af4174afee46f +size 354029 diff --git a/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec5.png b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4bc30cfa2e3222de7dcfd2ea705b96e43fc7bb47 --- /dev/null +++ b/specs/ensemble_Hana to Otome ni Shukufuku o -Royal Bouquet-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222dff48f83be9e6900a08d50bc5fe8156107585ed0004ae95b847aabcacae22 +size 234522 diff --git a/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec1.png b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3840e894d9a5b61fa4ff94271f4c37a7ef11d8ef --- /dev/null +++ b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46fe08c0e2bc5d600c361e0822a6b022ea7e141b49859a9bcc96e427307f35e9 +size 287643 diff --git a/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec2.png b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..131fa230b42da8306661685f0f7f42b77dd4f109 --- /dev/null +++ b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07fce08ed228c92e623c6315c90008b5d2fcb1ed4e92adef914857edd09f3dc6 +size 288039 diff --git a/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec3.png b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..801973db047cde623f8b9a89f6a4b04fbbcf78ce --- /dev/null +++ b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a1123d1b34bb2e06b0901febf33e7c6e376bc112cee16a9a674f629c7396d9 +size 304241 diff --git a/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec4.png b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..acd64abffe371510a48f151b34ebf22c7ad37390 --- /dev/null +++ b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90867fb4cf6db0da84421d14f4350ac5336d4067da86793c1b21d5e7e6da63f2 +size 303573 diff --git a/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec5.png b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..855f98aebf0732e0b5c6637a0f9e897fbce9f7df --- /dev/null +++ b/specs/ensemble_Hana wa Mijikashi, Odoreyo Otome/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c8a53a78f6c64ced34e7431bf7b4d5efe5d942828d6783a5a9ba4f8d197ed2 +size 296591 diff --git a/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec1.png b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..3730852ba4303fedd3a3d694c239a1a7b5efedc7 --- /dev/null +++ b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62709e9d9f02df38c51e20a586a97807cd8857397e4db0d809a5ca18b6f09f3 +size 282529 diff --git a/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec2.png b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ef621cb3aaf2319023fe4d7fc886dd9071c07ea --- /dev/null +++ b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368be68e7213824438700d5d388d50fac82e61077e85664560dad11b63022add +size 280899 diff --git a/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec3.png b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..68c1ef07e6f7da3243adcf26297846d7b73075a6 --- /dev/null +++ b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9a62700660ae9b09779153b78c668996f7022b801819765e5615910e594988 +size 282832 diff --git a/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec4.png b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ca363913d8549fcb71716f07d9b460a75cfdb2c0 --- /dev/null +++ b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2f1531be5b53635d97e362d83f69035fe2031e08656098ed03ced927c8a79a +size 251195 diff --git a/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec5.png b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..5cebd47b22759a5560dc9b39ae7e8f7b01b743cb --- /dev/null +++ b/specs/ensemble_Hoshi no Otome to Rikka no Shimai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222a7c21ed45889638e621d3afa4efcf57087a88203a82578fc808fa948afb5c +size 293722 diff --git a/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec1.png b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc888e548881c4445e5ed470e8bd22140ca3362 --- /dev/null +++ b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150be0cea0d087cd7afde4e8eb5789bf564796103fb71e9c4510cd023d502928 +size 237213 diff --git a/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec2.png b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..fd37161c97f9d6c371bac875d417538c3b01b527 --- /dev/null +++ b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:922eaa91e114c51afd15171ca500116aaaa7ed85f134c1dda2da4c18d1c5a0b2 +size 283887 diff --git a/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec3.png b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c01e0de39835420da7f6f0eed26a9d46120b96c5 --- /dev/null +++ b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6896fcfbb19e2d42a811ac4be1571e0e92db87ffce7156eb5d81b76d0fd62b08 +size 294065 diff --git a/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec4.png b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a2f954965cd6296a58730b66f8935ebb78b1b96c --- /dev/null +++ b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc406645e96b41303daed2c7abcaa6b70ee0a44bd4ca011b2478578f625b7943 +size 285801 diff --git a/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec5.png b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3722b19e1c290c527efe4f01fcbea1bebe660a6a --- /dev/null +++ b/specs/ensemble_Koi Suru Kimochi no Kasanekata/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb2b94e808d1b31200b29ecc707f2ffd11482bd1cb86398b78233e967d56f20 +size 309459 diff --git a/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec1.png b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e88443a452246ecc753c23e78ee052dbd2a14b9b --- /dev/null +++ b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ab20a2f14c1b80b0c49dd6f46da16bcdc0d20f7af84e3aafe138c7038582f7 +size 306325 diff --git a/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec2.png b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..70eb9acf56f8dfdadd115b1db02956397c4ca39a --- /dev/null +++ b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01878b77dec88f0cd6a5e2786547734a180aa91498419b1a7cf08a4ff6ac0611 +size 312485 diff --git a/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec3.png b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..e109ca4e317afd71a5f37d8daae644c38b96b2a6 --- /dev/null +++ b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0465cecac59babc5b6fac923997f2280f77d0876b3d2ccf4e38a7914b2c1ddbe +size 306302 diff --git a/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec4.png b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..80c1acab851d3c1a8b2d5f04deb889445bcdcc59 --- /dev/null +++ b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f4ba0809293536adbcdf971cc6df95f99f55c890dac6e6ca402a80d6e5ac16 +size 304411 diff --git a/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec5.png b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..47c19f4f9b3b1dae1fdeb4700e93f1595634317a --- /dev/null +++ b/specs/ensemble_Koi wa Sotto Saku Hana no You ni ~Futari wa Eien ni Yorisotte Iku~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7a1192c42ac2b482451265412fd6ad7243552a269f0477f58f2d43ae54160c0 +size 289480 diff --git a/specs/ensemble_Ojou-sama wa Gokigen Naname/spec1.png b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..47affdad1cac463d9ab703bd254fd4501e21a9a0 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2748c292fb6ff66a1be55606b5445021cb369cbde5f7ea18e05206ad5f756b46 +size 283459 diff --git a/specs/ensemble_Ojou-sama wa Gokigen Naname/spec2.png b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d123175dd888bfc7c4252933f9db0930c3e313e8 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93302b8d5fef1401e418c2bc3c4793d63f7e96a8679974935342bc07e27d5e41 +size 304408 diff --git a/specs/ensemble_Ojou-sama wa Gokigen Naname/spec3.png b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f0b37c5ae427aa7db79de420079dc66f8682d5c5 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a229c124ecaf3d97cec2cd1f560021317ef767f7ab95efb5831d3d7cf53cdb +size 302166 diff --git a/specs/ensemble_Ojou-sama wa Gokigen Naname/spec4.png b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a72d29f302d6bed3d666f057c80fc62338e8b945 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a280684a55f1c8d797db01610367b1bb652811fd5e1491d70fe86207cee683a5 +size 323204 diff --git a/specs/ensemble_Ojou-sama wa Gokigen Naname/spec5.png b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..722f4c07ffd12fa29507a59a15a68101367def27 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Gokigen Naname/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14df54f6878e1dd2777c864e44a769b58415bb148c0003b283f42d5d6951cc6b +size 319506 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec1.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..63dfc43d54c964b1e3dcd40a2271b1afcfc2bb49 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ceaac4df2a77d29027b4da97f7ab9b62f6884334a8ff13d9c6eb4dc8a50b85 +size 270407 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec2.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..41910bc8d3ac120567fe9b4c4c36ed125019ff4a --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a6d6102a4ab11b684ff5256aff4b7b0ee4b27a42aa7dcc16125b587bb8bfe1d +size 258950 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec3.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..df265b86f4efaff3ceeeab7b5417138cac548f21 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7330d829efd63e24db540f9765ee883127911a7d8f992b5beb8da34f88ce8932 +size 244770 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec4.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7aa0622b7d70a78a4162820e22b1f20d4145465a --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71dd35f539b79520ace1e3aab363017901ac52d6f1bed149a0e1f8c60ae7a53a +size 243916 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec5.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ba392e7691dcada298bdb4832bb0ad74a414dcca --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai ~Daisuki o Kimi dake ni~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65d0a4987f1844642158334a4ff67b663bcb5b9d54af1a6a8d3bdf360f30aa1 +size 208383 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec1.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..be457cedb134238242e6f9c094fa21b58d323723 --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd79b122e93a03a17cfb616e4977b0e3abaa9958bb547fc7d03167d6f41d39e +size 293179 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec2.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2973ed83b292a51bbf87a2f2308d7f66b32a203f --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e73a0f5df8d39ce6cf591088a9d84f559ce146edd2ceb814872d8b96b30162 +size 319799 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec3.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d5394b17aa86baf27cf740c1ee17bdc5a5ef019e --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a81b8154e80c53adf95bb3a14545e5d968b45a1066f9f07b38e4ed4ae7a844d +size 290386 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec4.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d7b5febb95ace11a560974e8ae05a1e29ccd86ae --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ab4b3a06499dba07f1e3757a79e390b2c5ddec5ebed33e0e443629402ab506 +size 302538 diff --git a/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec5.png b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0560f0596036ddf5399392d4e95637753071382b --- /dev/null +++ b/specs/ensemble_Ojou-sama wa Sunao ni Narenai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb14f9acf7960e2ef188448f5ae7a399aec30099aa056bb6d4d97978fff2e714 +size 278491 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec1.png b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c8a3238fa07da4490a972477fafd228cb9bdb82b --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b2163c744e176c7064e83903347b6e226467b38ef4b4b38ee68ff2265ef1c2 +size 302843 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec2.png b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1a6604832257475fe10bff69886034fea39684d0 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d570ad9a483d62f7f8e07e678e885868e2430505a2f7ff0f0e8815edf88cf850 +size 305387 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec3.png b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6bc57188784f45af1b730f3bcdd44e053298bfb8 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4a1a3c14620df51c1efde7df913d5dbb327d0768d66d71d889b8cd43adccf4 +size 320020 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec4.png b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c23d919252f69c6e98286a3a90d80a11a60d9193 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a1d68690921bcf9183a2a3aa24ffd0167073e4c422e6338781d1fa2343065bf +size 280361 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec5.png b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..144917d924426c63836e172098bdd34b16a030c7 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody ~Afureru Omoi o Shirabe ni Nosete~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fcba161205015650a2e2f5276381737b76e537549b6b4a269f6c23b49452ee +size 309275 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody/spec1.png b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f4336524ce13f5cf6df7a1a1862fc936d7c63111 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a963591c819febd70d480711aa4aa73663e7309eece66b36569e6750a8b2f1ef +size 292072 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody/spec2.png b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b5d304a6dc42fba58106f3c0480fd321263872f3 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd3eba0f15dfe5a2449c73122d4e3e3b342c1cc40d825c8f8d92fb158e9f413 +size 301563 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody/spec3.png b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..23ad3159ebf51403080c42ba7b5f6adcb2aa5db9 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dce9c7d303327a99831c445fe6b7d821430a0ff61ee0b56600533dab62434a6 +size 296810 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody/spec4.png b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..86c6e43ccc008eeb9c433616243d33e1348a7f2f --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1810138703855f63869217b1a93498677c1ba676572f744468e4b5ad66eb894a +size 288202 diff --git a/specs/ensemble_Omoi o Sasageru Otome no Melody/spec5.png b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..89f49af851b1567719b61b829af4250632e26061 --- /dev/null +++ b/specs/ensemble_Omoi o Sasageru Otome no Melody/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b23feacd0802910c17ae2731fb1e539aafd624f1e264a1ed0a8bcd4a34bf582 +size 298012 diff --git a/specs/ensemble_Otome Domain Collab Mini ADV/spec1.png b/specs/ensemble_Otome Domain Collab Mini ADV/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..dd846194f9bf5173683e60d6c45f9340310b9fc6 --- /dev/null +++ b/specs/ensemble_Otome Domain Collab Mini ADV/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e83963dde08b6446bfcb19968954312554139c45a3ad688ba295aa98f322e73 +size 326098 diff --git a/specs/ensemble_Otome Domain Collab Mini ADV/spec2.png b/specs/ensemble_Otome Domain Collab Mini ADV/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e05115d3bffdc6f06a3eb62aad73de5e9c3eab36 --- /dev/null +++ b/specs/ensemble_Otome Domain Collab Mini ADV/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07a0c4ad9282dabd6a1331eb4c3e972fba7ebf6806b699809a80dcae7f59ec0 +size 308737 diff --git a/specs/ensemble_Otome Domain Collab Mini ADV/spec3.png b/specs/ensemble_Otome Domain Collab Mini ADV/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a5491ccd60827f36f6cdd0e5784dfd75bf5bac5a --- /dev/null +++ b/specs/ensemble_Otome Domain Collab Mini ADV/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d8b14c480945765ac27ac81d76acf7263c3ae9bbf66465231ea32174124aaf +size 315075 diff --git a/specs/ensemble_Otome Domain Collab Mini ADV/spec4.png b/specs/ensemble_Otome Domain Collab Mini ADV/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c6797be1041b9ca003fc1fc7dfc6535e373bdbcd --- /dev/null +++ b/specs/ensemble_Otome Domain Collab Mini ADV/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2994c1050e8c5f8b056bd5ea2bedd8554cd0d156d8ec27772d9dc2dae49128ce +size 320366 diff --git a/specs/ensemble_Otome Domain Collab Mini ADV/spec5.png b/specs/ensemble_Otome Domain Collab Mini ADV/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..40c91a73302656c2730d49ae1e97c6a801665c3d --- /dev/null +++ b/specs/ensemble_Otome Domain Collab Mini ADV/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731009bb3200feaa160f0309e0dcaa583678c78bb6b997bf63fb6ed0bb1f0027 +size 295763 diff --git a/specs/ensemble_Otome Series of All Star Disk 01/spec1.png b/specs/ensemble_Otome Series of All Star Disk 01/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e66f37f7ef37dc9d73191ea0ad8e2426c7853773 --- /dev/null +++ b/specs/ensemble_Otome Series of All Star Disk 01/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac41379dc729c75b1c9d20ed9cfe802c4fbd3e5d6a4287b40148cc85918a74c1 +size 329900 diff --git a/specs/ensemble_Otome Series of All Star Disk 01/spec2.png b/specs/ensemble_Otome Series of All Star Disk 01/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a9b4d712b915f78ba0162d2c6a9d4a3adc32fe16 --- /dev/null +++ b/specs/ensemble_Otome Series of All Star Disk 01/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d587b93367f65d0e8df7d4e34d3c949b195a6bf7881d4b8bd2cf1839a81140ca +size 323817 diff --git a/specs/ensemble_Otome Series of All Star Disk 01/spec3.png b/specs/ensemble_Otome Series of All Star Disk 01/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4aabd5a72c4daa6ab3503fd8b210c173f50ed8f9 --- /dev/null +++ b/specs/ensemble_Otome Series of All Star Disk 01/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501fe5084ea1934832b15ddaa446d0ef2e5d332fbeacfc12834001d243175d2a +size 312771 diff --git a/specs/ensemble_Otome Series of All Star Disk 01/spec4.png b/specs/ensemble_Otome Series of All Star Disk 01/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..83680b4742a019e41b70acec70fe0d4dea587557 --- /dev/null +++ b/specs/ensemble_Otome Series of All Star Disk 01/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9dddcede90fba9bfef56823765ddec735bdd75b5e1c3006e87d69a83cc03b66 +size 318776 diff --git a/specs/ensemble_Otome Series of All Star Disk 01/spec5.png b/specs/ensemble_Otome Series of All Star Disk 01/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4d92e03ced0aa37ab7b82e64496649e096e81751 --- /dev/null +++ b/specs/ensemble_Otome Series of All Star Disk 01/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8bc9328f454ad7d6c80227d487b041e6eb236e977269dc40ecf244a73b26700 +size 338928 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec1.png b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1551479e21eccd13b9e332dcb856bccdaf9a0f35 --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeea9a72c344f28ffb6bf212fb530c02cc09d1e6ef68a108e24361e2bbdb9504 +size 287657 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec2.png b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c2585c11f01740cb310f6953ce0f6d2d43af79b1 --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73012bf56aa3133005d45a5eb8b8ba93bc51a2e0b866920ee43646523eb26586 +size 325056 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec3.png b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..adc10ca2085bb31ce3116f70b09ea6f7f8b8999d --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173350655f87d95de8da8f7485229a8730284a444a48f1c83c037ca3e02588e5 +size 316022 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec4.png b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e97afef203bdabfc9f2d187cd9c8105e3fa70a3c --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d06e565ab8f4318643f5a29c63b0aa3d36199cde8fbc07a29ae6f5ecf8726a +size 335287 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec5.png b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..40083e7fda43c974e3b0b783f307c0946f85404d --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence ~Egao de Orinasu Mirai~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1d793951f8f1e458fffc4d9b1d2aec4e10ae2980d199a8b9576445d6f8e6fa +size 315458 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence/spec1.png b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..37ad761e3bd0deef29415e18787cca5bf65d189b --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f4c9f5b8a6cf2e2ef5fb33b1ba2d132fdc213353fc5999d7b8038ef1632889 +size 324421 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence/spec2.png b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c6c10d91d669e90714a6c31b3a18e380d4c95e0a --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cff98ee6611ee8ad5d721c4b417634681b9db66fa4be21fcc9f695c7b17766d +size 319833 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence/spec3.png b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..21d7d22cc12afd3bf62a55a0db4dd603aa79d280 --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad55d6e3d52a065e9e89cbeafb2db56b44cf66c81b506defe208cc175af558d +size 322715 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence/spec4.png b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..345735a534125a233b4a57ebb0afb7745739d8f9 --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7504a74b1de6af6e27fe41a84fb06633cde57f4350d0ed48066bc297737444 +size 319625 diff --git a/specs/ensemble_Otome ga Irodoru Koi no Essence/spec5.png b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..95e3ced4cc061fc22b725abe59e1c297e4cbab2e --- /dev/null +++ b/specs/ensemble_Otome ga Irodoru Koi no Essence/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ab705287caff028c75894fee83f754dffd7a6f956bd6a9a16adb4fadd94bd7 +size 318948 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec1.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ee8d3f8df586a66b706661418f4cc5c824f07b60 --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6b01309bc3730f425d78e0bdcc189c5158b3c6fc9abf19fcebb66abc43c23c +size 259255 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec2.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..f518ce7c652b80c8948ef83335305dfeb02692b7 --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93cc7e9e63160583cda8bcd52193fc4196801bc146d2c5ab262919a03229958f +size 287990 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec3.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a7016bac4a7102d6fdac90d61aeddafe2a6a71ba --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551842032ec0df293a197014d93d6f279fdc1b8d2eb0b1c6513fe56080557ed4 +size 294118 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec4.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c84570ee8454d60192490218f4d09c40bc7502bd --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7803b46513404c6754df71591da6c55db4bd49aea4aff735b93d6a9bdebb26c7 +size 197741 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec5.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cd3e116669a7f5f1bfdee282767770d11ce1b4e4 --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria ~Kimi ni Sasageru Encore~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813890e11be3c541a5fc0ad6a576b3800488e0084eaaa63b139324507bad8a85 +size 278634 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec1.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..89cf2271ba6f4ccc56b6044a52310ebbde09f706 --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387bad18f93e939ba280322939b36c5c1288370250b0313015594bc8884db370 +size 296774 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec2.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..77ec0f9f9ed6d96d9c6b5b04a659d1064f92b224 --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ad9f538b9fb37643884fd4af9be5bbc851a1d6a35a40d63bbe0c0afb00d38b +size 287674 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec3.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a863efc93f9c79846aadcd3432fa917756317399 --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92df168089ca4dc65a28caad80c04fc2052f2f0bad4af314f564827403027229 +size 261229 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec4.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b8050ea6baed8c0f075453948f6e214df8aa0eac --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b605eaaa37970fa86599599db3d0ee46f31823fc2c427d0ba3417bf573179087 +size 292028 diff --git a/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec5.png b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3601a20a85c19677adeb917cdda9a1f374dfbaed --- /dev/null +++ b/specs/ensemble_Otome ga Kanaderu Koi no Aria/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252500ed0194fc5700e1d2a90a33d8f06ed07d03539f683d271f176a3bf2aa60 +size 313078 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec1.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..80787c19b1fa05c0493aaba0840265fc2f68d587 --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ca31449c27ce9d80238b901962d058768cb00769898387d7aed30a67538bb5 +size 291033 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec2.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2102d0d5898aa839fbdbe32ba0923fb4f60295da --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f720b9c599263233d12308684feeb1dadc8f0a193229bf7d6e4b16c41b05e9 +size 295709 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec3.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cbd9937a5ad9514880d97a8339398a79f030f47a --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efcc224ebee096feaacd9c814aaf1eeb0427c9abb06b97bffdce6deecef08f6 +size 288146 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec4.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..545cc7a8179e99dd69ad0b94964e82c972de85ea --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18de7840d56ff5ac0abd0a086d970230fd5bf74c8633008ef8f5c90a5787c0dd +size 307264 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec5.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..62459a6653ccc51cdd21d67ea1fefef6666e2d03 --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki Fullmoon Days/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d474930b3cf01f7d5614e02509db20f2d28b819c7c28943fea051a76d68c7bb9 +size 252921 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec1.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..ea3fda8b8b7688391f709c72c35e60276b000402 --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5a5a58c2fa3ace96bf43286252bcbc346b70ea7c0847deca604eba339c75a3 +size 273194 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec2.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..99e0a1a978a2d7c39c7da8dbc0eca399ef319e3e --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a2e4545758d236640ce811d31b26d715771f51b3cea9d19d55b146c9976263 +size 288494 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec3.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..232b04be95d12232429c93807884cbbc0a5dec33 --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e494c6bb904e441337f690a53947de07248ae3326b0caf24108209f80cda98f1 +size 237290 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec4.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c0ead5e7aeeb90891d04c28e8ed4c64fcf8f5d61 --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0f5b3f90db0cf3cb69c3d77882a30a2a8a4a6556abcb8cd36fb5bfc972dd20 +size 247482 diff --git a/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec5.png b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..54b9b734a608d020a327fe6e07aeb07171b2b1bc --- /dev/null +++ b/specs/ensemble_Otome ga Musubu Tsukiyo no Kirameki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526222057fbecf2bcb055e321ff8e4d1203184720dfb80aa69f01f47de51f2b4 +size 291965 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec1.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..22acdcf9154e7b708cf1d2699df2662af5cbcaed --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5400fb7b3926afdd50f0c59bd0bfd54dffb1c3f5b69a8ceb75dc6a6f9efdde73 +size 298957 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec2.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a3821d3004e4b00111d3f94f966299e6e3ab1ae8 --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7347a58d4cff75cb93088a59ce99e97e1c2b240879d4019da2ea5b9f19bd064d +size 327099 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec3.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..8bfcd36acc46ddb04e0d1ce59709946b9eaf3c0d --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45635d1ba2562f6dde293369c8d7670297e66dd4ca300b22daee58f80ad59ae +size 326113 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec4.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..072f0a5a9df4df9ad40c8a69e91be44b758743c5 --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d9762e38a12dd6dedba01645806d718d75c96eb7c760277de00d283e904eaf +size 313110 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec5.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..060ef65fe8039835dc5437bcca3320cd60bcba08 --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas ~Futari no Gallery~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbaabf6ef4cfe3d473ede95f0b1ff12d4bce64451f0f0d07cff2a84cfefd6f8 +size 323400 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec1.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a104d97f53cab72420e39244038d7a9d833ce655 --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60cd0b07bc261c29f7269f74e260fd0d4beed5ecec940b57fc62342fc6740056 +size 326260 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec2.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..67661f169a63dd8fda988263a05a2d57fbe785cf --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6b5d76d254be59533ae52b2acad8b12eaf698b10ae2da73b2ad2470b999c94 +size 312290 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec3.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..48dce8ee3e196b1653fd71222663a7bab13f5aaf --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64078ff2d25cd7165de7aecc629807b65542ef2f76ec7e2b3f3b7dabdd02b8d5 +size 193385 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec4.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..774596a0f700489f7aec4ccf9285ff41aeb9a591 --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e27c1fb25bbfaf2ace2874476805392f3816b492a17e992cc7368a8f90e851 +size 318709 diff --git a/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec5.png b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4f845669845d38ce84d8e9cc0d1dcacf3801dfbd --- /dev/null +++ b/specs/ensemble_Otome ga Tsumugu Koi no Canvas/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17f006ef921437b1572b87e245c274c011c5811be3ed2d8aa77d9d92ff1e8d4 +size 319719 diff --git a/specs/ensemble_Otome no Ken to Himegoto Concerto/spec1.png b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2d050f7ef02ae36b881612281eeb54d222bb5316 --- /dev/null +++ b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ec14cec7fbbb87136eb749bf9e0dee5ff1e95174164519f1fb713f61fe9647 +size 311184 diff --git a/specs/ensemble_Otome no Ken to Himegoto Concerto/spec2.png b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e4f739569573b683ac239bf8a9e68408b57cebb --- /dev/null +++ b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a74dd4f0f1d6232ec529e7166dfff4b9e8f593a27dcec8cbb66363d6125894 +size 257534 diff --git a/specs/ensemble_Otome no Ken to Himegoto Concerto/spec3.png b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..826d062e64a8402c7828a74339b928ff16954d16 --- /dev/null +++ b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbff75f49fdceff6936ba15686c4d5f9692240b3b1c77afe21a955cfd82c968 +size 256251 diff --git a/specs/ensemble_Otome no Ken to Himegoto Concerto/spec4.png b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a30c613e99ab2068725bc9d951e18b0b051f8e0 --- /dev/null +++ b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0a9e0525d7f3f5960fc91c7600b107c396cd6d904552e4fda8e738fb054f74 +size 260411 diff --git a/specs/ensemble_Otome no Ken to Himegoto Concerto/spec5.png b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..38310e6a422b0b0d96009859368add06366de433 --- /dev/null +++ b/specs/ensemble_Otome no Ken to Himegoto Concerto/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:416c1c340d0a62af7903553c1e9b1c16082557d9730c31b5b875e4ef8b657985 +size 265066 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec1.png b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9a5acc43219ba341e286bedb37bec9fb83b6b269 --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf99ba64bdea28515413f9312c260c2cef451deca9d950a369dc854312d2fc6 +size 300739 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec2.png b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..d31fca5c1a339346febe5dbcb2ce88f3b114c213 --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebfc324b0a85042dd36f8032efc7c2a1f78aea38e9931f137d26b5d0fe45601 +size 300308 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec3.png b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..26a216cfd5c238c90790af0205c2750eb86f20c3 --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47073e5128a258f0b2a6e72f69fdb7be0437fac687e13f790381b50bc96c8d9b +size 287725 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec4.png b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a5883d7e004c8ed3d03604287ec49b3ba154bac --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467239ec5f1e0d32921fbaaae97f011ba75a664f6010c71cd2d257b7c6fe6c97 +size 280574 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec5.png b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..42cc7544069a167e1d051784492111571c8071d1 --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo ~Anata to Miru Fuyuzakura~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf4d0425d95a92daccfa85d0ef153851e3e72d7ce4f231d6a08fcae9ec9eded +size 315967 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo/spec1.png b/specs/ensemble_Sakura Mau Otome no Rondo/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a2fa57a640ad913f4333326f700d07d352fdb79c --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b1c302d18dd31b1e4b98ac48b5c6bc370a7519fab8141ce97a2f3f205918e5 +size 322831 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo/spec2.png b/specs/ensemble_Sakura Mau Otome no Rondo/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd1a5943058f196f9222445c64ea8c807caaa45 --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a9d844f83623bdbce2b39771ae59eaf7d89a3cefb079fb76e94f58522762b3 +size 318878 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo/spec3.png b/specs/ensemble_Sakura Mau Otome no Rondo/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c34a2378d47a9bd7e112068e6fc2c401eb19907c --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d481c98ee4e2000c72b283ceb630503d67f1711d811b8086875314d102978d95 +size 276537 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo/spec4.png b/specs/ensemble_Sakura Mau Otome no Rondo/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ead150c8977b624825c662e624cf00d604167b11 --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f485a5c8723d078c69a5e8946afbcae0e9cfa7cd414b13d3606db94bb7a0a3d4 +size 247796 diff --git a/specs/ensemble_Sakura Mau Otome no Rondo/spec5.png b/specs/ensemble_Sakura Mau Otome no Rondo/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..abaeaf3d9c86e44c616735133a30b67b4bafa857 --- /dev/null +++ b/specs/ensemble_Sakura Mau Otome no Rondo/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc30dd993ac1e26196523d2d7eca89df2627a160a0e068e863f1c59bf7da995 +size 330661 diff --git a/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec1.png b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ae3f3bcc2da8ec75d5aed8ad4c8f5ec460662b --- /dev/null +++ b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c355a9e841117684a63e56714ac08aa540e6c5a1a72d4bb2088a1f532cb5b8 +size 291138 diff --git a/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec2.png b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..02a98ff3a2234fe09cf2d9884305f93bd96f732e --- /dev/null +++ b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f476afdcf848303e87a7992193026e6bf61ee338f4991240d1e7323675bd72 +size 270497 diff --git a/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec3.png b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b7e28a8e74ec96e227f9e328c6afb6f332a253f8 --- /dev/null +++ b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d022b721c3815787fe662860c072e124e62d5c26e75b6f4ecfd4c4cf1369c7 +size 292265 diff --git a/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec4.png b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..12161a31c3e4ab72fc1ff6e0384af9c95d3b48ea --- /dev/null +++ b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc3bf6ee589672de2e1d85e64cfa2e73dd5f9b8ec5c2b66ff0bb39194c5ee812 +size 306699 diff --git a/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec5.png b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..d568daee1ca8b5c98ca51274b622fdcbc979c3ea --- /dev/null +++ b/specs/ensemble_Secret Agent Kagebana ~Shadow Flower~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a3811b357ae3dc943d89ea40cfaf8440b2f6e16353f86236a878a27f443fe7 +size 319931 diff --git a/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec1.png b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b1d28aec8f782d6ea96d715e857b558837041405 --- /dev/null +++ b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c7461f7f88a2cebcf45334d9a697b17bd3ca0d050d7114bbf46df6265c39fa0 +size 300476 diff --git a/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec2.png b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ab07d585f59b4786799008fd756ab8236289c30f --- /dev/null +++ b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230ef38828514d7bfbf4a4b9cb1ee6e06ae6d3fc86e02bd2c46aa174e0fc4a0f +size 270796 diff --git a/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec3.png b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cf77467dead49e415d632f26e288ac757e6a1b1e --- /dev/null +++ b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328d872ccf52b90f44a4f232c40fa41ff54cacf5b3469c25150176261f28f036 +size 250287 diff --git a/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec4.png b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..e7aa753377c9265f22a32b2d551d82832ac1fd13 --- /dev/null +++ b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593e8251f0da974343494e86ac1d4920bac968ae5a54a7d5cf5696eca91e5ac2 +size 248166 diff --git a/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec5.png b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4982b5b16e29f723ee7e6c668aaba33c8000497a --- /dev/null +++ b/specs/ensemble_Secret Agent ~Kishi Gakuen no Shinobi Naru Mono~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0875435ce7b95c639dfde4b31aae119f47e778d2ade127360e65da5446fcfb03 +size 290302 diff --git a/specs/ensemble_Shiny Sisters/spec1.png b/specs/ensemble_Shiny Sisters/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..284edfdfe72dc5db2ba2b6f65f116690621acd85 --- /dev/null +++ b/specs/ensemble_Shiny Sisters/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d851d10cffa9e6d0528d6874ae581fe6ee2774e5346c9d814eb26018e44d5ac9 +size 311364 diff --git a/specs/ensemble_Shiny Sisters/spec2.png b/specs/ensemble_Shiny Sisters/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..38c77e5848046fbfa2636ecd58036bbc7cf03eca --- /dev/null +++ b/specs/ensemble_Shiny Sisters/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c7f6bdb207057ecdf95f8d2aad825a3e1bc6e752b6a11e1d64b6b8b11d88bc +size 262008 diff --git a/specs/ensemble_Shiny Sisters/spec3.png b/specs/ensemble_Shiny Sisters/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c4d454e9b2de1ac158a7adc8b81d4d7c795ef4f2 --- /dev/null +++ b/specs/ensemble_Shiny Sisters/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e31bfeb70347d31489a364281a24af157c879541a86d1c847cc2c65c5ae5d822 +size 302122 diff --git a/specs/ensemble_Shiny Sisters/spec4.png b/specs/ensemble_Shiny Sisters/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..5c672775a50ee6d531d5b3fce9d223af4f26c02c --- /dev/null +++ b/specs/ensemble_Shiny Sisters/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e8e04276b5699cbbbc0afd67ed1e63a3b1b6cb63a3703fe8ab287fc371398e +size 287377 diff --git a/specs/ensemble_Shiny Sisters/spec5.png b/specs/ensemble_Shiny Sisters/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..e3038962e2b5d07e24301ea4b18d73453c774e3f --- /dev/null +++ b/specs/ensemble_Shiny Sisters/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d54596d33d034dbe7e685ad47d58e04f0f03bf7e76d3ea384f24d62aa60bb3 +size 253299 diff --git a/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec1.png b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b2bc9787712c836ab76e1880bb278d114cfe2c96 --- /dev/null +++ b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61dc756230ce730be96c68aeb493acf7c68521cf49328b3953cb9ed9d983d58 +size 318964 diff --git a/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec2.png b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c9fc47d4229aacb94e86ba7f85fc32bf0cbcaf5d --- /dev/null +++ b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734154f42985f5f3d0ffe20774c69baf28a47df5311ef69d11f07c3c6b72ce82 +size 317984 diff --git a/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec3.png b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c586c2dc10c97d6829cbc8f9bbbb69120b07aa7 --- /dev/null +++ b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8efb40d32696d0521c83d61eeae60ad79c1343a570feb4655462bda63dd602 +size 303874 diff --git a/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec4.png b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..ced014c6da92a6be7d00c7adeb484efab2410004 --- /dev/null +++ b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa8c9c72e7306a7c5a90ace83d222202fa24146b94baec175ceee570d5c3182 +size 318942 diff --git a/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec5.png b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..99803cfb2fc456cf09c0553eacb8be2d48579c7b --- /dev/null +++ b/specs/etude_Nanatsu no Fushigi no Owaru Toki/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc2fce62993ad404567c5c070d00749fed679a2a3f2241de9c20a9baed180b1 +size 322265 diff --git a/specs/feng_Chiisana Kanojo no Sayokyoku/spec1.png b/specs/feng_Chiisana Kanojo no Sayokyoku/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..614a71fdcabccf06204721258025b772baa96e8a --- /dev/null +++ b/specs/feng_Chiisana Kanojo no Sayokyoku/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b00440ade28b30621289303ee9e5c8463390a2e13f109f8e1d94bc92da15e42 +size 335550 diff --git a/specs/feng_Chiisana Kanojo no Sayokyoku/spec2.png b/specs/feng_Chiisana Kanojo no Sayokyoku/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..3de66a8fc903537fb57d68d67339c167c732eb2e --- /dev/null +++ b/specs/feng_Chiisana Kanojo no Sayokyoku/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a2246bbe7966c011ae9ac4397c7b47081029ce0978726c2d5d5c7bcf023494 +size 332406 diff --git a/specs/feng_Chiisana Kanojo no Sayokyoku/spec3.png b/specs/feng_Chiisana Kanojo no Sayokyoku/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6d5dadfb716425c459841ea99683ea15d31d6a5f --- /dev/null +++ b/specs/feng_Chiisana Kanojo no Sayokyoku/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d755eb28d6be077d4787d7987c059be5a826fab6a03ce14d13d913b347759d +size 333621 diff --git a/specs/feng_Chiisana Kanojo no Sayokyoku/spec4.png b/specs/feng_Chiisana Kanojo no Sayokyoku/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8f0e343d840b74f980783c5ce8549ef9bf5a425e --- /dev/null +++ b/specs/feng_Chiisana Kanojo no Sayokyoku/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acacc70c91ee2a6408614160afbe6600673888bc86a5f83d7b126a0f86e31111 +size 346440 diff --git a/specs/feng_Chiisana Kanojo no Sayokyoku/spec5.png b/specs/feng_Chiisana Kanojo no Sayokyoku/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4c67732d34d66e5c26e39df2de0ca346ab3f4ebe --- /dev/null +++ b/specs/feng_Chiisana Kanojo no Sayokyoku/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c059cdf37ebbfb40b089b800115c537cd04e8249d09f79567af6e2e2f097bfc +size 334292 diff --git a/specs/feng_Yume to Iro de Dekiteiru/spec1.png b/specs/feng_Yume to Iro de Dekiteiru/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..e2158de934799208dd0d224a5702d8681774ce34 --- /dev/null +++ b/specs/feng_Yume to Iro de Dekiteiru/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76eb3cfc82701c54c63528238a135574b5416ecd28ee0348f8aefc68cf9335e8 +size 268907 diff --git a/specs/feng_Yume to Iro de Dekiteiru/spec2.png b/specs/feng_Yume to Iro de Dekiteiru/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..dad056496e74f1e60cbadeed69d8fd4ae1489a54 --- /dev/null +++ b/specs/feng_Yume to Iro de Dekiteiru/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b19bcc69dd41799585cb17084bd2fc048ab60d5c8e1ce6042248f379931514 +size 324374 diff --git a/specs/feng_Yume to Iro de Dekiteiru/spec3.png b/specs/feng_Yume to Iro de Dekiteiru/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..35856b55e5ff733115f44ea586c700b6d1b4c71f --- /dev/null +++ b/specs/feng_Yume to Iro de Dekiteiru/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90765ea1ae5f0db79b69724cdad810ed8eed81403c2dd8fb21953e42bf594e7b +size 258090 diff --git a/specs/feng_Yume to Iro de Dekiteiru/spec4.png b/specs/feng_Yume to Iro de Dekiteiru/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9fdefd927278c2b71ddae2fc78bda48c633b0c72 --- /dev/null +++ b/specs/feng_Yume to Iro de Dekiteiru/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6699b5124fa764de3725eaab3817a6f22b93387dd97a5583681a4cbdc4b8fd +size 294548 diff --git a/specs/feng_Yume to Iro de Dekiteiru/spec5.png b/specs/feng_Yume to Iro de Dekiteiru/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a00394da4b097d8d4813036e247411840320d596 --- /dev/null +++ b/specs/feng_Yume to Iro de Dekiteiru/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e355f55b6a8efd6dc4271ab62850b2adc8bc3b62e08135e71b2a27bb6beccb59 +size 272666 diff --git "a/specs/hibiki works_LOVELY\303\227CATION/spec1.png" "b/specs/hibiki works_LOVELY\303\227CATION/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..59945a32148697b3973a92da1be1846719a062f0 --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8c20edf7201e1d3d2be1318628e711d3407b9245d49e18881f65d83ace517f +size 313491 diff --git "a/specs/hibiki works_LOVELY\303\227CATION/spec2.png" "b/specs/hibiki works_LOVELY\303\227CATION/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b602bb35192e89ff2ce35fcd9bced8fe9fe2a12c --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1aaec13d006e37ff7d023ff080e9cd0c30f318b7e625467cb6761933d513bb +size 318995 diff --git "a/specs/hibiki works_LOVELY\303\227CATION/spec3.png" "b/specs/hibiki works_LOVELY\303\227CATION/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..e8f65281ac593fee11925728df257f846343101b --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b2793465f5a69460d96f84663cfacef21d1714faeb0e1a1fc0b04e2b8109da +size 333490 diff --git "a/specs/hibiki works_LOVELY\303\227CATION/spec4.png" "b/specs/hibiki works_LOVELY\303\227CATION/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..20b642e1ae395f96af486c5bed0ad482bd05d1d1 --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f03eff12ca3fd0c11a943bfa87187880fd3f6198932d6111bd9b9902eb5a36b +size 304957 diff --git "a/specs/hibiki works_LOVELY\303\227CATION/spec5.png" "b/specs/hibiki works_LOVELY\303\227CATION/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..063ca1b4472348b6c85187aa6460ddc2fff8810a --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6e9f931593bcc3453a3e4d3ce612ca2758b6c549e05c99849d0174f15c0152 +size 319670 diff --git "a/specs/hibiki works_LOVELY\303\227CATION2/spec1.png" "b/specs/hibiki works_LOVELY\303\227CATION2/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..4e38c5ec03db412f4bde905c6990cdfff62068f1 --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION2/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec50365d45d0c9a73db849e717a1d2f4e52f2d96a3a28739ad0dcc80973182a1 +size 331723 diff --git "a/specs/hibiki works_LOVELY\303\227CATION2/spec2.png" "b/specs/hibiki works_LOVELY\303\227CATION2/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..b017f6005817221e40fc08f652da9ce2aa343be8 --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION2/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6fb011e5ac6df6034dfe12fb9e5d22ebb68ed1498a266b378572a6ce773d538 +size 345439 diff --git "a/specs/hibiki works_LOVELY\303\227CATION2/spec3.png" "b/specs/hibiki works_LOVELY\303\227CATION2/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..aaa77981d54490ae2f0ca62f5b4c05102c345cf1 --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION2/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab138959bd6800a744835ea2f9f1f0c3b0a457e5a51f0a771ab7d66a52f28486 +size 351111 diff --git "a/specs/hibiki works_LOVELY\303\227CATION2/spec4.png" "b/specs/hibiki works_LOVELY\303\227CATION2/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..761502678a88081548cab2ceb5b293734a52efd7 --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION2/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a735d59ba39db9db1b783e16d076cab1fd9b55e9c04d073be629dcb7376a6f5 +size 350871 diff --git "a/specs/hibiki works_LOVELY\303\227CATION2/spec5.png" "b/specs/hibiki works_LOVELY\303\227CATION2/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..ff89c4c6924592efccf3148f5a7539af5ab73ce6 --- /dev/null +++ "b/specs/hibiki works_LOVELY\303\227CATION2/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64740cf6053960b79a426e6d04fd30b946490a259ec1f72cc89cef3e5d940bc6 +size 354031 diff --git a/specs/hibiki works_Natural Vacation/spec1.png b/specs/hibiki works_Natural Vacation/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d546c688c6ad9fcf69fc90b4701d9f14e90018a0 --- /dev/null +++ b/specs/hibiki works_Natural Vacation/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04db1f8768540e12cb57993ebbe488c22901d0a07c577d42aa537c3997a12ac4 +size 301785 diff --git a/specs/hibiki works_Natural Vacation/spec2.png b/specs/hibiki works_Natural Vacation/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e31c02896eba77fa0ebb92dd56dd6a9f574023 --- /dev/null +++ b/specs/hibiki works_Natural Vacation/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c72c82651ceefb6db8da81fb56a78df1a3d07df780b38ae52b2a5416cbda89 +size 301726 diff --git a/specs/hibiki works_Natural Vacation/spec3.png b/specs/hibiki works_Natural Vacation/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7420f51968d2d08de2518aaa344ab5a48aa18c84 --- /dev/null +++ b/specs/hibiki works_Natural Vacation/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6f4f573423ba43f00093e07dce1bdd6154ad97c9ed98fe36346a338b9679de +size 302596 diff --git a/specs/hibiki works_Natural Vacation/spec4.png b/specs/hibiki works_Natural Vacation/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f531027cbe3b33b26305e22f10e00b3a94d5e066 --- /dev/null +++ b/specs/hibiki works_Natural Vacation/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3db93f3df57598314c0aff38834b840d6a946a8ba6b58cfdf567a63031a113a +size 288694 diff --git a/specs/hibiki works_Natural Vacation/spec5.png b/specs/hibiki works_Natural Vacation/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ab018d06c11243ea4e0ca807cde87a552985fc86 --- /dev/null +++ b/specs/hibiki works_Natural Vacation/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e9feed3d590d120ca6fef160510485a756988dcab2c28b9c3fa9fa9a74e933 +size 283706 diff --git "a/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec1.png" "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..ad75a765deb974e9573011a6ea14f7fc8deb59bd --- /dev/null +++ "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dad12e2c4877fd268e55788dad65efe3bd2bb3036aea0ab00f5a30f1c3e6a76 +size 301861 diff --git "a/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec2.png" "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..2b432249efcc25d5170f8c9d9b2ed3b5be6cb387 --- /dev/null +++ "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0b7ee140e3671df36f40282c868d54bcea7c1cff803c8333de5c407f119ec9 +size 307841 diff --git "a/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec3.png" "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..7c4774c4f447c831c43231b297499d0e3dbfb479 --- /dev/null +++ "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c9cc0a529ba5697fcf36256d732b78f5b44b0d090a9ae2163a229dc302c397 +size 293538 diff --git "a/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec4.png" "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..8bd6101de026d16b9ea7abf6dcd24351e0143099 --- /dev/null +++ "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61afa54bbad89fe190714e64232c9fb20a6758e173db7aef4054e2e7e594741c +size 298365 diff --git "a/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec5.png" "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..482f91700e122e37f9c7e75b8e7fde2332ca3d1f --- /dev/null +++ "b/specs/hibiki works_Niizuma LOVELY\303\227CATION/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba317215bdbba49a440ac7b389de43a9fc1fb4fbaf157b876e799f12f9f5a44 +size 311772 diff --git "a/specs/hibiki works_PRETTY\303\227CATION/spec1.png" "b/specs/hibiki works_PRETTY\303\227CATION/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..a7db6e9fb37bea52ea4f947fa25326f1b8c321ad --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b19bd904148438a57ca1cf0d67167f659715bf106ebfc01e663877a212d87c +size 300779 diff --git "a/specs/hibiki works_PRETTY\303\227CATION/spec2.png" "b/specs/hibiki works_PRETTY\303\227CATION/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..e12e2bc6652e48aa691b5a208f4f89bc8746eaab --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48fc0f968bcb03653ea47c9c9d2d0bdfc0199a183bd110d36a259ceac960f798 +size 314296 diff --git "a/specs/hibiki works_PRETTY\303\227CATION/spec3.png" "b/specs/hibiki works_PRETTY\303\227CATION/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..bf085c1b9d4e7b7e5db9517feeb0516783dc615d --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59810fd36d0f05113147571c41ae150cfcce4cf0d5822bac058c7a060ce20565 +size 293609 diff --git "a/specs/hibiki works_PRETTY\303\227CATION/spec4.png" "b/specs/hibiki works_PRETTY\303\227CATION/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..f0f577de3bef92638a9fb8c1c84ce8b10e0daee0 --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eda3837846ab6cfab5b62ee3e36fb15b742f5857f468bbdb189ce69a250e892 +size 272974 diff --git "a/specs/hibiki works_PRETTY\303\227CATION/spec5.png" "b/specs/hibiki works_PRETTY\303\227CATION/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..c51d7e7e318e9993da55c03bb2edebb8b2d2f5b5 --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4849c2d304608fe11ba5f2ef4bbde234f7a259c9ea0949445446d313354392f2 +size 296970 diff --git "a/specs/hibiki works_PRETTY\303\227CATION2/spec1.png" "b/specs/hibiki works_PRETTY\303\227CATION2/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..a4e5768dd160fad8a575a85fcdc3813c38aa11f5 --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION2/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4a14cf34ca80b75bd3b0c491ecb0b31989d1f74c2452024cde8ea3cde7b496 +size 294640 diff --git "a/specs/hibiki works_PRETTY\303\227CATION2/spec2.png" "b/specs/hibiki works_PRETTY\303\227CATION2/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..130cc7d5beb263f97e3a7429a10fdbcf7e85deed --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION2/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0edb63bd156304233d2b703c0d019ca14861bfdefd1f229593a2a633e7f1e9 +size 305431 diff --git "a/specs/hibiki works_PRETTY\303\227CATION2/spec3.png" "b/specs/hibiki works_PRETTY\303\227CATION2/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..f63d2a9ce2966c9c7222529599be0bece2c7dc31 --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION2/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37840ba59600f8d59cc84721622e8894face1ffc3fe4fee6d36741fa9f9b1dd +size 276764 diff --git "a/specs/hibiki works_PRETTY\303\227CATION2/spec4.png" "b/specs/hibiki works_PRETTY\303\227CATION2/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..f5d8c07949412602465ba04b701006caaa64ca55 --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION2/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8a93e86c19f1930baa487d9f713a13535388c2dd8054d200447e7327a9ab6c +size 294543 diff --git "a/specs/hibiki works_PRETTY\303\227CATION2/spec5.png" "b/specs/hibiki works_PRETTY\303\227CATION2/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..7acf2633003af15776eeebf1a385e31c74bcaff9 --- /dev/null +++ "b/specs/hibiki works_PRETTY\303\227CATION2/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34d74c04f4599c6b725d5695a4bcc48bfdf5b85acf8df6fd51d6d13e888ccc21 +size 276516 diff --git "a/specs/hibiki works_PURELY\303\227CATION/spec1.png" "b/specs/hibiki works_PURELY\303\227CATION/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..7acc219b87822681d8abe1c6d662ec9e952039f0 --- /dev/null +++ "b/specs/hibiki works_PURELY\303\227CATION/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652c0a91abb744ffbc220d7823bfcfee13a1f1a990497b85e46b1600095621a7 +size 304425 diff --git "a/specs/hibiki works_PURELY\303\227CATION/spec2.png" "b/specs/hibiki works_PURELY\303\227CATION/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..504633899d6885b922251491b8cf677ce67b576a --- /dev/null +++ "b/specs/hibiki works_PURELY\303\227CATION/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac77de0c09ea8a755188a47dd57a3c9fbbdace037af26bb5a797883a7ed1812a +size 282703 diff --git "a/specs/hibiki works_PURELY\303\227CATION/spec3.png" "b/specs/hibiki works_PURELY\303\227CATION/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..b70d5b415650f9026224e52f7aee327ed9f8e8b7 --- /dev/null +++ "b/specs/hibiki works_PURELY\303\227CATION/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cac78e975557a6dc9998e66fb3cece38fcf2d12b213a3206abc36408f8c0c84 +size 299471 diff --git "a/specs/hibiki works_PURELY\303\227CATION/spec4.png" "b/specs/hibiki works_PURELY\303\227CATION/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..2b572234e5b5cd8c5d0b9b6310316203ad4be5d8 --- /dev/null +++ "b/specs/hibiki works_PURELY\303\227CATION/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df271827a9be47a33c081737937392c142dd2e1bd25e169c4bf2700f8c46f2d +size 304118 diff --git "a/specs/hibiki works_PURELY\303\227CATION/spec5.png" "b/specs/hibiki works_PURELY\303\227CATION/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..59e334ec7a475bfd987a1177119f338573676ddf --- /dev/null +++ "b/specs/hibiki works_PURELY\303\227CATION/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ed8a73a987f687ce926aa4d1a94d58188db4b65745f5c3ebf3552a3073aff2 +size 289144 diff --git a/specs/iMel Inc_Tanetsumi no Uta/spec1.png b/specs/iMel Inc_Tanetsumi no Uta/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c910c4bd4575fbb88cd6f064c2bcea3bbd05d0d7 --- /dev/null +++ b/specs/iMel Inc_Tanetsumi no Uta/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e55c18b7b393ef1ff959401de609c5eb4427411a42bd3d9f845a4a19915610c +size 174522 diff --git a/specs/iMel Inc_Tanetsumi no Uta/spec2.png b/specs/iMel Inc_Tanetsumi no Uta/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..04062248cfa4c209a4d7a3af004d4063e306d46a --- /dev/null +++ b/specs/iMel Inc_Tanetsumi no Uta/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9602230a5c50d09dc572fb6fb1a73953e5ea5171e21660a0c28586a6b4baf5 +size 269386 diff --git a/specs/iMel Inc_Tanetsumi no Uta/spec3.png b/specs/iMel Inc_Tanetsumi no Uta/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..b866753e3d55338ea7734c683e96e158780e441c --- /dev/null +++ b/specs/iMel Inc_Tanetsumi no Uta/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370b845e642e575eb8d9ec453d14693b24d2ff36837fcc090de4bb54407bcf4d +size 257739 diff --git a/specs/iMel Inc_Tanetsumi no Uta/spec4.png b/specs/iMel Inc_Tanetsumi no Uta/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..dde8076380fd49a9a39682ebfa482a5c800692d9 --- /dev/null +++ b/specs/iMel Inc_Tanetsumi no Uta/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38a68086185ae7c28b99abff5240d9be3248f34f1606d4657190f9d76de10de +size 255335 diff --git a/specs/iMel Inc_Tanetsumi no Uta/spec5.png b/specs/iMel Inc_Tanetsumi no Uta/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..7edb6d61948d5e4231cf1362e42d65163dcbe08f --- /dev/null +++ b/specs/iMel Inc_Tanetsumi no Uta/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57740b44e5e8d4e93a69dea66962adec962203f67776d6264784c97fc8c5202d +size 257058 diff --git a/specs/inre_Genpei Ryouran Emaki -Gikei-/spec1.png b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..159511941acac26092bd7a2afbe795ac7930a870 --- /dev/null +++ b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec633657f53e3b423c3ed6bf20b7a44a1df06801230dbf449ba749a0a98d97c +size 291944 diff --git a/specs/inre_Genpei Ryouran Emaki -Gikei-/spec2.png b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..e7f569d9852bdb4b74d5ed13732e8b87e5acd0de --- /dev/null +++ b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a17ab45aed5a2fefac78a78b305e9d87739002dd171ca010b7916024f37d19 +size 298194 diff --git a/specs/inre_Genpei Ryouran Emaki -Gikei-/spec3.png b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..d3c44ce8ab4f7491b4e6766294812bea6923bf39 --- /dev/null +++ b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e640ab1ad99aef6f1d41544f3ae1e842364271a1aec9aaad4a4ed0809baef71b +size 309531 diff --git a/specs/inre_Genpei Ryouran Emaki -Gikei-/spec4.png b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3864f3e32a91f6c1e9b8d7a267376c93b0ae9ccf --- /dev/null +++ b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83afec710505330a321ae4ba9571b8b83006f1ea63a138b1df1ea9ab1ee7a3f +size 309427 diff --git a/specs/inre_Genpei Ryouran Emaki -Gikei-/spec5.png b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2c802c8de99a8cb405369a5bef3d01357cce524b --- /dev/null +++ b/specs/inre_Genpei Ryouran Emaki -Gikei-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddb57d97081303e08aaee9a8a5620694bea3930576bb040bb144f514379b4739 +size 299456 diff --git a/specs/key_Angel Beats! -1st beat-/spec1.png b/specs/key_Angel Beats! -1st beat-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..22d49f8e357cbc033869d406ebc5cd9d5aae0510 --- /dev/null +++ b/specs/key_Angel Beats! -1st beat-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:addd132d4ae3625f378ef18ce6bf9c35cd1f53e83435b079a080391e5bfadbad +size 328307 diff --git a/specs/key_Angel Beats! -1st beat-/spec2.png b/specs/key_Angel Beats! -1st beat-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..26710002a77f84a1620b3639b1a868f22f706f82 --- /dev/null +++ b/specs/key_Angel Beats! -1st beat-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf3a74d6cd3ee6ccbbbf64c989e9cb6e1ce475b451893a4cf410a74b8f22b93 +size 328895 diff --git a/specs/key_Angel Beats! -1st beat-/spec3.png b/specs/key_Angel Beats! -1st beat-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..0d3e91268b92f18cc01bc5819385cfd4ad1dd106 --- /dev/null +++ b/specs/key_Angel Beats! -1st beat-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384de590b9b8ae23950a3cca1412ea6e500ae67eb4354c67c68c02b91e98edb7 +size 321232 diff --git a/specs/key_Angel Beats! -1st beat-/spec4.png b/specs/key_Angel Beats! -1st beat-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fa53d226371f1bbdbfc6ae3d222accd252f89b05 --- /dev/null +++ b/specs/key_Angel Beats! -1st beat-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a0693ba2bee39f1c31c6c3a2dce1daa4ba9fd505155afdaa6ebba78a36d3ac4 +size 319489 diff --git a/specs/key_Angel Beats! -1st beat-/spec5.png b/specs/key_Angel Beats! -1st beat-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..62daa66aed67d7a94a0b85c1b779dbcc8ca4dd47 --- /dev/null +++ b/specs/key_Angel Beats! -1st beat-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4078f67a0da3ebe831efaadb0135c3fb72271c167faae53487b2f76f2f496320 +size 310323 diff --git a/specs/key_LUNARiA -Virtualized Moonchild-/spec1.png b/specs/key_LUNARiA -Virtualized Moonchild-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..0d0be3c4829effac64d406c0d78fc2d4b57fa47b --- /dev/null +++ b/specs/key_LUNARiA -Virtualized Moonchild-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba17e02ee591c8a1961b5b6f45430d3bb43a8426da40d8337cf62f13315f4398 +size 338065 diff --git a/specs/key_LUNARiA -Virtualized Moonchild-/spec2.png b/specs/key_LUNARiA -Virtualized Moonchild-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..52fec865e5366a84f34225c98a54f6451ecf9bb7 --- /dev/null +++ b/specs/key_LUNARiA -Virtualized Moonchild-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93b5ed8aab5866630a341ce0b0b0d44dd86c65a88d39c14388c39bb53fb6ca3 +size 345229 diff --git a/specs/key_LUNARiA -Virtualized Moonchild-/spec3.png b/specs/key_LUNARiA -Virtualized Moonchild-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..68cca203a6dee470f7667e5679cbb578fcbadc52 --- /dev/null +++ b/specs/key_LUNARiA -Virtualized Moonchild-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08128a119de215f23df7b92232f172ec71ee4a5a17dd6dff5eb820a610a1a75b +size 336604 diff --git a/specs/key_LUNARiA -Virtualized Moonchild-/spec4.png b/specs/key_LUNARiA -Virtualized Moonchild-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a0476661a505c7a06fd88acb37bc507841c5ffa9 --- /dev/null +++ b/specs/key_LUNARiA -Virtualized Moonchild-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9981bc907ae6eb30420db167fbb105a03a9dd92802ac826d812fbe02c2272b1d +size 336173 diff --git a/specs/key_LUNARiA -Virtualized Moonchild-/spec5.png b/specs/key_LUNARiA -Virtualized Moonchild-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..c0b55833375a9d07a143c4ad444895a33a33b331 --- /dev/null +++ b/specs/key_LUNARiA -Virtualized Moonchild-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:479acb6e5d5611b5b152ba586d43708106f98fe7918b3be6cb35d44b390a22e3 +size 332121 diff --git a/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec1.png b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f64d1bc5a0552881ca7f9c58bd683e254ed72f --- /dev/null +++ b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2cde1e76aa212227c3337075de5d2f1b52d0e50494771c61defd006e3ed459f +size 360764 diff --git a/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec2.png b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..33c14512cc103a1c9941e30fab2fadc97bc95685 --- /dev/null +++ b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c66ea530b839702e9ddf77beecd68bcc96db6458fa565063b35cc88ea51f9c6 +size 360398 diff --git a/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec3.png b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..abf3029627a5f72edb38d881526e344b23a5f2f6 --- /dev/null +++ b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e9d9300a8fc16b0680f353f1bc23204b6e751749c3adb8f76276579e7bad00 +size 367626 diff --git a/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec4.png b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..059b0f6981baa329171d3904fa5e586ca3a3b804 --- /dev/null +++ b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2eda0b518e28d1dfeb25618d1b0148c5fb314faf0368f24b906a70a10e7b35 +size 355040 diff --git a/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec5.png b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..88ca98605978265db121152ea51a81f696eeb531 --- /dev/null +++ b/specs/key_Prima Doll Fuyuzora Hanabi Sekka Mon'you/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fa31875fb2b08da09615c6232f77bb188474b5e5b2418fd27096ba369680b5 +size 364115 diff --git a/specs/key_Prima Doll Mumei Tenrei/spec1.png b/specs/key_Prima Doll Mumei Tenrei/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8aace9a258ce3e2535a161a2aa47023ca32ffe --- /dev/null +++ b/specs/key_Prima Doll Mumei Tenrei/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e89b4a76387f59859103f73d026d2bafc654fbd7f5a5e5d293ea47337c7fbed +size 357564 diff --git a/specs/key_Prima Doll Mumei Tenrei/spec2.png b/specs/key_Prima Doll Mumei Tenrei/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b059cbb98cda644dd1ef2dd5f261498fc994657c --- /dev/null +++ b/specs/key_Prima Doll Mumei Tenrei/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0d17b582c9ebe6046b83d29d9901b6940eab8f8c7fed1d440e3d9284fc2f72 +size 355693 diff --git a/specs/key_Prima Doll Mumei Tenrei/spec3.png b/specs/key_Prima Doll Mumei Tenrei/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..3c2029ed8d3eb1d71d975da3a4ae566e49977b3b --- /dev/null +++ b/specs/key_Prima Doll Mumei Tenrei/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf648ca6986b2a76b9f6055088d67873ecfe6c0edd227452ec061a83e4363ffc +size 360894 diff --git a/specs/key_Prima Doll Mumei Tenrei/spec4.png b/specs/key_Prima Doll Mumei Tenrei/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..81c48b3569144851dc45c14686f1abe661453eac --- /dev/null +++ b/specs/key_Prima Doll Mumei Tenrei/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefdc2e5f511d06d5605e0ad4a4dd9aef6fe13e11a79df3e3650c7116c9b384c +size 362443 diff --git a/specs/key_Prima Doll Mumei Tenrei/spec5.png b/specs/key_Prima Doll Mumei Tenrei/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1c48137362a2774dbc7a592f997711ad7d60d6e2 --- /dev/null +++ b/specs/key_Prima Doll Mumei Tenrei/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d336134444c6adeed00e5a1d940c09d92432fe9346d59212b188d524d9b32de7 +size 345953 diff --git a/specs/key_Rewrite Harvest festa!/spec1.png b/specs/key_Rewrite Harvest festa!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..4d480c7f39f5d84fbc81f507367fe23304d3a892 --- /dev/null +++ b/specs/key_Rewrite Harvest festa!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505003090c594f40606e1eeb82d0bf19dd90005192586970cd6ce839151f6ff4 +size 359510 diff --git a/specs/key_Rewrite Harvest festa!/spec2.png b/specs/key_Rewrite Harvest festa!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..8b9f25b481e3ffa5bb188b025c68747be556cdd6 --- /dev/null +++ b/specs/key_Rewrite Harvest festa!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d10d658aa3a7c10a29bb9a37e92454e191bc21a9d2aeaed4d0710796c884a90 +size 363665 diff --git a/specs/key_Rewrite Harvest festa!/spec3.png b/specs/key_Rewrite Harvest festa!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bc07e985552f99819fd834d7910e90fcfa4428ff --- /dev/null +++ b/specs/key_Rewrite Harvest festa!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ed53ebe105f48624757768b8e3e6964355812e887af973fb4c2a12c5922c24 +size 362795 diff --git a/specs/key_Rewrite Harvest festa!/spec4.png b/specs/key_Rewrite Harvest festa!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..afecf1e522bd3c1c44d5994e387c1f4219c5985b --- /dev/null +++ b/specs/key_Rewrite Harvest festa!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b08e96405ef0d5d1fb1ef6a8afcead2e74b03963daa4f380db728b83f524243 +size 355554 diff --git a/specs/key_Rewrite Harvest festa!/spec5.png b/specs/key_Rewrite Harvest festa!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..0a460fd9114b1cbc210fe527309bcd193059b188 --- /dev/null +++ b/specs/key_Rewrite Harvest festa!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c849d14c571e40b8f488dc345a2c71e8c48ff237d1cdc72c2ac5c1bd63d20eb +size 363814 diff --git a/specs/key_Rewrite+/spec1.png b/specs/key_Rewrite+/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..de07ff9a4cef17b9b384c59c24f365020566fe23 --- /dev/null +++ b/specs/key_Rewrite+/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:682636e3394f7c70c843cb2e0c7fee876d80744b82f64c1cd08ce017e77ef544 +size 349552 diff --git a/specs/key_Rewrite+/spec2.png b/specs/key_Rewrite+/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d087b53282df7e81e1ee0d4ebb57de5287f325d --- /dev/null +++ b/specs/key_Rewrite+/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc0137a1e190a8fca50cf498e1a43cee4c395c534bde94caff12bc781a8a5da +size 354326 diff --git a/specs/key_Rewrite+/spec3.png b/specs/key_Rewrite+/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..a6a79ff81e880d525dc373ee90da4c25d28379fd --- /dev/null +++ b/specs/key_Rewrite+/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d286ff6ffba6fe51a187cd31f023b7a2cea66f1c6482340634d4403f83908f +size 350096 diff --git a/specs/key_Rewrite+/spec4.png b/specs/key_Rewrite+/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8c36f79fcc546e3faad0fb3fd062288ba368c79b --- /dev/null +++ b/specs/key_Rewrite+/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66cb5cda8f80b3eab06734d4bd4b82769c80397437e8170c4bb48a1778a093f +size 355912 diff --git a/specs/key_Rewrite+/spec5.png b/specs/key_Rewrite+/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a09db2f8343873c92a1a7e2a1c8dc7e6da836ed7 --- /dev/null +++ b/specs/key_Rewrite+/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877f482e1fcda28f758196c35ec540e8fa6eb734802497a2bb22e78c83071fcd +size 320063 diff --git a/specs/key_Summer Pockets/spec1.png b/specs/key_Summer Pockets/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a0b092f1972f7beb1e4f54eee3019c7ec35d5400 --- /dev/null +++ b/specs/key_Summer Pockets/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40322520b491cdd8d73214a4c534dd414744a5c7586f7d18199e3840101e8de +size 300381 diff --git a/specs/key_Summer Pockets/spec2.png b/specs/key_Summer Pockets/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..0812b88eaa6ac2741bb7ee83c574f22a9227763c --- /dev/null +++ b/specs/key_Summer Pockets/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4960ebbc715ac0e182cd204ee976b22218b778844a5ef7132261cad59409bc21 +size 275494 diff --git a/specs/key_Summer Pockets/spec3.png b/specs/key_Summer Pockets/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..575fa292f4d77958542065c34677fe3bdc4ad954 --- /dev/null +++ b/specs/key_Summer Pockets/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6f465f4e517b39ea308f8881b934337f0d34c7d01f0d4878e4386450007d5a9 +size 298070 diff --git a/specs/key_Summer Pockets/spec4.png b/specs/key_Summer Pockets/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..c5e5c5abe387c84229f6de61a7f73e61fa8bf29a --- /dev/null +++ b/specs/key_Summer Pockets/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9689a94053c18f212867805d3d5add54b1f176ba95bad271fe2c67025dc0c7aa +size 304035 diff --git a/specs/key_Summer Pockets/spec5.png b/specs/key_Summer Pockets/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b48af889367ef4af91308788047761feb67c2684 --- /dev/null +++ b/specs/key_Summer Pockets/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6253b4b68060b5edca571cddda311cf85e0e936d732e24457de1a1e7b44d18dc +size 305021 diff --git a/specs/key_Tsui no Stella/spec1.png b/specs/key_Tsui no Stella/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..baa125d2ceaa3c94a88a3cef93101b6ee8ef478b --- /dev/null +++ b/specs/key_Tsui no Stella/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb2109f51a93e6f9864ca4f09c1ffbf0ca9b963e628d9d1a7ed0aa6eaa023e9f +size 362132 diff --git a/specs/key_Tsui no Stella/spec2.png b/specs/key_Tsui no Stella/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..4b14651a642d51c9b646f6a3b47b86f896fca3ef --- /dev/null +++ b/specs/key_Tsui no Stella/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee41fd52110e1ea4ab7acea7563dade230a0183ce87f2dce1feaf5cf9dd2263 +size 358000 diff --git a/specs/key_Tsui no Stella/spec3.png b/specs/key_Tsui no Stella/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..21f49c79a119ffcb33d28861f13257d7603c5aa5 --- /dev/null +++ b/specs/key_Tsui no Stella/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ce68998de18f1d8fdde31a619d3a223b441e1eae01c0ee726767fa1e8b16f8 +size 357638 diff --git a/specs/key_Tsui no Stella/spec4.png b/specs/key_Tsui no Stella/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1aeb7d22a73bf9b10a494c57372fed3ed403e083 --- /dev/null +++ b/specs/key_Tsui no Stella/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba22018c31e581a3cb0a307ffb7ce1d3c5c1d27fd29b0c41014b9e8ec1f5432d +size 354758 diff --git a/specs/key_Tsui no Stella/spec5.png b/specs/key_Tsui no Stella/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..574bafbbf9f76285b6edc77aa246b381f7c4d0e1 --- /dev/null +++ b/specs/key_Tsui no Stella/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a8f101c031686eb21a0cc4a8d5b2f54c9544b153629783961866c8c9a3916b +size 331927 diff --git a/specs/light_Magatsu Barai/spec1.png b/specs/light_Magatsu Barai/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..978d052168b35338e83638726c9aa6a79dee0ba7 --- /dev/null +++ b/specs/light_Magatsu Barai/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6200a9c1e2f01f968c95b08d42f5f5d7dd60f29a7ae24a547c00c5d181c4e8f8 +size 278060 diff --git a/specs/light_Magatsu Barai/spec2.png b/specs/light_Magatsu Barai/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b008681bf59764804fe52765271950603f38157 --- /dev/null +++ b/specs/light_Magatsu Barai/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023795e77fa954d898e06a58e25fef15c499f46d8c8e122e38be0c9d0fc9a974 +size 290891 diff --git a/specs/light_Magatsu Barai/spec3.png b/specs/light_Magatsu Barai/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..436237e8b4bf17f1498de45270213df763a3fd81 --- /dev/null +++ b/specs/light_Magatsu Barai/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d96524e2a0f3a8eefe25de3080e202b2b4e1885f93efa3f61c31ce920dff583 +size 263917 diff --git a/specs/light_Magatsu Barai/spec4.png b/specs/light_Magatsu Barai/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..b62acb8a0880a8469360b1b8dc464cb31f3fd5d0 --- /dev/null +++ b/specs/light_Magatsu Barai/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464fa8875abfc3b6d8d997a9e76bfba454492ba94fc0a5bb85c4c215092485ee +size 229228 diff --git a/specs/light_Magatsu Barai/spec5.png b/specs/light_Magatsu Barai/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9872b4393b640e9ab12d7df33e0ba198643aa130 --- /dev/null +++ b/specs/light_Magatsu Barai/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc76fe79ac556bb2fdb69649ee8988b75451cd6a104b762785bb858a4f72e641 +size 267084 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec1.png b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c58858f884fe7e5e820112f0396f6fb9bb3e8a43 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eb52f6e699495f931ed3cab83b9c29042cf66686a508d3ab8da1f5fb03455e5 +size 349128 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec2.png b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..94a21c9bb1024fbf9c3c0ec733f25bbecb0be55f --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9025f7277e8f60d7ef1988142f063db41ddef2786176d9a5b8b8a16768270bbe +size 351039 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec3.png b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..311279885feceb6f1642aa17939ff0d68bade1b6 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab13703ce9fd18e1f8a74146f0f8c0f9a528a70b5d966aaf1c5eacd0f2435a80 +size 339474 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec4.png b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2d73b0116edb1033fb1378620ae9985cae0bea89 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c0a248498ad70d69ef5881fb249d2e3d5ca5e1a3ef398293172ace77d1417a +size 342355 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec5.png b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..400d868db492b1bf3eece52d13a188392d63d637 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Chinkamo Twins! ~Futago no Imouto-tachi ni Natsukareteru no wa Wakatteta kedo Masaka Ren'ai Kanjou ni Kawaru Nante Omottenakatta Ken~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1479817d659c0856e4c710dd321df5be4d68935712622e8b6be614615f0370 +size 340624 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec1.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5cc6c355638e3b8173971c8aa0f2cee0dfc5753 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4cb134d7797322d729d2b31c89de98a72eaf3e64b6447ae8bd27c98520ebf8a +size 262648 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec2.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..372227be2bf60bbf57f61ac5732458251c55e0c5 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc6de2d4673c4055642e909ad2bdc7b02673ad520326233d69a19f485c2aa1f0 +size 280559 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec3.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..2b0c156457f3be31ffc797087358542c3575a22a --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0099da99f5d51d9171abc7dff5ea01f8267950bbcdff2b57e891eef7005dd1 +size 285699 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec4.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fe7b80e4d4352b5d1ad72e2dc906e08a70bff089 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45325846b069f1f84e250ab47ca1f2a3989b7bccb07bd518df66acf9bf0fccce +size 306591 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec5.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d25ba2497efd45ea2aabc44b8be41f4b337023 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Cyclone! ~Uzumaku Eroero wa Imouto o Chuushin ni Kyuusoku Kakudaichuu!~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f656cf440e1624a04b38b863b5c0382a3e1ed12213519951c0a70ec97ab117 +size 244869 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec1.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..05b981f8b8480c0ccc150f45aec579f759cb6f3b --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5dfc7725a0dbbc75565d965c65a78a87878e47274368922687c78e40ceed80d +size 269015 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec2.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..34118e7ce3b7fdb358cd9a5a4294f30abb2f45f8 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a854d66f9d32cb1181e5af6543af4e408ad021c6ee9843b339d57c8ea8784af +size 301659 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec3.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..91d5734a8c8194f6e27702c3910f24d640c55089 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da74012ffe1674800ea68e1880209abcd343a64760b5fe6c2367ee49de2df0d +size 290465 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec4.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..8331b6bceaf88bca14fa36fae87f98d6b5489bf6 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d514e886edd94c7f511f7d322af524b46c5c1354409b526b9d65c7524516246a +size 258026 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec5.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..25c201eb9c7dc57dbf4d9f34aadc54f56c03e725 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Hurricane! ~Idol no Imouto ga Erokute Erokute Ore no Risei ni Arashi no Yokan!~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d0e41b2d40afe6c15f9ff808378962f6446766f10a5ca254c4223b7f4193d8 +size 287360 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec1.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..93f7cf3a9589b20bb693f00054350af9ec3dc8a3 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b134a453500cff44e6f41f36994aa8eda1fdd0701449f7e65ec6d8003d49e581 +size 347707 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec2.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7c8264fe144beaf1647dc85d3d1de78dcf22862f --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7ee24eea3e753d669524dcad758edd64e7924af17dbda650067823e051d632 +size 322513 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec3.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..4d4f43fa7ef80e0f0cd15d592857d9241d398ab2 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb362ad5b4403e8608ba1d827e19b08e69e7560b9d041a95e25ad0d85b03b8f +size 311003 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec4.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9008b5792c376b21f629a80ba41b892048760e3d --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9276e6c31fdf34b204e04883f7a72c7275ec8ff932c13526bc4dc58b5dbd9e84 +size 345712 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec5.png b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..cb43370d3162a150cf5f07c9eddc1c636fe30b29 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Ero Imo Typhoon! ~Mizu mo Shitataru Eroero Imouto-tachi to Yukemuri Onsen Burari Yokujou Ryokou!~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231e526b4a017bb7e482b496f072507f2e104a94606fb5f5c2eff4a8c9361057 +size 326806 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec1.png b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d351d5ad5ed77fd19336db0809f2f80e211644d1 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6729c539de0ee4837641dde192c943278a4978134e99324fddc1a4994b2e9961 +size 313108 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec2.png b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..63b22b8f964f5cb4b3fe53b3ccc830ce882d53b0 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a4739bf8b61a1dc9307c21639f0e56380ec1d5b0101508057af53330556c88 +size 332744 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec3.png b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..5720723b148463ba424e7e66809a5302167ca561 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ce3952f05d080efa07f832ac5d94bd3d45adf6fe0656983cc097a1ade2fe42 +size 325206 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec4.png b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f3b96516700cbe89e1ab9e7aa624ecf093ee1a7 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694cf10c43032be40d1873f413ccc172439ff9ccdb25776236e7df67bcece645 +size 345166 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec5.png b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..115b020acc0288635a7f12157816245b2700b282 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Koboreochiru Shoujo-tachi ~Papakatsu JC Kairaku Ochi no Kiroku~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c933a2a8af376c0d4aa40a6e73220815dbeeab51bb49482ab8da1b1b9be3fd4 +size 316722 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec1.png b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..b531ed147c9517fbd27343d8052fdd11f2f9d526 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1eefe0bc6c15de977724dd318cb180a143f63af13db7d6ee5561470c816c4d +size 333051 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec2.png b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5b70b03877b2cb04f6412f99813795401587f894 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0445bf89cd9aa9106ea4251020d65e5a49e09e5664c45a7facfedcf9a26f356 +size 311483 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec3.png b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..72d09e58f74e92b2da83b081178e3de2397f9340 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678a3b61e976e3bc4dd60607d6caa69f06563c6440b7969805cb56e7020bba15 +size 320095 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec4.png b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9c8a9a20fb350518193c4f6164cd8d222b85f9d5 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb10c6985c2f9671365e64a9441f1bdf824cce393037fca54606ecc59041fe3 +size 334873 diff --git a/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec5.png b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2bef42d11297ef15d5c37703fc1b932ef6fec957 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_Kyonyuu Yuurei-san ni Iyasareru Shachiku-san no Seikatsu! ~Ecchi na Support wa Watashi ni Omakase!~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a79549d7bebb4949b4d22fc082b519ad8bf2bcf40ebea9303606ec8c4ffa76 +size 314066 diff --git a/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec1.png b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..01c6e9ced9794637b30cb5c1741d8bb63ff16714 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4096029ee7b9bcb04f6fb2ffba330c74ae998d5ff7e12321376ce559d644d35 +size 348260 diff --git a/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec2.png b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..83738c8d856e3b571a32ba2c7abad93ce2188866 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b9163659ce3a71dd01bdf37eacc6db762c11c563a1556c21ad875a982c54be +size 363756 diff --git a/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec3.png b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9b13098a29acdf0782159af54572dfd4dc568dd7 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0859c0236c1409e22c4d7ea3bbe86be2ed4238bc77b0f08c6cbc5d862aa75484 +size 367607 diff --git a/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec4.png b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..f4cac828abb945e408184eee20bb6bba8318f2d2 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5bdc75b23ae2324227ab420a91c3664c33b56d9cf01ef8c9b98b1563c63201 +size 369829 diff --git a/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec5.png b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff18766cc8687a7e0045868ea4e362423a28d15 --- /dev/null +++ b/specs/milimili AMUSE CRAFT EROTICA_shin-neko ~Saikai Shita Imouto to no Arata na Kankei~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0256544d04904ee1d7d2c3bcf7109673bff2eae58f51e2f62e93d77b672edd2a +size 369134 diff --git a/specs/minori_12 no Tsuki no Eve/spec1.png b/specs/minori_12 no Tsuki no Eve/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..8a4700761ad486514f7110fb1fa3fa69a01b266d --- /dev/null +++ b/specs/minori_12 no Tsuki no Eve/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969e04af373187599ad201276c8bef9d79c1fdff416b554dc82f7aab975faf47 +size 274029 diff --git a/specs/minori_12 no Tsuki no Eve/spec2.png b/specs/minori_12 no Tsuki no Eve/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bd97772a53fc5b0be579d5dc7c0c314d7d0c48ee --- /dev/null +++ b/specs/minori_12 no Tsuki no Eve/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a78093e278c396328115b81d1edb38ddf4e7dc66e29854bd5417f6bf505937e +size 304598 diff --git a/specs/minori_12 no Tsuki no Eve/spec3.png b/specs/minori_12 no Tsuki no Eve/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..6807c6b3a2027a93bdabfa2ac6a294a095b8b5b2 --- /dev/null +++ b/specs/minori_12 no Tsuki no Eve/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e82a70c54a510536b21f844a01320a0b4897831f2685a7f45fb9d213af6677d +size 317380 diff --git a/specs/minori_12 no Tsuki no Eve/spec4.png b/specs/minori_12 no Tsuki no Eve/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d21cbe1a6e8839aaac6cf6ff02bbaa9d3d47302c --- /dev/null +++ b/specs/minori_12 no Tsuki no Eve/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe12812dde906d7628a262a864cf2a6d96ba3f6127ded4bb982c85c96fd3c62 +size 248067 diff --git a/specs/minori_12 no Tsuki no Eve/spec5.png b/specs/minori_12 no Tsuki no Eve/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..6f42daaba564e90c20cbb53e875536a496b00e5f --- /dev/null +++ b/specs/minori_12 no Tsuki no Eve/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf4f402b4d0654322a4db50fbc6660fcc8a3dffadd3de1c3be9574d69b81370 +size 257467 diff --git a/specs/minori_Eden They Were Only Two, On The Planet/spec1.png b/specs/minori_Eden They Were Only Two, On The Planet/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c9e3cac94a6c41f59f9343fb9e307c3074b91efb --- /dev/null +++ b/specs/minori_Eden They Were Only Two, On The Planet/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e41af122c72fbe2c85badd4469416cd3ec8a6e5992cf89597131c93fcbbbf873 +size 313992 diff --git a/specs/minori_Eden They Were Only Two, On The Planet/spec2.png b/specs/minori_Eden They Were Only Two, On The Planet/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..530c4d0cbae3d340c06008b06b8bcb05a0777b77 --- /dev/null +++ b/specs/minori_Eden They Were Only Two, On The Planet/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573f2990fe818bd78156a2505477ab37acc2455a73125d683b5252b19b249722 +size 307374 diff --git a/specs/minori_Eden They Were Only Two, On The Planet/spec3.png b/specs/minori_Eden They Were Only Two, On The Planet/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..839584ce2b9ac737cde22cf590aa515186cd3d4a --- /dev/null +++ b/specs/minori_Eden They Were Only Two, On The Planet/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:947209675978f7ac2fe5946bc62dca8c5b02519e2ea2ccdcedd5f41e4c9b3ecf +size 311656 diff --git a/specs/minori_Eden They Were Only Two, On The Planet/spec4.png b/specs/minori_Eden They Were Only Two, On The Planet/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..d44f881ec6ac5e9fa212198a720ae6bb6d2a4f0e --- /dev/null +++ b/specs/minori_Eden They Were Only Two, On The Planet/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f01222728ed4bc1ad6714cc855a384ddd94dd6081d7f3d0539d81e9062eb43 +size 302655 diff --git a/specs/minori_Eden They Were Only Two, On The Planet/spec5.png b/specs/minori_Eden They Were Only Two, On The Planet/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..868f01cc277532dc2c3ebf0ab62d2cb4bf9ecd71 --- /dev/null +++ b/specs/minori_Eden They Were Only Two, On The Planet/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa5dc73b0bbab3dc772e389c8b147796fc0b63a72f79ca4cd3b692e904c036e +size 300357 diff --git a/specs/minori_Natsuzora no Perseus/spec1.png b/specs/minori_Natsuzora no Perseus/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..2a6ad6ba698723a77bbc34ba362dac903e21e100 --- /dev/null +++ b/specs/minori_Natsuzora no Perseus/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab727a67637c894c34b498dd4cced6c318eeae093984d6eb5ce95dc042089777 +size 304747 diff --git a/specs/minori_Natsuzora no Perseus/spec2.png b/specs/minori_Natsuzora no Perseus/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..bd87d1646f514f7a57354d61461575a529c366be --- /dev/null +++ b/specs/minori_Natsuzora no Perseus/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f710d38375d7d569661aea9953b0d0ea25fc471e5b6637ca0e43ac44307375e +size 301576 diff --git a/specs/minori_Natsuzora no Perseus/spec3.png b/specs/minori_Natsuzora no Perseus/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd018e1448373a6d5c1d615e36b608482048a9ba --- /dev/null +++ b/specs/minori_Natsuzora no Perseus/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5d67dd2d19f31d04869dfbd04c8839e1534c2054b084166aa8acf6a820fbc4 +size 285428 diff --git a/specs/minori_Natsuzora no Perseus/spec4.png b/specs/minori_Natsuzora no Perseus/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..45e31e8a8723ae3f81286636ddc4dfa7444c2aae --- /dev/null +++ b/specs/minori_Natsuzora no Perseus/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddefd6e327f1cad73b8674949f44368c6532870ec6b8ea34609eedd6b4a9666e +size 276088 diff --git a/specs/minori_Natsuzora no Perseus/spec5.png b/specs/minori_Natsuzora no Perseus/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..9cff642de49945f41d34bab8545c55fb55c43343 --- /dev/null +++ b/specs/minori_Natsuzora no Perseus/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96465d6f2690ec6f91a98db5ce77d60a73828a6e426a575a3a261584a3cad02 +size 268414 diff --git a/specs/minori_Sono Hi no Kemono ni wa,/spec1.png b/specs/minori_Sono Hi no Kemono ni wa,/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1263dfca64082231370e956fe974da0c58f3737a --- /dev/null +++ b/specs/minori_Sono Hi no Kemono ni wa,/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7280d457e4a4787f60b87c21b57aa076e24934fa271a8b1b63e34354f8e6796 +size 326937 diff --git a/specs/minori_Sono Hi no Kemono ni wa,/spec2.png b/specs/minori_Sono Hi no Kemono ni wa,/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c49e665a0b14ab53ec12d50a0c6bb1477897dc1a --- /dev/null +++ b/specs/minori_Sono Hi no Kemono ni wa,/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:491641bf3f1198e395b9bfd861253af71ab4590015eef6a7d00732fa18f83de6 +size 343583 diff --git a/specs/minori_Sono Hi no Kemono ni wa,/spec3.png b/specs/minori_Sono Hi no Kemono ni wa,/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1b5aa46b530b8b4e47479af776cce2f976afa10c --- /dev/null +++ b/specs/minori_Sono Hi no Kemono ni wa,/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f847f6b21035eea87a4f006922823eb0ede65f6804c803af692ad767b34e26ad +size 332627 diff --git a/specs/minori_Sono Hi no Kemono ni wa,/spec4.png b/specs/minori_Sono Hi no Kemono ni wa,/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..04e0af4820de91e08a2e95523be46ffe37b644a9 --- /dev/null +++ b/specs/minori_Sono Hi no Kemono ni wa,/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8b9da114a21422fed9720525f794600625540371eb0268bd1f208dc7b2ef38 +size 347853 diff --git a/specs/minori_Sono Hi no Kemono ni wa,/spec5.png b/specs/minori_Sono Hi no Kemono ni wa,/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..69cfa391a9a2f4d7ab329ff031a79365ee2dca9c --- /dev/null +++ b/specs/minori_Sono Hi no Kemono ni wa,/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab435b6cb1740e0301b7649eebac2192ef7edc2fec42c8e25355fe890c115a0 +size 342241 diff --git a/specs/minori_Soreyori no Prologue/spec1.png b/specs/minori_Soreyori no Prologue/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..24907fead139a9be1b7a0d5666a388646c72caac --- /dev/null +++ b/specs/minori_Soreyori no Prologue/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a511db6624f2a49ccda4732b2e33e53be43faec4dfbf436520776d4750992b +size 316142 diff --git a/specs/minori_Soreyori no Prologue/spec2.png b/specs/minori_Soreyori no Prologue/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..063aaaba1eb161506c7f6d27bd662b197596d2e1 --- /dev/null +++ b/specs/minori_Soreyori no Prologue/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5635da49e5938211fa8b89e28f9c08efc0f4b7cfd8872c00952c45e7eda7b2 +size 293313 diff --git a/specs/minori_Soreyori no Prologue/spec3.png b/specs/minori_Soreyori no Prologue/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..66330f9163023f9e211162f16d2d5751426eb909 --- /dev/null +++ b/specs/minori_Soreyori no Prologue/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926c11c4ea6c5f62f8b99bed8ef20a242c46ded99153e28160114412deffc938 +size 296776 diff --git a/specs/minori_Soreyori no Prologue/spec4.png b/specs/minori_Soreyori no Prologue/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..3c905c5275f505de5bbbb473a3fd2812bcb588f5 --- /dev/null +++ b/specs/minori_Soreyori no Prologue/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd67fb09d10fcc12f038664d565037a5f356099e13e12d69696410d81e84482 +size 277154 diff --git a/specs/minori_Soreyori no Prologue/spec5.png b/specs/minori_Soreyori no Prologue/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..1b0dd99e0248e5f61a152854eaab24ab7c0e2d86 --- /dev/null +++ b/specs/minori_Soreyori no Prologue/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014113ec9c3d2b5ddc2b446364c417b23be6b16ec0bcee5af650c5720c4fdb3b +size 296509 diff --git a/specs/minori_Supipara Story #01 - Spring Has Come!/spec1.png b/specs/minori_Supipara Story #01 - Spring Has Come!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..dea9ed0def7498042cc62aa3f926258d53dd752e --- /dev/null +++ b/specs/minori_Supipara Story #01 - Spring Has Come!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcea17a529932d6c010236580808387cd6a2f2f6feccd223afb70bba0cb14be8 +size 267840 diff --git a/specs/minori_Supipara Story #01 - Spring Has Come!/spec2.png b/specs/minori_Supipara Story #01 - Spring Has Come!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..9a4175c7b5a0776da8ad7e5b14f2965da7334547 --- /dev/null +++ b/specs/minori_Supipara Story #01 - Spring Has Come!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:201b271e9d414fe3c518a3c900a28c3ee1798028b0a8cb0b120e56dc63dee6af +size 306374 diff --git a/specs/minori_Supipara Story #01 - Spring Has Come!/spec3.png b/specs/minori_Supipara Story #01 - Spring Has Come!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7e0019f071be5072cbb57aef198a9b85fa53c617 --- /dev/null +++ b/specs/minori_Supipara Story #01 - Spring Has Come!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6da2e035a68b6e77aa111ae32d9f4c0637f3d3fd734c5b03cd58a5162e4a4ad +size 290682 diff --git a/specs/minori_Supipara Story #01 - Spring Has Come!/spec4.png b/specs/minori_Supipara Story #01 - Spring Has Come!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..9e944f76d5f16877f0605fe58c4f2b8645a04eb0 --- /dev/null +++ b/specs/minori_Supipara Story #01 - Spring Has Come!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4845a969962ee8ca2a99d00d7bc13277bd291e00d871bb04976a7244e8f5310 +size 304828 diff --git a/specs/minori_Supipara Story #01 - Spring Has Come!/spec5.png b/specs/minori_Supipara Story #01 - Spring Has Come!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ca991de5dbdec7390a6329b83c7668f714f17544 --- /dev/null +++ b/specs/minori_Supipara Story #01 - Spring Has Come!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7892f3b5346e0882ea1de20c2ad1e9797ee65215cb0657b8590b1b197d73c774 +size 300740 diff --git a/specs/minori_Trinoline Genesis/spec1.png b/specs/minori_Trinoline Genesis/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..f8d855919266ba22edc90694c331c359b9c92c18 --- /dev/null +++ b/specs/minori_Trinoline Genesis/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03cccca5b7b670124ed41c1ab46171038021bd7ca04048dd9ee3cc14566f18eb +size 311730 diff --git a/specs/minori_Trinoline Genesis/spec2.png b/specs/minori_Trinoline Genesis/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c118f3a623e752ac6aa519ef8dc46ce87229aa6c --- /dev/null +++ b/specs/minori_Trinoline Genesis/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10816f7a553c376ac48d250271314f6015fd7653acd607f9b24ba58cd4fbc8a5 +size 329082 diff --git a/specs/minori_Trinoline Genesis/spec3.png b/specs/minori_Trinoline Genesis/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..44b50f81aed9756c1afd3b39a2293097afaf3c4e --- /dev/null +++ b/specs/minori_Trinoline Genesis/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b419b2130ba866597ba27d55d929ed3cb092d0af0d10ead94a8b98f2bb499506 +size 311325 diff --git a/specs/minori_Trinoline Genesis/spec4.png b/specs/minori_Trinoline Genesis/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb49180ce286b49e0ea830cfcdf5092b8e28c35 --- /dev/null +++ b/specs/minori_Trinoline Genesis/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6815fbadc6e5d8b9ac20ae71b8dec692af4a6e6dbba8a91a3b542704e12a001 +size 327554 diff --git a/specs/minori_Trinoline Genesis/spec5.png b/specs/minori_Trinoline Genesis/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..4688a1e4e6fc0c717c27be3e96c85adeb81f0793 --- /dev/null +++ b/specs/minori_Trinoline Genesis/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0010ba1bba26a7a257cee4159599b9a19d1fcc654c9cc2892f8fa3d693e80cf +size 314556 diff --git a/specs/minori_Trinoline/spec1.png b/specs/minori_Trinoline/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d0b9c1787a0c1cbabbd1fb373e282937bc605c86 --- /dev/null +++ b/specs/minori_Trinoline/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0b3d2856f959d3def6c8a822da961abbb651f321d1ef13d055b6398f7de4c5 +size 307988 diff --git a/specs/minori_Trinoline/spec2.png b/specs/minori_Trinoline/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5f424ac41f5aff39c0e65e7070a99886b1e36544 --- /dev/null +++ b/specs/minori_Trinoline/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03bd4ca5d836ae95609e42355af97e3ab5ee1ff5b1ec4552344b099290ef967 +size 322406 diff --git a/specs/minori_Trinoline/spec3.png b/specs/minori_Trinoline/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..f8d4cfb44a2497bf39841463c843631d94eba9b6 --- /dev/null +++ b/specs/minori_Trinoline/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca6c85f93792cc4494252530da34d80e435a9a821ef0016fdef0d333b3c12dec +size 307746 diff --git a/specs/minori_Trinoline/spec4.png b/specs/minori_Trinoline/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..419cb279bcd7cc58475a3dc6671dab789e0f3607 --- /dev/null +++ b/specs/minori_Trinoline/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1274341ac1710aa862d5d004bd440fc8ef891490211d322440e8d9d9a1e84046 +size 315113 diff --git a/specs/minori_Trinoline/spec5.png b/specs/minori_Trinoline/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..51772bd6186877f338edb26294788fcc0f51299b --- /dev/null +++ b/specs/minori_Trinoline/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3ba462e3e26ea681930589fc36f71bb2bf57cdd001b667cbd503d29cb10887 +size 306325 diff --git a/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec1.png b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..eec6931ffb04b8cc23634dccb0246292230673e5 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3533cfa05ffd1b04775be5468ef497fe05ca626ad42705f4c0ca4a175eebd5e +size 318388 diff --git a/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec2.png b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..14e31cc153271744d73565e70bab9890f69a2fb8 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca0d51b31a209ed117c05e64423cf99ab7499e97bcb9082c1b8cd3569542481 +size 317656 diff --git a/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec3.png b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..fb1eb3d00a0c8a1db7d33bdded3b23dbf1e73441 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee19f6d78f50d302683462351d49a6388be766bfee7aa9523c2122483eee94c +size 320836 diff --git a/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec4.png b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f90e413809082eeb31acdd39ab8b4fc6f3fa9a --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2790537faf01ecf08512ee6c480c5b882684f090b4522a225a8f76a4295e3d11 +size 319231 diff --git a/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec5.png b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..89d7d20e8931a2fe8cab2ff4c3d7aa638a5ba671 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous Mikan Blossom/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9497b93c4be1e3bebfa5a11407784758d37525cb0c40a83e0895768058b33809 +size 320276 diff --git a/specs/minori_Tsumi no Hikari Rendezvous/spec1.png b/specs/minori_Tsumi no Hikari Rendezvous/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..edc4552bc296e16584b9c4d1d43b5400de62c817 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7553b4d907c3ad7d74a045d7ac832bccb2eb39c473f8f16f9ee6188e1474ef +size 318222 diff --git a/specs/minori_Tsumi no Hikari Rendezvous/spec2.png b/specs/minori_Tsumi no Hikari Rendezvous/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..7f9b9601538b998f8cbe760e28a6eeddd9a3d547 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122ad810b3407ed04c3bbaf87320274633b3adc383a9c25177d93e81feb5f161 +size 318079 diff --git a/specs/minori_Tsumi no Hikari Rendezvous/spec3.png b/specs/minori_Tsumi no Hikari Rendezvous/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..16cc4bbd948374aba25c7a861a4486b00ef0ecb1 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27be67f323c7b19b182b1841c409fd3810f7f6dabdddbf53c049c255a7a418d +size 312214 diff --git a/specs/minori_Tsumi no Hikari Rendezvous/spec4.png b/specs/minori_Tsumi no Hikari Rendezvous/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..337596074e82baca74a2116fcb37896df5d1d115 --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e47cb98ec54b1b6802b52979b64774ae2672a36bfa29be64e9ad92c65557e0f +size 319360 diff --git a/specs/minori_Tsumi no Hikari Rendezvous/spec5.png b/specs/minori_Tsumi no Hikari Rendezvous/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..ef6b626083e992122e873ec923b7816c3cf1565d --- /dev/null +++ b/specs/minori_Tsumi no Hikari Rendezvous/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3e7b4c331bf56d39865f99e2d2a67bf6532ca77db5b2865c54acf6a00a3a7a +size 309221 diff --git a/specs/mirai_Hanahime Absolute!/spec1.png b/specs/mirai_Hanahime Absolute!/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f6913288179d2f2c545901c2aa3cbc979a2cead --- /dev/null +++ b/specs/mirai_Hanahime Absolute!/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd17ee3bc0f181a8adfe8919b34d47b496ef9ef7eca715362984ebebc1770075 +size 297107 diff --git a/specs/mirai_Hanahime Absolute!/spec2.png b/specs/mirai_Hanahime Absolute!/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..c668860ac4e42592e5a67f288e700aa199e09c8e --- /dev/null +++ b/specs/mirai_Hanahime Absolute!/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866c91ba9008f8e223840f4dcb673d3256b5ea148a9bb63a80cfc0c4bfa611f7 +size 240513 diff --git a/specs/mirai_Hanahime Absolute!/spec3.png b/specs/mirai_Hanahime Absolute!/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d82f26dbd6f294b589d9dda0d66beeb55ab2ee --- /dev/null +++ b/specs/mirai_Hanahime Absolute!/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81dc3163d5aa87425aa492d84fdf635d40acc3b9e2f4e509a74e115849ab8b77 +size 236458 diff --git a/specs/mirai_Hanahime Absolute!/spec4.png b/specs/mirai_Hanahime Absolute!/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..feae2059bbf7994ba4c9c1b31057673d842117fd --- /dev/null +++ b/specs/mirai_Hanahime Absolute!/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a221668bd549884e76a0d6c2515adcc1a35806f933d5c052951fdf009aeb1d +size 289096 diff --git a/specs/mirai_Hanahime Absolute!/spec5.png b/specs/mirai_Hanahime Absolute!/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..811671ce0276184e52159ca3e0078a28fb48c153 --- /dev/null +++ b/specs/mirai_Hanahime Absolute!/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b605e1d33fe5ef3905a8e315cfcbae7488275985b2360dc850441baba175654 +size 280075 diff --git a/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec1.png b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..36f30779215fd1ff402bb7058c88d72149f3b5fb --- /dev/null +++ b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a666b48c6694ad6b849ebc75752326e5c5bec7ddd2919731a08605a3b3efd1 +size 332796 diff --git a/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec2.png b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..734ecfbe7d6ffaa22fdacfb90d88da0294ff933c --- /dev/null +++ b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db935eb026a6b30c422818459e5ce8cc7eb5a6269ea406b9e4491602535e8b3b +size 339200 diff --git a/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec3.png b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..9914df776a03a012dbc86b02fff8ad1fe89aaa84 --- /dev/null +++ b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d3fcc8558cb5db6b1bb2639129ef6f8178a984d3d22a0a662466db4b691563 +size 313602 diff --git a/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec4.png b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..6c44226a44455cc864e733b14123c66a52bf98c0 --- /dev/null +++ b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a1d9e4c8f284d796b8503fd8364d784154b794f8719e3bc22bd00e86a51054 +size 353150 diff --git a/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec5.png b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..463cf5f6f3b25aff036deabfc5639d15c4324ee0 --- /dev/null +++ b/specs/piriri!_Kimi to Boku to no Kishi no Hibi -Rakuen no Chevalier-/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b80f10d9aec6e10d887287c008c403c362db2eaf3059f1a280be0ebeb5ac5c +size 324608 diff --git a/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec1.png b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..a750fdf22d73adaa71aeac79d438e87921e71732 --- /dev/null +++ b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd2ddaaa75b803aeac1be87219992b8ce7f196226b0484121f6172a1678575e +size 315314 diff --git a/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec2.png b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..463bc715a6e3204d8ecf5094b332956aa94b8bf3 --- /dev/null +++ b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf80ae97b99cc7793eb8cf0e763558bee01ab3c453e55a2427056949d96a6ad +size 332085 diff --git a/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec3.png b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..bcd17b3c5b727559ea73a680622dc282b97b44a6 --- /dev/null +++ b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a3b81da5c7825fa232ade94221ddd0fa17e7dc2285e76474efaa0088d707b47 +size 314693 diff --git a/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec4.png b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..1cdbd2ca7a3e18eb9a044a0881e717264d12bfb0 --- /dev/null +++ b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b2d8c24dd91c167391d6c6b8b7d9c5e3581c7677aaa1b3418ac13ea4a47199 +size 328071 diff --git a/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec5.png b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..92bccfaf3cd31298d77fc2e1ac51279c0e3e87f1 --- /dev/null +++ b/specs/riffraff_3-nin Iru! ~Happy Wedding in Livingroom~/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aacd45317933b509e3424a3a10654d57c82847134f04d8baa6a63b69a9a9ba6 +size 314032 diff --git a/specs/sprite_Ao no Kanata no Four Rhythm/spec1.png b/specs/sprite_Ao no Kanata no Four Rhythm/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..6a645401c8b01c5f0731d7c56d9ad5d39832cf52 --- /dev/null +++ b/specs/sprite_Ao no Kanata no Four Rhythm/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e281e65aa51cf79ff5ef09930c956cbcb9baecce7d1e991dd94956eaf61cd43f +size 304423 diff --git a/specs/sprite_Ao no Kanata no Four Rhythm/spec2.png b/specs/sprite_Ao no Kanata no Four Rhythm/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..54b0429288aeb140a5d24643aebd63b4d8ae4341 --- /dev/null +++ b/specs/sprite_Ao no Kanata no Four Rhythm/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81b20697743191802f42b497f741424450ebf8c3d8b3c97bb6dc702921760c1 +size 282361 diff --git a/specs/sprite_Ao no Kanata no Four Rhythm/spec3.png b/specs/sprite_Ao no Kanata no Four Rhythm/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..becd026dd4e535c52c1f94a3e65838ca027f2d19 --- /dev/null +++ b/specs/sprite_Ao no Kanata no Four Rhythm/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f3d9d70a652aba03d162a9dd6460006d4a69a8788f2ac8c0c8d56f3380d5b0 +size 281409 diff --git a/specs/sprite_Ao no Kanata no Four Rhythm/spec4.png b/specs/sprite_Ao no Kanata no Four Rhythm/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..01b1899816cbdebbb4b5b789af5fa7a607108306 --- /dev/null +++ b/specs/sprite_Ao no Kanata no Four Rhythm/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11897a4890f54a8c8ac9f298e0a819b08f37cae7b21f41abdce5e00d719b65d +size 341285 diff --git a/specs/sprite_Ao no Kanata no Four Rhythm/spec5.png b/specs/sprite_Ao no Kanata no Four Rhythm/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..78ec96da1cdb0a348ad2e9a8abdd779cbed152f5 --- /dev/null +++ b/specs/sprite_Ao no Kanata no Four Rhythm/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef980d78e77b58a001d8a5dd003a25ae79cb285d6f86547d058c75f29cab3a19 +size 315570 diff --git a/specs/tone work's_Gin'iro, Haruka/spec1.png b/specs/tone work's_Gin'iro, Haruka/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..c759bc226ca3cd34cd1fc7ecd79c3e1e9abfdf50 --- /dev/null +++ b/specs/tone work's_Gin'iro, Haruka/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ea9c2db3ac441edbfdc2537e5c253d4b454ce64ed955c759e434e1c4d70b54 +size 336128 diff --git a/specs/tone work's_Gin'iro, Haruka/spec2.png b/specs/tone work's_Gin'iro, Haruka/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..ee3c4b5e05a24efc0916031271b00872a3543142 --- /dev/null +++ b/specs/tone work's_Gin'iro, Haruka/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8518c8b9572dea39ffcf19266e34334d29288f11a96d5b9f5b9a268db8a2a5 +size 318734 diff --git a/specs/tone work's_Gin'iro, Haruka/spec3.png b/specs/tone work's_Gin'iro, Haruka/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..1fe6b573df3a1b4ff97e58f0dce08eb7a8a2d926 --- /dev/null +++ b/specs/tone work's_Gin'iro, Haruka/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad2637ba25f6b8f7b19c59010e7b31ac0a36152c2ebf55ab83c27eea5107f40 +size 321664 diff --git a/specs/tone work's_Gin'iro, Haruka/spec4.png b/specs/tone work's_Gin'iro, Haruka/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..7b0b36b32a9c339c5268d366cdf0afd30b88d9b3 --- /dev/null +++ b/specs/tone work's_Gin'iro, Haruka/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e366eec34e4f441f2e43f9a71114fd5fb4ddc5a2c5fe1d215c399e69db6e7c47 +size 232879 diff --git a/specs/tone work's_Gin'iro, Haruka/spec5.png b/specs/tone work's_Gin'iro, Haruka/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..8631ec5dc8838ff2a186dc4ce0fd52fd9e53677d --- /dev/null +++ b/specs/tone work's_Gin'iro, Haruka/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299449c7553fb2667c3db371931466d307f458fb10e732e0322a1891db8d2555 +size 303633 diff --git a/specs/tone work's_Hatsukoi 11/spec1.png b/specs/tone work's_Hatsukoi 11/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..d475a67f03affbeba323033d24155b36ba6089f0 --- /dev/null +++ b/specs/tone work's_Hatsukoi 11/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca4c5c4e69a14dc389b67e31b210518fe0a40f87d2c7ad469884e85d3f1858b +size 352919 diff --git a/specs/tone work's_Hatsukoi 11/spec2.png b/specs/tone work's_Hatsukoi 11/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..cdbd218e48be58d500ef26921113a838296b1e40 --- /dev/null +++ b/specs/tone work's_Hatsukoi 11/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f493cd5d164f1fff5d1e61ccbc6cac9a1a226c4283fbcc266da9802254b46293 +size 365478 diff --git a/specs/tone work's_Hatsukoi 11/spec3.png b/specs/tone work's_Hatsukoi 11/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..154cf56fcfa154da205d493d5119a90182a71313 --- /dev/null +++ b/specs/tone work's_Hatsukoi 11/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ed2a38caf06332f3dd007429ea043494c7a8f3ef7a863788663877561b445e +size 357209 diff --git a/specs/tone work's_Hatsukoi 11/spec4.png b/specs/tone work's_Hatsukoi 11/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..2e5400bb83c499ad8d47344378a67c59bd8b7202 --- /dev/null +++ b/specs/tone work's_Hatsukoi 11/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363a33bb227027938db343581c98831fc35b525847df0fd4a04df6088f2d6aa4 +size 354607 diff --git a/specs/tone work's_Hatsukoi 11/spec5.png b/specs/tone work's_Hatsukoi 11/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..2f9de0b63262127dbea1d389f028dda036f93630 --- /dev/null +++ b/specs/tone work's_Hatsukoi 11/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd1db92e8d5aa2f2d111c9b4dda349fa10e26889ee64d0103d3b49e76a6fc3b +size 360214 diff --git a/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec1.png b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..1c15c07a5b4771efb57769dec138649f30117a4b --- /dev/null +++ b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80011e961ecb15095d68fe316334d5247f23dea7aaebdcf67882470080aef170 +size 318084 diff --git a/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec2.png b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..b55cfdf9d43455bee22ad222cd1816a6e7039b02 --- /dev/null +++ b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdde7b414ac69638ad1875aa29951191d1265fa53fa998a535c854430b780a5d +size 336908 diff --git a/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec3.png b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..008a31e098c003b1dc2e11a7202b528cd79dfb7d --- /dev/null +++ b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35c67d2ebe8091fa9def3068b52a68d30b19d3005c383967a92951ea7383ef5 +size 300988 diff --git a/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec4.png b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf30b7593b792c0fce7860123f5b46c7ec4ad78 --- /dev/null +++ b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0841e0c82702cc6cfac33918ad44c16aa5f3e7158cb2cc17e9594c58b0d50c6c +size 322114 diff --git a/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec5.png b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..b219ef64a7343e50c8ab05b3b475fd13c7f118bb --- /dev/null +++ b/specs/tone work's_Hoshi Ori Yume Mirai - Perfect Edition/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7e10fd7d73d33b7f9cd8806c71ee24c1cd84dc086150d5eb25dfbe860235f7 +size 314340 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec1.png b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..05e1f5643a9f41fe4dbe23d032c103e4ea24a1ca --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c21b370ccf122ff65ed57b48b28cadb4430f947a20e5ee497d8ed87cfc17534 +size 314145 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec2.png b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..5a805e088098fa17a5c88ac8a3015805b43f5e22 --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1568450eae8565ecd9025a8f393cdc45143b349fb67fd2fbd12cf9fef6207e7a +size 331340 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec3.png b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..198410f5cedecbf71c953914ac9b44ff9855d61e --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0063387579b140431978afad8b9d9b90698fddcd332e6582fceb272419c77410 +size 323985 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec4.png b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..adb8e304612a30094d4402b4fb9684cac03fd91a --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d0e0f204f533359c23de923f2c1731cc81214b1cb1fc3bde8b1281be40e518 +size 324650 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec5.png b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..820f6b73b7f2f4fbcf4122b9096ff8e4c11fb410 --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou SweetSummerRainbow/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e78ea89ef3ec4c5f75a539848e59d9728d1eb702c23f2b737775cc0210d6dc +size 317089 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou/spec1.png b/specs/tone work's_Tsuki no Kanata de Aimashou/spec1.png new file mode 100644 index 0000000000000000000000000000000000000000..be3a212ec70875bdb4aad03460a5d293a49abf0f --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou/spec1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362350b2b9858675971474908b0ed89dbaf43488100c8b7bc7265ac7d6a53d97 +size 309901 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou/spec2.png b/specs/tone work's_Tsuki no Kanata de Aimashou/spec2.png new file mode 100644 index 0000000000000000000000000000000000000000..a796be3dfa94b23cdeb9f60b1d9c9c0a83ac318e --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou/spec2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67cbfabb5d6ca6b047fb4c7516878f658e57fdc186bd4e5a8215f0c091450489 +size 322649 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou/spec3.png b/specs/tone work's_Tsuki no Kanata de Aimashou/spec3.png new file mode 100644 index 0000000000000000000000000000000000000000..7973738f2aa9ca27a45168903d1695cfade37d0a --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou/spec3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e531578159540b4e25cfcc10472a936d65de57426e1c1dd4634fdca0460d50cc +size 324988 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou/spec4.png b/specs/tone work's_Tsuki no Kanata de Aimashou/spec4.png new file mode 100644 index 0000000000000000000000000000000000000000..32f43163f33cc40534489496be4cfd154237abaf --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou/spec4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299dc8fe6750f5cccce71f6970df2e909ab0de12c23f8d9c83c0644e48a573e2 +size 316964 diff --git a/specs/tone work's_Tsuki no Kanata de Aimashou/spec5.png b/specs/tone work's_Tsuki no Kanata de Aimashou/spec5.png new file mode 100644 index 0000000000000000000000000000000000000000..3711df271dc8b5fef84560649d2562f7f8aa77bc --- /dev/null +++ b/specs/tone work's_Tsuki no Kanata de Aimashou/spec5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578cd429a17086d5b4179021e273e66d8cb3db2c0c8e4d077982d73fec1c3a6b +size 317073 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec1.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..cb1c6700f773643691f0d212d37a7eba8807cbc5 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832cd16a826d6fdd24bb5fe4961aa222943adba71e3fd6520328ce12b6347841 +size 364881 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec2.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..53dc905c84473fdcfc0f2d54412975cdfd5aed1b --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272d96773a963ab4f7d5e4221f05f6e545539821c716594f376b94825229e220 +size 330744 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec3.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..5f0ff8f177b86736db4f00d6a478feb3a391a447 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3820e4ac0e98964120a66f9865123cc85d34929a1c99e70df4f4fb3d096a45da +size 364373 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec4.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..f13d572411b188b2f391799eb499f838ba8767df --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb17a30a6d99cbec320170c4e90b0b23e1eef9c9274663752db086a8ea28f845 +size 342171 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec5.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..1e0ac929926a3184956fbb8d4d7b0c41a5f2bc43 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kami ga Tsukuritamouta Shoujo-tachi-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df21e2af30e66a7fc530b2f23db9051dd3ae41b1a6e86d94b34581104943010b +size 325824 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec1.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..e899d09c4fa275bc7912227d76f1255c22513436 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a335f765e534ce6d14a5871b1cffbceec2c0e55db17c1e757be8ac47d90db9d4 +size 312869 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec2.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..c03f902800739cbee4ef81271cc2a12a10816864 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26a1f6d879d121fd9ac1fa99585d8e87d82a6776a2fda208f42434421ba7f614 +size 313245 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec3.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..3835b07e15fefaa1b5edec3083527b041c367e91 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c76e777d781e1410fb11cd7136aa497fb578164456e404bd0ccf7931741593c +size 352718 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec4.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..cddbe20d6ba38da98100dd7ca90c8dd5ac2d6a83 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0ac44aa511f7ce417957a865b894d635a8d7fbd938bf81d5380101108fa894 +size 341832 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec5.png" "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..9b664d147ac5f71b626a1c64b8a8a368bf3c0439 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Kotowari to Meikyuu no Shoujo-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb9c355889d018dda7bb21b249a92e85bc5b0789658e5ceafab160f9be62625 +size 365366 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec1.png" "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..2b097b0aaf90f95761ca4c97cd02cb9cc5c999fe --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90fae013e785b9442ae603812bb5454ff18a63a0af2a4bd85d5124c2db27799c +size 340675 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec2.png" "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..9282a9e29c19cf3476f4a373e2df3bcab6dceb39 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2145ec1a9107914382d797a55d6f354df711f362f078711309fd829eae494284 +size 311103 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec3.png" "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..fe79a72c371d05cb3340613e761b0fc5e03e43c6 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c262fe0c3f38a0846391a49ff0fe245806a7b76ce1a86209b558980c3475aa +size 291765 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec4.png" "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..9adb29222d39f6ccf92fce0a5a0b1cddb0c6829a --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65bee2de3cc3e43dc38b463e025fa582babf2306476f6f09d88e9359f42019ba +size 295690 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec5.png" "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..68fa5c8b87bb8a85b54160e37b41e2bee74f282e --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Norowareshi Densetsu no Shoujo-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54748538e302fceba380080288e47f5c670b70552b3c174490176e53019098ea +size 352600 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec1.png" "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..5972721286c352dbe989b990d3295c0281919b9f --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a63840a6a4d049c804c2f3a9fa552c1317eea861a26dded6a77a7b819fa17c +size 349070 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec2.png" "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..d9cee7226d364cdc779d355797e434728f8f9a41 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f305c4fc652b9eb23db13ef2facd065a49b88cde0f79570a6d64661a8e2f4720 +size 351952 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec3.png" "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..cbf4261aa4cc1dd0dac96eb5cc0ca8039b9a622e --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113e375c3db3adb62cad2955138896a46973e309f487c460da40cef7492965f9 +size 343899 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec4.png" "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..6dcb0c95853020aaf78ea91fdd68111488b7555b --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6f5b9b05f959a893cf65e7b3113d63ad32744b50a3f260baa5abfad0c8f63c +size 292066 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec5.png" "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..e849d88413837339aae990b27a25a848484f9697 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Tsumi to Batsu no Shoujo-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b6d6b717aadf1e432dfb8ef543c6d7446c6004f650bb229b10dd6aacf112d2 +size 337262 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec1.png" "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..cd042b790beefe13c75149d13e72399851e1fe74 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9255cdc62ac4d8bdae4275f8952538607539aef437aa04871cec6523b6d1234e +size 352397 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec2.png" "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..526415f8878613ed669d604769332c518d0ae579 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f602e38a0c1155d9c860009aa90c02c397986cfe0538ebab07cf1fdc278c7147 +size 353691 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec3.png" "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..bf8bd9f15645ddc004ed4a2445fa4519d3127903 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bed1f5082de8f737d4eaa1169158a9525cf12f25dec34cea5aaa488ab30dc6 +size 359540 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec4.png" "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..90a2b0c3e09ac2712341033766f40a4050d85af6 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081f81663211152a0de417cc2b1f6242029803bfde0056f9c803bf2318487f29 +size 298200 diff --git "a/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec5.png" "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..11fdcf754a14e0ce7de53e948616355ad72bd7d2 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou -Wasurenagusa to Eien no Shoujo-/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065d0ca96c8c6f0fbb8838d189ae7d41eeb4d2253b507e0b1bef75af763d98a5 +size 330259 diff --git "a/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec1.png" "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec1.png" new file mode 100644 index 0000000000000000000000000000000000000000..4858d27e68cad751309bbe6863995d6688e407d7 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec1.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9735be085a21168f88bfeaef897890ff8739604cac174a963f349584368ef352 +size 255829 diff --git "a/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec2.png" "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec2.png" new file mode 100644 index 0000000000000000000000000000000000000000..4f1fbb6f6413e5f3e8460778470fd85e8ded36e7 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec2.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:514e2e2ab939d055749ccfc31761079d4c48445aa5a81a8004a4dc7a5b006d8d +size 269871 diff --git "a/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec3.png" "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec3.png" new file mode 100644 index 0000000000000000000000000000000000000000..f971990757c96cf6bf9b10fdf13ed12c939eb191 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec3.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91261ff211c72992c4c72d4fc16b01fee6425b9b8eca507fd23c34df6a3a267b +size 270942 diff --git "a/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec4.png" "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec4.png" new file mode 100644 index 0000000000000000000000000000000000000000..1f8c48c00cc1f7ff83ab63b1474d93fa868aa408 --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec4.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f352268fe715d3ea7b048eb550e5f0b050744209b4edb6078f14cc67d5b46c +size 290049 diff --git "a/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec5.png" "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec5.png" new file mode 100644 index 0000000000000000000000000000000000000000..64ee6c542b948de0caff6bc7cc92e03578451bbe --- /dev/null +++ "b/specs/\317\211star_Bishoujo Mangekyou Ibun - Yuki Onna/spec5.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c08d2ef7d91c57131771e508e56dd42631e1a41cf7e193ee0534e255ce0147e +size 283843